2024-03-11T22:53:51.309 INFO:root:teuthology version: 0.0.1.dev262+ge691533 2024-03-11T22:53:51.310 DEBUG:teuthology.run:Teuthology command: teuthology --name teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi --verbose --owner scheduled_teuthology@teuthology --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-11_21:08:02-orch-squid-distro-default-smithi/7592037 -- /home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037/orig.config.yaml 2024-03-11T22:53:51.343 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-03-11T22:53:51.439 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037 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: '7592037' kernel: kdb: true sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-03-11_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: 94a539707733325322964c6a187c6a1b41be1daf ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 94a539707733325322964c6a187c6a1b41be1daf workunit: branch: squid sha1: fbcdfe674e56d1ea7a0810744e5915bb07961be5 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 3176 sha1: 94a539707733325322964c6a187c6a1b41be1daf sleep_before_teardown: 0 subset: 14/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_fbcdfe674e56d1ea7a0810744e5915bb07961be5/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: fbcdfe674e56d1ea7a0810744e5915bb07961be5 targets: smithi149.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKknTNXhsuVyrIIUPBUDmy6rluM288T3c3k6jSEHLZNNoScBAv6DVAMtLK/XSGyUL0PqXosUsjcd19eXDC5yvH8= smithi165.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDqZutkikeBLEBOYOSi+CPymWt7xWdsvqT7a4OH7yUZaJIN8J2p1aBgYQqAgkBlcKBcVlZa8vwdFeHuSNVLqiYs= 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-11_21:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-03-11T22:53:51.440 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_fbcdfe674e56d1ea7a0810744e5915bb07961be5/qa; will attempt to use it 2024-03-11T22:53:51.440 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_fbcdfe674e56d1ea7a0810744e5915bb07961be5/qa/tasks 2024-03-11T22:53:51.441 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-03-11T22:53:51.442 INFO:teuthology.task.internal:Checking packages... 2024-03-11T22:53:51.466 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '94a539707733325322964c6a187c6a1b41be1daf' 2024-03-11T22:53:51.466 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-03-11T22:53:51.466 INFO:teuthology.packaging:ref: None 2024-03-11T22:53:51.466 INFO:teuthology.packaging:tag: None 2024-03-11T22:53:51.467 INFO:teuthology.packaging:branch: squid 2024-03-11T22:53:51.467 INFO:teuthology.packaging:sha1: 94a539707733325322964c6a187c6a1b41be1daf 2024-03-11T22:53:51.467 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-11T22:53:51.758 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-1607-g94a53970-1jammy 2024-03-11T22:53:51.759 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-03-11T22:53:51.766 INFO:teuthology.task.internal:no buildpackages task found 2024-03-11T22:53:51.766 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-03-11T22:53:51.791 INFO:teuthology.task.internal:Saving configuration 2024-03-11T22:53:51.805 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-03-11T22:53:51.814 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-11T22:53:51.840 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi149.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037', '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-11 22:48:05.761226', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDKhADA/qTgKx1u7lMoS3NxapiSGjn7mFslBO1bTacRS'} 2024-03-11T22:53:51.863 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi165.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037', '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-11 22:48:05.762585', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKGEROgXaWH12ODxLjccr5Tqx3BsQjeLDEv0DAveTqZ1'} 2024-03-11T22:53:51.864 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-03-11T22:53:51.874 INFO:teuthology.task.internal:roles: ubuntu@smithi149.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-03-11T22:53:51.874 INFO:teuthology.task.internal:roles: ubuntu@smithi165.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-03-11T22:53:51.874 INFO:teuthology.run_tasks:Running task console_log... 2024-03-11T22:53:51.955 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f42c75e6310>, signals=[15]) 2024-03-11T22:53:51.956 INFO:teuthology.run_tasks:Running task internal.connect... 2024-03-11T22:53:51.967 INFO:teuthology.task.internal:Opening connections... 2024-03-11T22:53:51.967 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T22:53:51.969 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:53:52.054 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi165.front.sepia.ceph.com 2024-03-11T22:53:52.055 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:53:52.133 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-03-11T22:53:52.141 DEBUG:teuthology.orchestra.run.smithi149:> uname -m 2024-03-11T22:53:52.146 INFO:teuthology.orchestra.run.smithi149.stdout:x86_64 2024-03-11T22:53:52.146 DEBUG:teuthology.orchestra.run.smithi149:> cat /etc/os-release 2024-03-11T22:53:52.192 INFO:teuthology.orchestra.run.smithi149.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-03-11T22:53:52.192 INFO:teuthology.orchestra.run.smithi149.stdout:NAME="Ubuntu" 2024-03-11T22:53:52.193 INFO:teuthology.orchestra.run.smithi149.stdout:VERSION_ID="22.04" 2024-03-11T22:53:52.193 INFO:teuthology.orchestra.run.smithi149.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-03-11T22:53:52.193 INFO:teuthology.orchestra.run.smithi149.stdout:VERSION_CODENAME=jammy 2024-03-11T22:53:52.193 INFO:teuthology.orchestra.run.smithi149.stdout:ID=ubuntu 2024-03-11T22:53:52.193 INFO:teuthology.orchestra.run.smithi149.stdout:ID_LIKE=debian 2024-03-11T22:53:52.193 INFO:teuthology.orchestra.run.smithi149.stdout:HOME_URL="https://www.ubuntu.com/" 2024-03-11T22:53:52.193 INFO:teuthology.orchestra.run.smithi149.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-03-11T22:53:52.193 INFO:teuthology.orchestra.run.smithi149.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-03-11T22:53:52.193 INFO:teuthology.orchestra.run.smithi149.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-03-11T22:53:52.193 INFO:teuthology.orchestra.run.smithi149.stdout:UBUNTU_CODENAME=jammy 2024-03-11T22:53:52.194 INFO:teuthology.lock.ops:Updating smithi149.front.sepia.ceph.com on lock server 2024-03-11T22:53:52.224 DEBUG:teuthology.orchestra.run.smithi165:> uname -m 2024-03-11T22:53:52.229 INFO:teuthology.orchestra.run.smithi165.stdout:x86_64 2024-03-11T22:53:52.230 DEBUG:teuthology.orchestra.run.smithi165:> cat /etc/os-release 2024-03-11T22:53:52.278 INFO:teuthology.orchestra.run.smithi165.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-03-11T22:53:52.278 INFO:teuthology.orchestra.run.smithi165.stdout:NAME="Ubuntu" 2024-03-11T22:53:52.278 INFO:teuthology.orchestra.run.smithi165.stdout:VERSION_ID="22.04" 2024-03-11T22:53:52.278 INFO:teuthology.orchestra.run.smithi165.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-03-11T22:53:52.278 INFO:teuthology.orchestra.run.smithi165.stdout:VERSION_CODENAME=jammy 2024-03-11T22:53:52.278 INFO:teuthology.orchestra.run.smithi165.stdout:ID=ubuntu 2024-03-11T22:53:52.279 INFO:teuthology.orchestra.run.smithi165.stdout:ID_LIKE=debian 2024-03-11T22:53:52.279 INFO:teuthology.orchestra.run.smithi165.stdout:HOME_URL="https://www.ubuntu.com/" 2024-03-11T22:53:52.279 INFO:teuthology.orchestra.run.smithi165.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-03-11T22:53:52.279 INFO:teuthology.orchestra.run.smithi165.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-03-11T22:53:52.279 INFO:teuthology.orchestra.run.smithi165.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-03-11T22:53:52.279 INFO:teuthology.orchestra.run.smithi165.stdout:UBUNTU_CODENAME=jammy 2024-03-11T22:53:52.279 INFO:teuthology.lock.ops:Updating smithi165.front.sepia.ceph.com on lock server 2024-03-11T22:53:52.306 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-03-11T22:53:52.317 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-03-11T22:53:52.330 INFO:teuthology.task.internal:Checking for old test directory... 2024-03-11T22:53:52.330 DEBUG:teuthology.orchestra.run.smithi149:> test '!' -e /home/ubuntu/cephtest 2024-03-11T22:53:52.332 DEBUG:teuthology.orchestra.run.smithi165:> test '!' -e /home/ubuntu/cephtest 2024-03-11T22:53:52.337 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-03-11T22:53:52.348 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-03-11T22:53:52.348 DEBUG:teuthology.orchestra.run.smithi149:> test -z $(ls -A /var/lib/ceph) 2024-03-11T22:53:52.378 DEBUG:teuthology.orchestra.run.smithi165:> test -z $(ls -A /var/lib/ceph) 2024-03-11T22:53:52.389 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-03-11T22:53:52.452 INFO:teuthology.run_tasks:Running task kernel... 2024-03-11T22:53:52.469 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-03-11T22:53:52.469 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-03-11T22:53:52.469 DEBUG:teuthology.orchestra.run.smithi149:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-11T22:53:52.470 DEBUG:teuthology.orchestra.run.smithi165:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-11T22:53:52.474 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T22:53:52.475 DEBUG:teuthology.orchestra.run.smithi149:> uname -r 2024-03-11T22:53:52.476 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T22:53:52.476 DEBUG:teuthology.orchestra.run.smithi165:> uname -r 2024-03-11T22:53:52.521 INFO:teuthology.orchestra.run.smithi165.stdout:5.15.0-56-generic 2024-03-11T22:53:52.522 INFO:teuthology.task.kernel:Running kernel on smithi165: 5.15.0-56-generic 2024-03-11T22:53:52.522 DEBUG:teuthology.orchestra.run.smithi165:> sudo apt-get clean 2024-03-11T22:53:52.523 INFO:teuthology.orchestra.run.smithi149.stdout:5.15.0-56-generic 2024-03-11T22:53:52.523 INFO:teuthology.task.kernel:Running kernel on smithi149: 5.15.0-56-generic 2024-03-11T22:53:52.523 DEBUG:teuthology.orchestra.run.smithi149:> sudo apt-get clean 2024-03-11T22:53:52.647 DEBUG:teuthology.orchestra.run.smithi165:> sudo apt-get update 2024-03-11T22:53:52.654 DEBUG:teuthology.orchestra.run.smithi149:> sudo apt-get update 2024-03-11T22:53:52.796 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-11T22:53:52.810 INFO:teuthology.orchestra.run.smithi149.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-11T22:53:52.810 INFO:teuthology.orchestra.run.smithi149.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-11T22:53:52.811 INFO:teuthology.orchestra.run.smithi149.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-11T22:53:52.816 INFO:teuthology.orchestra.run.smithi165.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-11T22:53:52.896 INFO:teuthology.orchestra.run.smithi165.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-11T22:53:52.908 INFO:teuthology.orchestra.run.smithi165.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-03-11T22:53:52.910 INFO:teuthology.orchestra.run.smithi149.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-03-11T22:53:53.036 INFO:teuthology.orchestra.run.smithi165.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [585 kB] 2024-03-11T22:53:53.045 INFO:teuthology.orchestra.run.smithi149.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [419 kB] 2024-03-11T22:53:53.127 INFO:teuthology.orchestra.run.smithi149.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,460 kB] 2024-03-11T22:53:53.146 INFO:teuthology.orchestra.run.smithi165.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,460 kB] 2024-03-11T22:53:53.160 INFO:teuthology.orchestra.run.smithi149.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,241 kB] 2024-03-11T22:53:53.236 INFO:teuthology.orchestra.run.smithi165.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [283 kB] 2024-03-11T22:53:53.243 INFO:teuthology.orchestra.run.smithi165.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-03-11T22:53:53.243 INFO:teuthology.orchestra.run.smithi165.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,559 kB] 2024-03-11T22:53:53.269 INFO:teuthology.orchestra.run.smithi149.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [223 kB] 2024-03-11T22:53:53.283 INFO:teuthology.orchestra.run.smithi149.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-03-11T22:53:53.283 INFO:teuthology.orchestra.run.smithi149.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-03-11T22:53:53.284 INFO:teuthology.orchestra.run.smithi149.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,526 kB] 2024-03-11T22:53:53.306 INFO:teuthology.orchestra.run.smithi165.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-03-11T22:53:53.307 INFO:teuthology.orchestra.run.smithi165.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [259 kB] 2024-03-11T22:53:53.314 INFO:teuthology.orchestra.run.smithi165.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-03-11T22:53:53.314 INFO:teuthology.orchestra.run.smithi165.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,054 kB] 2024-03-11T22:53:53.318 INFO:teuthology.orchestra.run.smithi165.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [419 kB] 2024-03-11T22:53:53.352 INFO:teuthology.orchestra.run.smithi149.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [585 kB] 2024-03-11T22:53:53.424 INFO:teuthology.orchestra.run.smithi165.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [693 kB] 2024-03-11T22:53:53.431 INFO:teuthology.orchestra.run.smithi149.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [283 kB] 2024-03-11T22:53:53.447 INFO:teuthology.orchestra.run.smithi149.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [253 kB] 2024-03-11T22:53:53.452 INFO:teuthology.orchestra.run.smithi149.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-03-11T22:53:53.470 INFO:teuthology.orchestra.run.smithi149.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [597 kB] 2024-03-11T22:53:53.470 INFO:teuthology.orchestra.run.smithi149.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-03-11T22:53:53.471 INFO:teuthology.orchestra.run.smithi149.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-03-11T22:53:53.471 INFO:teuthology.orchestra.run.smithi165.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [238 kB] 2024-03-11T22:53:53.472 INFO:teuthology.orchestra.run.smithi149.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,559 kB] 2024-03-11T22:53:53.475 INFO:teuthology.orchestra.run.smithi165.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-03-11T22:53:53.475 INFO:teuthology.orchestra.run.smithi165.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,160 B] 2024-03-11T22:53:53.476 INFO:teuthology.orchestra.run.smithi165.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.1 kB] 2024-03-11T22:53:53.477 INFO:teuthology.orchestra.run.smithi165.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.1 kB] 2024-03-11T22:53:53.477 INFO:teuthology.orchestra.run.smithi165.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-03-11T22:53:53.477 INFO:teuthology.orchestra.run.smithi165.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [33.9 kB] 2024-03-11T22:53:53.478 INFO:teuthology.orchestra.run.smithi165.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [41.7 kB] 2024-03-11T22:53:53.480 INFO:teuthology.orchestra.run.smithi149.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-03-11T22:53:53.486 INFO:teuthology.orchestra.run.smithi165.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [10.5 kB] 2024-03-11T22:53:53.495 INFO:teuthology.orchestra.run.smithi149.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [162 kB] 2024-03-11T22:53:53.498 INFO:teuthology.orchestra.run.smithi149.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-03-11T22:53:53.499 INFO:teuthology.orchestra.run.smithi149.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-03-11T22:53:53.500 INFO:teuthology.orchestra.run.smithi149.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-03-11T22:53:53.500 INFO:teuthology.orchestra.run.smithi149.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-03-11T22:53:53.500 INFO:teuthology.orchestra.run.smithi149.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-03-11T22:53:53.527 INFO:teuthology.orchestra.run.smithi149.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [259 kB] 2024-03-11T22:53:53.527 INFO:teuthology.orchestra.run.smithi165.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-03-11T22:53:53.528 INFO:teuthology.orchestra.run.smithi165.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [24.3 kB] 2024-03-11T22:53:53.528 INFO:teuthology.orchestra.run.smithi165.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [13.4 kB] 2024-03-11T22:53:53.529 INFO:teuthology.orchestra.run.smithi165.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-03-11T22:53:53.529 INFO:teuthology.orchestra.run.smithi165.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-03-11T22:53:53.535 INFO:teuthology.orchestra.run.smithi149.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-03-11T22:53:53.536 INFO:teuthology.orchestra.run.smithi149.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,054 kB] 2024-03-11T22:53:53.586 INFO:teuthology.orchestra.run.smithi149.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [693 kB] 2024-03-11T22:53:53.594 INFO:teuthology.orchestra.run.smithi165.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,241 kB] 2024-03-11T22:53:53.614 INFO:teuthology.orchestra.run.smithi149.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [238 kB] 2024-03-11T22:53:53.619 INFO:teuthology.orchestra.run.smithi149.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-03-11T22:53:53.621 INFO:teuthology.orchestra.run.smithi149.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.1 kB] 2024-03-11T22:53:53.622 INFO:teuthology.orchestra.run.smithi149.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,160 B] 2024-03-11T22:53:53.622 INFO:teuthology.orchestra.run.smithi149.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.1 kB] 2024-03-11T22:53:53.623 INFO:teuthology.orchestra.run.smithi149.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-03-11T22:53:53.623 INFO:teuthology.orchestra.run.smithi149.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [41.7 kB] 2024-03-11T22:53:53.624 INFO:teuthology.orchestra.run.smithi149.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [33.9 kB] 2024-03-11T22:53:53.628 INFO:teuthology.orchestra.run.smithi149.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [10.5 kB] 2024-03-11T22:53:53.668 INFO:teuthology.orchestra.run.smithi149.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-03-11T22:53:53.668 INFO:teuthology.orchestra.run.smithi149.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [13.4 kB] 2024-03-11T22:53:53.668 INFO:teuthology.orchestra.run.smithi149.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [24.3 kB] 2024-03-11T22:53:53.668 INFO:teuthology.orchestra.run.smithi149.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-03-11T22:53:53.669 INFO:teuthology.orchestra.run.smithi149.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-03-11T22:53:53.759 INFO:teuthology.orchestra.run.smithi165.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [223 kB] 2024-03-11T22:53:53.772 INFO:teuthology.orchestra.run.smithi165.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-03-11T22:53:53.773 INFO:teuthology.orchestra.run.smithi165.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-03-11T22:53:53.774 INFO:teuthology.orchestra.run.smithi165.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,526 kB] 2024-03-11T22:53:53.854 INFO:teuthology.orchestra.run.smithi165.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [253 kB] 2024-03-11T22:53:53.861 INFO:teuthology.orchestra.run.smithi165.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-03-11T22:53:53.861 INFO:teuthology.orchestra.run.smithi165.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-03-11T22:53:53.885 INFO:teuthology.orchestra.run.smithi165.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [597 kB] 2024-03-11T22:53:54.064 INFO:teuthology.orchestra.run.smithi165.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [162 kB] 2024-03-11T22:53:54.462 INFO:teuthology.orchestra.run.smithi165.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-03-11T22:53:54.469 INFO:teuthology.orchestra.run.smithi165.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-03-11T22:53:54.469 INFO:teuthology.orchestra.run.smithi165.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-03-11T22:53:54.484 INFO:teuthology.orchestra.run.smithi165.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-03-11T22:53:54.486 INFO:teuthology.orchestra.run.smithi165.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-03-11T22:53:58.773 INFO:teuthology.orchestra.run.smithi165.stdout:Fetched 12.1 MB in 2s (6,765 kB/s) 2024-03-11T22:53:58.856 INFO:teuthology.orchestra.run.smithi149.stdout:Fetched 12.1 MB in 2s (6,586 kB/s) 2024-03-11T22:54:00.111 INFO:teuthology.orchestra.run.smithi165.stdout:Reading package lists... 2024-03-11T22:54:00.128 DEBUG:teuthology.orchestra.run.smithi165:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-11T22:54:00.190 INFO:teuthology.orchestra.run.smithi165.stdout:Reading package lists... 2024-03-11T22:54:00.244 INFO:teuthology.orchestra.run.smithi149.stdout:Reading package lists... 2024-03-11T22:54:00.261 DEBUG:teuthology.orchestra.run.smithi149:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-11T22:54:00.324 INFO:teuthology.orchestra.run.smithi149.stdout:Reading package lists... 2024-03-11T22:54:00.364 INFO:teuthology.orchestra.run.smithi165.stdout:Building dependency tree... 2024-03-11T22:54:00.365 INFO:teuthology.orchestra.run.smithi165.stdout:Reading state information... 2024-03-11T22:54:00.502 INFO:teuthology.orchestra.run.smithi149.stdout:Building dependency tree... 2024-03-11T22:54:00.503 INFO:teuthology.orchestra.run.smithi149.stdout:Reading state information... 2024-03-11T22:54:00.516 INFO:teuthology.orchestra.run.smithi165.stdout:The following packages were automatically installed and are no longer required: 2024-03-11T22:54:00.516 INFO:teuthology.orchestra.run.smithi165.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-11T22:54:00.516 INFO:teuthology.orchestra.run.smithi165.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-11T22:54:00.516 INFO:teuthology.orchestra.run.smithi165.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-11T22:54:00.516 INFO:teuthology.orchestra.run.smithi165.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-03-11T22:54:00.517 INFO:teuthology.orchestra.run.smithi165.stdout: python2.7-minimal 2024-03-11T22:54:00.517 INFO:teuthology.orchestra.run.smithi165.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-11T22:54:00.518 INFO:teuthology.orchestra.run.smithi165.stdout:The following additional packages will be installed: 2024-03-11T22:54:00.518 INFO:teuthology.orchestra.run.smithi165.stdout: linux-generic linux-headers-5.15.0-100 linux-headers-5.15.0-100-generic 2024-03-11T22:54:00.518 INFO:teuthology.orchestra.run.smithi165.stdout: linux-headers-generic linux-image-5.15.0-100-generic 2024-03-11T22:54:00.518 INFO:teuthology.orchestra.run.smithi165.stdout: linux-modules-5.15.0-100-generic linux-modules-extra-5.15.0-100-generic 2024-03-11T22:54:00.519 INFO:teuthology.orchestra.run.smithi165.stdout:Suggested packages: 2024-03-11T22:54:00.519 INFO:teuthology.orchestra.run.smithi165.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-03-11T22:54:00.519 INFO:teuthology.orchestra.run.smithi165.stdout:Recommended packages: 2024-03-11T22:54:00.519 INFO:teuthology.orchestra.run.smithi165.stdout: thermald 2024-03-11T22:54:00.563 INFO:teuthology.orchestra.run.smithi165.stdout:The following NEW packages will be installed: 2024-03-11T22:54:00.564 INFO:teuthology.orchestra.run.smithi165.stdout: linux-headers-5.15.0-100 linux-headers-5.15.0-100-generic 2024-03-11T22:54:00.564 INFO:teuthology.orchestra.run.smithi165.stdout: linux-image-5.15.0-100-generic linux-modules-5.15.0-100-generic 2024-03-11T22:54:00.564 INFO:teuthology.orchestra.run.smithi165.stdout: linux-modules-extra-5.15.0-100-generic 2024-03-11T22:54:00.565 INFO:teuthology.orchestra.run.smithi165.stdout:The following packages will be upgraded: 2024-03-11T22:54:00.565 INFO:teuthology.orchestra.run.smithi165.stdout: linux-generic linux-headers-generic linux-image-generic 2024-03-11T22:54:00.654 INFO:teuthology.orchestra.run.smithi149.stdout:The following packages were automatically installed and are no longer required: 2024-03-11T22:54:00.655 INFO:teuthology.orchestra.run.smithi149.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-11T22:54:00.655 INFO:teuthology.orchestra.run.smithi149.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-11T22:54:00.655 INFO:teuthology.orchestra.run.smithi149.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-11T22:54:00.655 INFO:teuthology.orchestra.run.smithi149.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-03-11T22:54:00.655 INFO:teuthology.orchestra.run.smithi149.stdout: python2.7-minimal 2024-03-11T22:54:00.656 INFO:teuthology.orchestra.run.smithi149.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-11T22:54:00.656 INFO:teuthology.orchestra.run.smithi149.stdout:The following additional packages will be installed: 2024-03-11T22:54:00.656 INFO:teuthology.orchestra.run.smithi149.stdout: linux-generic linux-headers-5.15.0-100 linux-headers-5.15.0-100-generic 2024-03-11T22:54:00.656 INFO:teuthology.orchestra.run.smithi149.stdout: linux-headers-generic linux-image-5.15.0-100-generic 2024-03-11T22:54:00.657 INFO:teuthology.orchestra.run.smithi149.stdout: linux-modules-5.15.0-100-generic linux-modules-extra-5.15.0-100-generic 2024-03-11T22:54:00.658 INFO:teuthology.orchestra.run.smithi149.stdout:Suggested packages: 2024-03-11T22:54:00.658 INFO:teuthology.orchestra.run.smithi149.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-03-11T22:54:00.658 INFO:teuthology.orchestra.run.smithi149.stdout:Recommended packages: 2024-03-11T22:54:00.658 INFO:teuthology.orchestra.run.smithi149.stdout: thermald 2024-03-11T22:54:00.702 INFO:teuthology.orchestra.run.smithi149.stdout:The following NEW packages will be installed: 2024-03-11T22:54:00.702 INFO:teuthology.orchestra.run.smithi149.stdout: linux-headers-5.15.0-100 linux-headers-5.15.0-100-generic 2024-03-11T22:54:00.702 INFO:teuthology.orchestra.run.smithi149.stdout: linux-image-5.15.0-100-generic linux-modules-5.15.0-100-generic 2024-03-11T22:54:00.703 INFO:teuthology.orchestra.run.smithi149.stdout: linux-modules-extra-5.15.0-100-generic 2024-03-11T22:54:00.703 INFO:teuthology.orchestra.run.smithi149.stdout:The following packages will be upgraded: 2024-03-11T22:54:00.704 INFO:teuthology.orchestra.run.smithi149.stdout: linux-generic linux-headers-generic linux-image-generic 2024-03-11T22:54:00.743 INFO:teuthology.orchestra.run.smithi165.stdout:3 upgraded, 5 newly installed, 0 to remove and 288 not upgraded. 2024-03-11T22:54:00.744 INFO:teuthology.orchestra.run.smithi165.stdout:Need to get 113 MB of archives. 2024-03-11T22:54:00.744 INFO:teuthology.orchestra.run.smithi165.stdout:After this operation, 582 MB of additional disk space will be used. 2024-03-11T22:54:00.744 INFO:teuthology.orchestra.run.smithi165.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-100-generic amd64 5.15.0-100.110 [22.6 MB] 2024-03-11T22:54:00.758 INFO:teuthology.orchestra.run.smithi149.stdout:3 upgraded, 5 newly installed, 0 to remove and 288 not upgraded. 2024-03-11T22:54:00.758 INFO:teuthology.orchestra.run.smithi149.stdout:Need to get 113 MB of archives. 2024-03-11T22:54:00.758 INFO:teuthology.orchestra.run.smithi149.stdout:After this operation, 582 MB of additional disk space will be used. 2024-03-11T22:54:00.758 INFO:teuthology.orchestra.run.smithi149.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-100-generic amd64 5.15.0-100.110 [22.6 MB] 2024-03-11T22:54:01.370 INFO:teuthology.orchestra.run.smithi149.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-100-generic amd64 5.15.0-100.110 [11.5 MB] 2024-03-11T22:54:01.526 INFO:teuthology.orchestra.run.smithi149.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-100-generic amd64 5.15.0-100.110 [63.8 MB] 2024-03-11T22:54:02.292 INFO:teuthology.orchestra.run.smithi165.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-100-generic amd64 5.15.0-100.110 [11.5 MB] 2024-03-11T22:54:02.600 INFO:teuthology.orchestra.run.smithi149.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.100.97 [1,696 B] 2024-03-11T22:54:02.601 INFO:teuthology.orchestra.run.smithi149.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.100.97 [2,454 B] 2024-03-11T22:54:02.601 INFO:teuthology.orchestra.run.smithi149.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-100 all 5.15.0-100.110 [12.3 MB] 2024-03-11T22:54:02.645 INFO:teuthology.orchestra.run.smithi165.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-100-generic amd64 5.15.0-100.110 [63.8 MB] 2024-03-11T22:54:03.161 INFO:teuthology.orchestra.run.smithi149.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-100-generic amd64 5.15.0-100.110 [2,858 kB] 2024-03-11T22:54:03.234 INFO:teuthology.orchestra.run.smithi149.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.100.97 [2,292 B] 2024-03-11T22:54:03.618 INFO:teuthology.orchestra.run.smithi149.stdout:Fetched 113 MB in 3s (44.9 MB/s) 2024-03-11T22:54:03.793 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package linux-modules-5.15.0-100-generic. 2024-03-11T22:54:04.874 INFO:teuthology.orchestra.run.smithi165.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.100.97 [1,696 B] 2024-03-11T22:54:04.874 INFO:teuthology.orchestra.run.smithi165.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.100.97 [2,454 B] 2024-03-11T22:54:04.875 INFO:teuthology.orchestra.run.smithi165.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-100 all 5.15.0-100.110 [12.3 MB] 2024-03-11T22:54:05.319 INFO:teuthology.orchestra.run.smithi165.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-100-generic amd64 5.15.0-100.110 [2,858 kB] 2024-03-11T22:54:05.402 INFO:teuthology.orchestra.run.smithi165.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.100.97 [2,292 B] 2024-03-11T22:54:05.797 INFO:teuthology.orchestra.run.smithi165.stdout:Fetched 113 MB in 5s (23.4 MB/s) 2024-03-11T22:54:05.870 INFO:teuthology.orchestra.run.smithi149.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-11T22:54:05.874 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../0-linux-modules-5.15.0-100-generic_5.15.0-100.110_amd64.deb ... 2024-03-11T22:54:05.983 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package linux-modules-5.15.0-100-generic. 2024-03-11T22:54:06.240 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-modules-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:07.934 INFO:teuthology.orchestra.run.smithi165.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-11T22:54:07.937 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../0-linux-modules-5.15.0-100-generic_5.15.0-100.110_amd64.deb ... 2024-03-11T22:54:08.025 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-modules-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:08.351 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package linux-image-5.15.0-100-generic. 2024-03-11T22:54:08.372 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../1-linux-image-5.15.0-100-generic_5.15.0-100.110_amd64.deb ... 2024-03-11T22:54:08.463 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-image-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:08.929 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-100-generic. 2024-03-11T22:54:08.949 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-100-generic_5.15.0-100.110_amd64.deb ... 2024-03-11T22:54:08.987 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-modules-extra-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:10.169 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package linux-image-5.15.0-100-generic. 2024-03-11T22:54:10.190 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../1-linux-image-5.15.0-100-generic_5.15.0-100.110_amd64.deb ... 2024-03-11T22:54:10.270 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-image-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:10.706 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-100-generic. 2024-03-11T22:54:10.726 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-100-generic_5.15.0-100.110_amd64.deb ... 2024-03-11T22:54:10.764 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-modules-extra-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:15.514 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../3-linux-generic_5.15.0.100.97_amd64.deb ... 2024-03-11T22:54:15.615 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-generic (5.15.0.100.97) over (5.15.0.56.54) ... 2024-03-11T22:54:15.932 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.100.97_amd64.deb ... 2024-03-11T22:54:16.086 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-image-generic (5.15.0.100.97) over (5.15.0.56.54) ... 2024-03-11T22:54:16.390 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package linux-headers-5.15.0-100. 2024-03-11T22:54:16.412 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../5-linux-headers-5.15.0-100_5.15.0-100.110_all.deb ... 2024-03-11T22:54:16.455 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-headers-5.15.0-100 (5.15.0-100.110) ... 2024-03-11T22:54:17.524 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../3-linux-generic_5.15.0.100.97_amd64.deb ... 2024-03-11T22:54:17.635 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-generic (5.15.0.100.97) over (5.15.0.56.54) ... 2024-03-11T22:54:17.959 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.100.97_amd64.deb ... 2024-03-11T22:54:18.080 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-image-generic (5.15.0.100.97) over (5.15.0.56.54) ... 2024-03-11T22:54:18.417 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package linux-headers-5.15.0-100. 2024-03-11T22:54:18.439 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../5-linux-headers-5.15.0-100_5.15.0-100.110_all.deb ... 2024-03-11T22:54:18.483 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-headers-5.15.0-100 (5.15.0-100.110) ... 2024-03-11T22:54:22.596 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package linux-headers-5.15.0-100-generic. 2024-03-11T22:54:22.633 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../6-linux-headers-5.15.0-100-generic_5.15.0-100.110_amd64.deb ... 2024-03-11T22:54:22.671 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-headers-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:24.449 INFO:teuthology.orchestra.run.smithi165.stdout:Selecting previously unselected package linux-headers-5.15.0-100-generic. 2024-03-11T22:54:24.468 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../6-linux-headers-5.15.0-100-generic_5.15.0-100.110_amd64.deb ... 2024-03-11T22:54:24.507 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-headers-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:25.341 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.100.97_amd64.deb ... 2024-03-11T22:54:25.466 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-headers-generic (5.15.0.100.97) over (5.15.0.56.54) ... 2024-03-11T22:54:25.809 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-headers-5.15.0-100 (5.15.0-100.110) ... 2024-03-11T22:54:25.930 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-headers-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:26.056 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-headers-generic (5.15.0.100.97) ... 2024-03-11T22:54:26.160 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-image-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:27.040 INFO:teuthology.orchestra.run.smithi165.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.100.97_amd64.deb ... 2024-03-11T22:54:27.174 INFO:teuthology.orchestra.run.smithi165.stdout:Unpacking linux-headers-generic (5.15.0.100.97) over (5.15.0.56.54) ... 2024-03-11T22:54:27.466 INFO:teuthology.orchestra.run.smithi149.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-03-11T22:54:27.466 INFO:teuthology.orchestra.run.smithi149.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-03-11T22:54:27.466 INFO:teuthology.orchestra.run.smithi149.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-100-generic 2024-03-11T22:54:27.466 INFO:teuthology.orchestra.run.smithi149.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-100-generic 2024-03-11T22:54:27.523 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-headers-5.15.0-100 (5.15.0-100.110) ... 2024-03-11T22:54:27.620 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-modules-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:27.662 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-headers-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:27.788 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-headers-generic (5.15.0.100.97) ... 2024-03-11T22:54:27.917 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-image-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:29.214 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-modules-extra-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:29.262 INFO:teuthology.orchestra.run.smithi165.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-03-11T22:54:29.262 INFO:teuthology.orchestra.run.smithi165.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-03-11T22:54:29.262 INFO:teuthology.orchestra.run.smithi165.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-100-generic 2024-03-11T22:54:29.262 INFO:teuthology.orchestra.run.smithi165.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-100-generic 2024-03-11T22:54:29.434 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-modules-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:30.590 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-image-generic (5.15.0.100.97) ... 2024-03-11T22:54:30.716 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-generic (5.15.0.100.97) ... 2024-03-11T22:54:30.810 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-modules-extra-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:30.825 INFO:teuthology.orchestra.run.smithi149.stdout:Processing triggers for linux-image-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:30.891 INFO:teuthology.orchestra.run.smithi149.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-03-11T22:54:30.891 INFO:teuthology.orchestra.run.smithi149.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-100-generic 2024-03-11T22:54:32.178 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-image-generic (5.15.0.100.97) ... 2024-03-11T22:54:32.304 INFO:teuthology.orchestra.run.smithi165.stdout:Setting up linux-generic (5.15.0.100.97) ... 2024-03-11T22:54:32.430 INFO:teuthology.orchestra.run.smithi165.stdout:Processing triggers for linux-image-5.15.0-100-generic (5.15.0-100.110) ... 2024-03-11T22:54:32.491 INFO:teuthology.orchestra.run.smithi165.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-03-11T22:54:32.491 INFO:teuthology.orchestra.run.smithi165.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-100-generic 2024-03-11T22:54:45.354 INFO:teuthology.orchestra.run.smithi149.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-03-11T22:54:45.354 INFO:teuthology.orchestra.run.smithi149.stdout:Sourcing file `/etc/default/grub' 2024-03-11T22:54:45.382 INFO:teuthology.orchestra.run.smithi149.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-11T22:54:45.408 INFO:teuthology.orchestra.run.smithi149.stdout:Generating grub configuration file ... 2024-03-11T22:54:45.657 INFO:teuthology.orchestra.run.smithi149.stdout:Found linux image: /boot/vmlinuz-5.15.0-100-generic 2024-03-11T22:54:45.675 INFO:teuthology.orchestra.run.smithi149.stdout:Found initrd image: /boot/initrd.img-5.15.0-100-generic 2024-03-11T22:54:46.033 INFO:teuthology.orchestra.run.smithi149.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-11T22:54:46.039 INFO:teuthology.orchestra.run.smithi149.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-11T22:54:46.116 INFO:teuthology.orchestra.run.smithi149.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-11T22:54:46.123 INFO:teuthology.orchestra.run.smithi149.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-11T22:54:46.286 INFO:teuthology.orchestra.run.smithi149.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-11T22:54:46.286 INFO:teuthology.orchestra.run.smithi149.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-03-11T22:54:46.286 INFO:teuthology.orchestra.run.smithi149.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-11T22:54:46.329 INFO:teuthology.orchestra.run.smithi149.stdout:done 2024-03-11T22:54:46.442 INFO:teuthology.orchestra.run.smithi165.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-03-11T22:54:46.442 INFO:teuthology.orchestra.run.smithi165.stdout:Sourcing file `/etc/default/grub' 2024-03-11T22:54:46.470 INFO:teuthology.orchestra.run.smithi165.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-11T22:54:46.525 INFO:teuthology.orchestra.run.smithi165.stdout:Generating grub configuration file ... 2024-03-11T22:54:46.790 DEBUG:teuthology.orchestra.run.smithi149:> dpkg -s linux-image-generic 2024-03-11T22:54:46.809 INFO:teuthology.orchestra.run.smithi149.stdout:Package: linux-image-generic 2024-03-11T22:54:46.809 INFO:teuthology.orchestra.run.smithi149.stdout:Status: install ok installed 2024-03-11T22:54:46.809 INFO:teuthology.orchestra.run.smithi149.stdout:Priority: optional 2024-03-11T22:54:46.809 INFO:teuthology.orchestra.run.smithi149.stdout:Section: kernel 2024-03-11T22:54:46.809 INFO:teuthology.orchestra.run.smithi149.stdout:Installed-Size: 21 2024-03-11T22:54:46.809 INFO:teuthology.orchestra.run.smithi149.stdout:Maintainer: Ubuntu Kernel Team 2024-03-11T22:54:46.809 INFO:teuthology.orchestra.run.smithi149.stdout:Architecture: amd64 2024-03-11T22:54:46.809 INFO:teuthology.orchestra.run.smithi149.stdout:Source: linux-meta 2024-03-11T22:54:46.810 INFO:teuthology.orchestra.run.smithi149.stdout:Version: 5.15.0.100.97 2024-03-11T22:54:46.810 INFO:teuthology.orchestra.run.smithi149.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-100), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-03-11T22:54:46.810 INFO:teuthology.orchestra.run.smithi149.stdout:Depends: linux-image-5.15.0-100-generic, linux-modules-extra-5.15.0-100-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-11T22:54:46.810 INFO:teuthology.orchestra.run.smithi149.stdout:Recommends: thermald 2024-03-11T22:54:46.810 INFO:teuthology.orchestra.run.smithi149.stdout:Description: Generic Linux kernel image 2024-03-11T22:54:46.810 INFO:teuthology.orchestra.run.smithi149.stdout: This package will always depend on the latest generic kernel image 2024-03-11T22:54:46.810 INFO:teuthology.orchestra.run.smithi149.stdout: available. 2024-03-11T22:54:46.810 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-100-generic 2024-03-11T22:54:46.810 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-11T22:54:46.810 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-11T22:54:46.811 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-03-11T22:54:46.811 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi149.front.sepia.ceph.com, path=None, version=distro) 2024-03-11T22:54:46.811 DEBUG:teuthology.orchestra.run.smithi149:> sudo apt-get clean 2024-03-11T22:54:46.844 INFO:teuthology.orchestra.run.smithi165.stdout:Found linux image: /boot/vmlinuz-5.15.0-100-generic 2024-03-11T22:54:46.864 INFO:teuthology.orchestra.run.smithi165.stdout:Found initrd image: /boot/initrd.img-5.15.0-100-generic 2024-03-11T22:54:46.999 DEBUG:teuthology.orchestra.run.smithi149:> sudo apt-get update 2024-03-11T22:54:47.247 INFO:teuthology.orchestra.run.smithi165.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-11T22:54:47.247 INFO:teuthology.orchestra.run.smithi149.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-11T22:54:47.247 INFO:teuthology.orchestra.run.smithi149.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-11T22:54:47.252 INFO:teuthology.orchestra.run.smithi165.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-11T22:54:47.312 INFO:teuthology.orchestra.run.smithi149.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-11T22:54:47.328 INFO:teuthology.orchestra.run.smithi165.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-11T22:54:47.334 INFO:teuthology.orchestra.run.smithi165.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-11T22:54:47.506 INFO:teuthology.orchestra.run.smithi165.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-11T22:54:47.506 INFO:teuthology.orchestra.run.smithi165.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-03-11T22:54:47.507 INFO:teuthology.orchestra.run.smithi165.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-11T22:54:47.545 INFO:teuthology.orchestra.run.smithi165.stdout:done 2024-03-11T22:54:47.668 INFO:teuthology.orchestra.run.smithi149.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-11T22:54:47.828 INFO:teuthology.orchestra.run.smithi149.stdout:Fetched 229 kB in 1s (334 kB/s) 2024-03-11T22:54:47.980 DEBUG:teuthology.orchestra.run.smithi165:> dpkg -s linux-image-generic 2024-03-11T22:54:48.001 INFO:teuthology.orchestra.run.smithi165.stdout:Package: linux-image-generic 2024-03-11T22:54:48.001 INFO:teuthology.orchestra.run.smithi165.stdout:Status: install ok installed 2024-03-11T22:54:48.001 INFO:teuthology.orchestra.run.smithi165.stdout:Priority: optional 2024-03-11T22:54:48.001 INFO:teuthology.orchestra.run.smithi165.stdout:Section: kernel 2024-03-11T22:54:48.001 INFO:teuthology.orchestra.run.smithi165.stdout:Installed-Size: 21 2024-03-11T22:54:48.001 INFO:teuthology.orchestra.run.smithi165.stdout:Maintainer: Ubuntu Kernel Team 2024-03-11T22:54:48.001 INFO:teuthology.orchestra.run.smithi165.stdout:Architecture: amd64 2024-03-11T22:54:48.001 INFO:teuthology.orchestra.run.smithi165.stdout:Source: linux-meta 2024-03-11T22:54:48.001 INFO:teuthology.orchestra.run.smithi165.stdout:Version: 5.15.0.100.97 2024-03-11T22:54:48.002 INFO:teuthology.orchestra.run.smithi165.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-100), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-03-11T22:54:48.002 INFO:teuthology.orchestra.run.smithi165.stdout:Depends: linux-image-5.15.0-100-generic, linux-modules-extra-5.15.0-100-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-11T22:54:48.002 INFO:teuthology.orchestra.run.smithi165.stdout:Recommends: thermald 2024-03-11T22:54:48.002 INFO:teuthology.orchestra.run.smithi165.stdout:Description: Generic Linux kernel image 2024-03-11T22:54:48.002 INFO:teuthology.orchestra.run.smithi165.stdout: This package will always depend on the latest generic kernel image 2024-03-11T22:54:48.002 INFO:teuthology.orchestra.run.smithi165.stdout: available. 2024-03-11T22:54:48.002 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-100-generic 2024-03-11T22:54:48.002 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-11T22:54:48.002 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-11T22:54:48.002 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-03-11T22:54:48.002 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi165.front.sepia.ceph.com, path=None, version=distro) 2024-03-11T22:54:48.002 DEBUG:teuthology.orchestra.run.smithi165:> sudo apt-get clean 2024-03-11T22:54:48.160 DEBUG:teuthology.orchestra.run.smithi165:> sudo apt-get update 2024-03-11T22:54:48.288 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-11T22:54:48.288 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-03-11T22:54:48.300 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-03-11T22:54:48.321 INFO:teuthology.orchestra.run.smithi165.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-11T22:54:48.739 INFO:teuthology.orchestra.run.smithi149.stdout:Reading package lists... 2024-03-11T22:54:48.758 DEBUG:teuthology.orchestra.run.smithi149:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-11T22:54:48.818 INFO:teuthology.orchestra.run.smithi149.stdout:Reading package lists... 2024-03-11T22:54:49.012 INFO:teuthology.orchestra.run.smithi149.stdout:Building dependency tree... 2024-03-11T22:54:49.013 INFO:teuthology.orchestra.run.smithi149.stdout:Reading state information... 2024-03-11T22:54:49.188 INFO:teuthology.orchestra.run.smithi149.stdout:linux-image-generic is already the newest version (5.15.0.100.97). 2024-03-11T22:54:49.188 INFO:teuthology.orchestra.run.smithi149.stdout:The following packages were automatically installed and are no longer required: 2024-03-11T22:54:49.188 INFO:teuthology.orchestra.run.smithi149.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-11T22:54:49.188 INFO:teuthology.orchestra.run.smithi149.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-11T22:54:49.188 INFO:teuthology.orchestra.run.smithi149.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-11T22:54:49.188 INFO:teuthology.orchestra.run.smithi149.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-11T22:54:49.189 INFO:teuthology.orchestra.run.smithi149.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-11T22:54:49.189 INFO:teuthology.orchestra.run.smithi149.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-11T22:54:49.230 INFO:teuthology.orchestra.run.smithi149.stdout:0 upgraded, 0 newly installed, 0 to remove and 288 not upgraded. 2024-03-11T22:54:49.232 DEBUG:teuthology.orchestra.run.smithi149:> dpkg -s linux-image-generic 2024-03-11T22:54:49.248 INFO:teuthology.orchestra.run.smithi149.stdout:Package: linux-image-generic 2024-03-11T22:54:49.248 INFO:teuthology.orchestra.run.smithi149.stdout:Status: install ok installed 2024-03-11T22:54:49.248 INFO:teuthology.orchestra.run.smithi149.stdout:Priority: optional 2024-03-11T22:54:49.248 INFO:teuthology.orchestra.run.smithi149.stdout:Section: kernel 2024-03-11T22:54:49.248 INFO:teuthology.orchestra.run.smithi149.stdout:Installed-Size: 21 2024-03-11T22:54:49.248 INFO:teuthology.orchestra.run.smithi149.stdout:Maintainer: Ubuntu Kernel Team 2024-03-11T22:54:49.248 INFO:teuthology.orchestra.run.smithi149.stdout:Architecture: amd64 2024-03-11T22:54:49.248 INFO:teuthology.orchestra.run.smithi149.stdout:Source: linux-meta 2024-03-11T22:54:49.249 INFO:teuthology.orchestra.run.smithi149.stdout:Version: 5.15.0.100.97 2024-03-11T22:54:49.249 INFO:teuthology.orchestra.run.smithi149.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-100), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-03-11T22:54:49.249 INFO:teuthology.orchestra.run.smithi149.stdout:Depends: linux-image-5.15.0-100-generic, linux-modules-extra-5.15.0-100-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-11T22:54:49.249 INFO:teuthology.orchestra.run.smithi149.stdout:Recommends: thermald 2024-03-11T22:54:49.249 INFO:teuthology.orchestra.run.smithi149.stdout:Description: Generic Linux kernel image 2024-03-11T22:54:49.249 INFO:teuthology.orchestra.run.smithi149.stdout: This package will always depend on the latest generic kernel image 2024-03-11T22:54:49.249 INFO:teuthology.orchestra.run.smithi149.stdout: available. 2024-03-11T22:54:49.249 DEBUG:teuthology.orchestra.run.smithi149:> mktemp 2024-03-11T22:54:49.296 INFO:teuthology.orchestra.run.smithi149.stdout:/tmp/tmp.2IkzZ7I1NB 2024-03-11T22:54:49.297 DEBUG:teuthology.orchestra.run.smithi149:> sudo cp /boot/grub/grub.cfg /tmp/tmp.2IkzZ7I1NB 2024-03-11T22:54:49.351 DEBUG:teuthology.orchestra.run.smithi149:> sudo chmod 0666 /tmp/tmp.2IkzZ7I1NB 2024-03-11T22:54:49.465 DEBUG:teuthology.orchestra.remote:smithi149:/tmp/tmp.2IkzZ7I1NB is 10KB 2024-03-11T22:54:49.478 DEBUG:teuthology.orchestra.run.smithi149:> rm -fr /tmp/tmp.2IkzZ7I1NB 2024-03-11T22:54:49.483 DEBUG:teuthology.orchestra.run.smithi149:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-03-11T22:54:49.535 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T22:54:49.535 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-03-11T22:54:49.535 DEBUG:teuthology.orchestra.run.smithi149:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-03-11T22:54:49.597 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-100-generic 2024-03-11T22:54:49.597 DEBUG:teuthology.orchestra.run.smithi149:> sudo update-grub 2024-03-11T22:54:49.661 INFO:teuthology.orchestra.run.smithi165.stdout:Reading package lists... 2024-03-11T22:54:49.679 DEBUG:teuthology.orchestra.run.smithi165:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-11T22:54:49.740 INFO:teuthology.orchestra.run.smithi165.stdout:Reading package lists... 2024-03-11T22:54:49.934 INFO:teuthology.orchestra.run.smithi165.stdout:Building dependency tree... 2024-03-11T22:54:49.935 INFO:teuthology.orchestra.run.smithi165.stdout:Reading state information... 2024-03-11T22:54:50.108 INFO:teuthology.orchestra.run.smithi165.stdout:linux-image-generic is already the newest version (5.15.0.100.97). 2024-03-11T22:54:50.108 INFO:teuthology.orchestra.run.smithi165.stdout:The following packages were automatically installed and are no longer required: 2024-03-11T22:54:50.108 INFO:teuthology.orchestra.run.smithi165.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-11T22:54:50.108 INFO:teuthology.orchestra.run.smithi165.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-11T22:54:50.108 INFO:teuthology.orchestra.run.smithi165.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-11T22:54:50.108 INFO:teuthology.orchestra.run.smithi165.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-11T22:54:50.108 INFO:teuthology.orchestra.run.smithi165.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-11T22:54:50.109 INFO:teuthology.orchestra.run.smithi165.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-11T22:54:50.148 INFO:teuthology.orchestra.run.smithi165.stdout:0 upgraded, 0 newly installed, 0 to remove and 288 not upgraded. 2024-03-11T22:54:50.150 DEBUG:teuthology.orchestra.run.smithi165:> dpkg -s linux-image-generic 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Package: linux-image-generic 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Status: install ok installed 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Priority: optional 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Section: kernel 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Installed-Size: 21 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Maintainer: Ubuntu Kernel Team 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Architecture: amd64 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Source: linux-meta 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Version: 5.15.0.100.97 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-100), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-03-11T22:54:50.165 INFO:teuthology.orchestra.run.smithi165.stdout:Depends: linux-image-5.15.0-100-generic, linux-modules-extra-5.15.0-100-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-11T22:54:50.166 INFO:teuthology.orchestra.run.smithi165.stdout:Recommends: thermald 2024-03-11T22:54:50.166 INFO:teuthology.orchestra.run.smithi165.stdout:Description: Generic Linux kernel image 2024-03-11T22:54:50.166 INFO:teuthology.orchestra.run.smithi165.stdout: This package will always depend on the latest generic kernel image 2024-03-11T22:54:50.166 INFO:teuthology.orchestra.run.smithi165.stdout: available. 2024-03-11T22:54:50.166 DEBUG:teuthology.orchestra.run.smithi165:> mktemp 2024-03-11T22:54:50.213 INFO:teuthology.orchestra.run.smithi165.stdout:/tmp/tmp.RdV61XqsAn 2024-03-11T22:54:50.213 DEBUG:teuthology.orchestra.run.smithi165:> sudo cp /boot/grub/grub.cfg /tmp/tmp.RdV61XqsAn 2024-03-11T22:54:50.269 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod 0666 /tmp/tmp.RdV61XqsAn 2024-03-11T22:54:50.391 DEBUG:teuthology.orchestra.remote:smithi165:/tmp/tmp.RdV61XqsAn is 10KB 2024-03-11T22:54:50.404 DEBUG:teuthology.orchestra.run.smithi165:> rm -fr /tmp/tmp.RdV61XqsAn 2024-03-11T22:54:50.409 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-03-11T22:54:50.464 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T22:54:50.465 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-03-11T22:54:50.465 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-03-11T22:54:50.532 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-100-generic 2024-03-11T22:54:50.532 DEBUG:teuthology.orchestra.run.smithi165:> sudo update-grub 2024-03-11T22:54:50.828 INFO:teuthology.orchestra.run.smithi149.stderr:Sourcing file `/etc/default/grub' 2024-03-11T22:54:50.829 INFO:teuthology.orchestra.run.smithi149.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-11T22:54:50.836 INFO:teuthology.orchestra.run.smithi149.stderr:Generating grub configuration file ... 2024-03-11T22:54:51.014 INFO:teuthology.orchestra.run.smithi149.stderr:Found linux image: /boot/vmlinuz-5.15.0-100-generic 2024-03-11T22:54:51.020 INFO:teuthology.orchestra.run.smithi149.stderr:Found initrd image: /boot/initrd.img-5.15.0-100-generic 2024-03-11T22:54:51.229 INFO:teuthology.orchestra.run.smithi149.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-11T22:54:51.234 INFO:teuthology.orchestra.run.smithi149.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-11T22:54:51.273 INFO:teuthology.orchestra.run.smithi149.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-11T22:54:51.277 INFO:teuthology.orchestra.run.smithi149.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-11T22:54:51.402 INFO:teuthology.orchestra.run.smithi149.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-11T22:54:51.402 INFO:teuthology.orchestra.run.smithi149.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-03-11T22:54:51.402 INFO:teuthology.orchestra.run.smithi149.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-11T22:54:51.428 INFO:teuthology.orchestra.run.smithi149.stderr:done 2024-03-11T22:54:51.436 DEBUG:teuthology.orchestra.run.smithi149:> sudo shutdown -r now 2024-03-11T22:54:51.669 INFO:teuthology.orchestra.run.smithi165.stderr:Sourcing file `/etc/default/grub' 2024-03-11T22:54:51.671 INFO:teuthology.orchestra.run.smithi165.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-11T22:54:51.673 INFO:teuthology.orchestra.run.smithi165.stderr:Generating grub configuration file ... 2024-03-11T22:54:51.925 INFO:teuthology.orchestra.run.smithi165.stderr:Found linux image: /boot/vmlinuz-5.15.0-100-generic 2024-03-11T22:54:51.930 INFO:teuthology.orchestra.run.smithi165.stderr:Found initrd image: /boot/initrd.img-5.15.0-100-generic 2024-03-11T22:54:52.227 INFO:teuthology.orchestra.run.smithi165.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-11T22:54:52.232 INFO:teuthology.orchestra.run.smithi165.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-11T22:54:52.274 INFO:teuthology.orchestra.run.smithi165.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-11T22:54:52.279 INFO:teuthology.orchestra.run.smithi165.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-11T22:54:52.401 INFO:teuthology.orchestra.run.smithi165.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-11T22:54:52.401 INFO:teuthology.orchestra.run.smithi165.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-03-11T22:54:52.401 INFO:teuthology.orchestra.run.smithi165.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-11T22:54:52.419 INFO:teuthology.orchestra.run.smithi165.stderr:done 2024-03-11T22:54:52.434 DEBUG:teuthology.orchestra.run.smithi165:> sudo shutdown -r now 2024-03-11T22:55:21.466 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-03-11T22:55:21.467 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi149.front.sepia.ceph.com' 2024-03-11T22:55:21.467 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:55:22.437 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-03-11T22:55:22.438 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-03-11T22:55:22.438 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:55:39.806 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.149 2024-03-11T22:55:40.830 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.165 2024-03-11T22:55:48.812 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi149.front.sepia.ceph.com' 2024-03-11T22:55:48.813 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:55:49.832 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-03-11T22:55:49.833 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:55:51.870 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.149 2024-03-11T22:55:52.894 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.165 2024-03-11T22:56:03.877 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi149.front.sepia.ceph.com' 2024-03-11T22:56:03.878 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:56:04.896 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-03-11T22:56:04.897 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:56:06.942 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.149 2024-03-11T22:56:21.958 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi149.front.sepia.ceph.com' 2024-03-11T22:56:21.958 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:56:23.330 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.165 2024-03-11T22:56:38.343 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-03-11T22:56:38.344 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:56:40.387 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.165 2024-03-11T22:56:53.758 DEBUG:teuthology.orchestra.run.smithi149:> true 2024-03-11T22:56:54.378 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi149.front.sepia.ceph.com' 2024-03-11T22:56:54.379 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-100-generic"... 2024-03-11T22:56:54.379 DEBUG:teuthology.orchestra.run.smithi149:> uname -r 2024-03-11T22:56:54.425 INFO:teuthology.orchestra.run.smithi149.stdout:5.15.0-100-generic 2024-03-11T22:56:54.425 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-100-generic vs 5.15.0-100-generic 2024-03-11T22:56:54.425 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-11T22:56:54.425 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-03-11T22:56:55.426 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-03-11T22:56:55.427 DEBUG:teuthology.orchestra.run.smithi149:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-11T22:56:55.778 INFO:teuthology.orchestra.run.smithi149.stdout:ttyS1 2024-03-11T22:56:55.794 DEBUG:teuthology.parallel:result is None 2024-03-11T22:56:58.387 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-03-11T22:56:58.388 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T22:56:58.931 DEBUG:teuthology.orchestra.run.smithi165:> true 2024-03-11T22:56:59.549 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-03-11T22:56:59.549 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-100-generic"... 2024-03-11T22:56:59.549 DEBUG:teuthology.orchestra.run.smithi165:> uname -r 2024-03-11T22:56:59.595 INFO:teuthology.orchestra.run.smithi165.stdout:5.15.0-100-generic 2024-03-11T22:56:59.595 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-100-generic vs 5.15.0-100-generic 2024-03-11T22:56:59.595 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-11T22:56:59.596 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-03-11T22:57:00.596 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-03-11T22:57:00.597 DEBUG:teuthology.orchestra.run.smithi165:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-11T22:57:00.951 INFO:teuthology.orchestra.run.smithi165.stdout:ttyS1 2024-03-11T22:57:00.981 DEBUG:teuthology.parallel:result is None 2024-03-11T22:57:00.981 INFO:teuthology.run_tasks:Running task internal.base... 2024-03-11T22:57:00.989 INFO:teuthology.task.internal:Creating test directory... 2024-03-11T22:57:00.990 DEBUG:teuthology.orchestra.run.smithi149:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-11T22:57:00.992 DEBUG:teuthology.orchestra.run.smithi165:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-11T22:57:00.998 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-03-11T22:57:01.004 INFO:teuthology.run_tasks:Running task internal.archive... 2024-03-11T22:57:01.015 INFO:teuthology.task.internal:Creating archive directory... 2024-03-11T22:57:01.015 DEBUG:teuthology.orchestra.run.smithi149:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-11T22:57:01.042 DEBUG:teuthology.orchestra.run.smithi165:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-11T22:57:01.069 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-03-11T22:57:01.077 INFO:teuthology.task.internal:Enabling coredump saving... 2024-03-11T22:57:01.077 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T22:57:01.102 DEBUG:teuthology.orchestra.run.smithi165:> 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-11T22:57:01.122 INFO:teuthology.orchestra.run.smithi165.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-11T22:57:01.123 INFO:teuthology.orchestra.run.smithi149.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-11T22:57:01.130 INFO:teuthology.orchestra.run.smithi165.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-11T22:57:01.133 INFO:teuthology.orchestra.run.smithi149.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-11T22:57:01.135 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-03-11T22:57:01.142 INFO:teuthology.task.internal:Configuring sudo... 2024-03-11T22:57:01.142 DEBUG:teuthology.orchestra.run.smithi149:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-11T22:57:01.178 DEBUG:teuthology.orchestra.run.smithi165:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-11T22:57:01.190 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-03-11T22:57:01.199 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-03-11T22:57:01.200 DEBUG:teuthology.orchestra.run.smithi149:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-11T22:57:01.234 DEBUG:teuthology.orchestra.run.smithi165:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-11T22:57:01.239 DEBUG:teuthology.orchestra.run.smithi149:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-11T22:57:01.285 DEBUG:teuthology.orchestra.run.smithi149:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-11T22:57:01.333 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T22:57:01.333 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-11T22:57:01.397 DEBUG:teuthology.orchestra.run.smithi165:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-11T22:57:01.403 DEBUG:teuthology.orchestra.run.smithi165:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-11T22:57:01.452 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T22:57:01.452 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-11T22:57:01.533 DEBUG:teuthology.orchestra.run.smithi149:> sudo service rsyslog restart 2024-03-11T22:57:01.535 DEBUG:teuthology.orchestra.run.smithi165:> sudo service rsyslog restart 2024-03-11T22:57:01.614 INFO:teuthology.run_tasks:Running task internal.timer... 2024-03-11T22:57:01.624 INFO:teuthology.task.internal:Starting timer... 2024-03-11T22:57:01.624 INFO:teuthology.run_tasks:Running task pcp... 2024-03-11T22:57:01.634 INFO:teuthology.run_tasks:Running task selinux... 2024-03-11T22:57:01.642 DEBUG:teuthology.task.selinux:Excluding smithi149: OS 'ubuntu' does not support SELinux 2024-03-11T22:57:01.642 DEBUG:teuthology.task.selinux:Excluding smithi165: OS 'ubuntu' does not support SELinux 2024-03-11T22:57:01.642 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-03-11T22:57:01.642 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-03-11T22:57:01.642 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-03-11T22:57:01.643 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-03-11T22:57:01.652 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-03-11T22:57:01.668 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-11T22:57:01.670 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi149.front.sepia.ceph.com,smithi165.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-03-11T23:04:01.569 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi149.front.sepia.ceph.com'), Remote(name='ubuntu@smithi165.front.sepia.ceph.com')] 2024-03-11T23:04:01.570 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi149.front.sepia.ceph.com' 2024-03-11T23:04:01.572 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T23:04:01.657 DEBUG:teuthology.orchestra.run.smithi149:> true 2024-03-11T23:04:01.734 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi149.front.sepia.ceph.com' 2024-03-11T23:04:01.735 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-03-11T23:04:01.735 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi165.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-11T23:04:01.816 DEBUG:teuthology.orchestra.run.smithi165:> true 2024-03-11T23:04:01.894 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi165.front.sepia.ceph.com' 2024-03-11T23:04:01.894 INFO:teuthology.run_tasks:Running task clock... 2024-03-11T23:04:01.906 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-03-11T23:04:01.907 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-11T23:04:01.907 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T23:04:01.909 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-11T23:04:01.909 DEBUG:teuthology.orchestra.run.smithi165:> 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-11T23:04:01.936 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-03-11T23:04:01.936 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: Command line: ntpd -gq 2024-03-11T23:04:01.936 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: ---------------------------------------------------- 2024-03-11T23:04:01.936 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: ntp-4 is maintained by Network Time Foundation, 2024-03-11T23:04:01.936 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-03-11T23:04:01.936 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: corporation. Support and training for ntp-4 are 2024-03-11T23:04:01.936 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: available at https://www.nwtime.org/support 2024-03-11T23:04:01.936 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: ---------------------------------------------------- 2024-03-11T23:04:01.937 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: proto: precision = 0.057 usec (-24) 2024-03-11T23:04:01.937 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: basedate set to 2022-02-04 2024-03-11T23:04:01.937 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: gps base set to 2022-02-06 (week 2196) 2024-03-11T23:04:01.937 INFO:teuthology.orchestra.run.smithi149.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-11T23:04:01.938 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-11T23:04:01.938 INFO:teuthology.orchestra.run.smithi149.stderr:restrict ::: KOD does nothing without LIMITED. 2024-03-11T23:04:01.939 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: restrict ::: KOD does nothing without LIMITED. 2024-03-11T23:04:01.939 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: Listen and drop on 0 v6wildcard [::]:123 2024-03-11T23:04:01.939 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-03-11T23:04:01.939 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: Listen normally on 2 lo 127.0.0.1:123 2024-03-11T23:04:01.939 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: Listen normally on 3 enp3s0f1 172.21.15.149:123 2024-03-11T23:04:01.939 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: Listen normally on 4 lo [::1]:123 2024-03-11T23:04:01.940 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7d57%5]:123 2024-03-11T23:04:01.940 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:01 ntpd[17165]: Listening on routing socket on fd #22 for interface updates 2024-03-11T23:04:01.967 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-03-11T23:04:01.967 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: Command line: ntpd -gq 2024-03-11T23:04:01.967 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: ---------------------------------------------------- 2024-03-11T23:04:01.967 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: ntp-4 is maintained by Network Time Foundation, 2024-03-11T23:04:01.967 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-03-11T23:04:01.967 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: corporation. Support and training for ntp-4 are 2024-03-11T23:04:01.968 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: available at https://www.nwtime.org/support 2024-03-11T23:04:01.968 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: ---------------------------------------------------- 2024-03-11T23:04:01.968 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: proto: precision = 0.060 usec (-24) 2024-03-11T23:04:01.968 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: basedate set to 2022-02-04 2024-03-11T23:04:01.968 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: gps base set to 2022-02-06 (week 2196) 2024-03-11T23:04:01.969 INFO:teuthology.orchestra.run.smithi165.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-11T23:04:01.969 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-11T23:04:01.969 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: restrict ::: KOD does nothing without LIMITED. 2024-03-11T23:04:01.969 INFO:teuthology.orchestra.run.smithi165.stderr:restrict ::: KOD does nothing without LIMITED. 2024-03-11T23:04:01.970 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: Listen and drop on 0 v6wildcard [::]:123 2024-03-11T23:04:01.970 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-03-11T23:04:01.970 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: Listen normally on 2 lo 127.0.0.1:123 2024-03-11T23:04:01.970 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: Listen normally on 3 enp3s0f1 172.21.15.165:123 2024-03-11T23:04:01.970 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: Listen normally on 4 lo [::1]:123 2024-03-11T23:04:01.970 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7f63%5]:123 2024-03-11T23:04:01.971 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:01 ntpd[17180]: Listening on routing socket on fd #22 for interface updates 2024-03-11T23:04:02.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:02 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:02.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:02 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:02.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:02 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:02.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:02 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:02.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:02 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:02.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:02 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:02.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:02 ntpd[17165]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:02.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:02 ntpd[17165]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:02.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:02 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:02.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:02 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:03.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:03 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:03.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:03 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:03.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:03 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:03.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:03 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:03.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:03 ntpd[17165]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:03.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:03 ntpd[17165]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:04.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:04 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:04.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:04 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:04.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:04 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:04.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:04 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:04.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:04 ntpd[17165]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:04.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:04 ntpd[17165]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:04.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:04 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:04.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:04 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:04.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:04 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:04.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:04 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:04.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:04 ntpd[17180]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:04.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:04 ntpd[17180]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:05.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:05 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:05.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:05 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:05.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:05 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:05.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:05 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:05.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:05 ntpd[17165]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:05.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:05 ntpd[17165]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:05.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:05 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:05.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:05 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:05.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:05 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:05.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:05 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:05.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:05 ntpd[17180]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:05.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:05 ntpd[17180]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:06.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:06.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:06.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:06.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:06.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:06.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:06.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:06.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:06.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:06.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:06.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:06.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:06 ntpd[17165]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:06.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:06.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:06 ntpd[17180]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:07.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:07 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:07.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:07 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:07.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:07 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:07.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:07 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:07.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:07 ntpd[17165]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:07.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:07 ntpd[17165]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:07.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:07 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:07.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:07 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:07.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:07 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:07.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:07 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:07.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:07 ntpd[17180]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:07.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:07 ntpd[17180]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:08.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:08.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:08.937 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stdout:11 Mar 23:04:08 ntpd[17165]: ntpd: time slew -0.003941 s 2024-03-11T23:04:08.938 INFO:teuthology.orchestra.run.smithi149.stdout:ntpd: time slew -0.003941s 2024-03-11T23:04:08.939 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-03-11T23:04:08.939 INFO:teuthology.orchestra.run.smithi149.stderr:11 Mar 23:04:08 ntpd[17165]: can't open /var/log/ntpstats/loopstats.20240311: Permission denied 2024-03-11T23:04:08.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:08.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:08.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:08.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:08.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:08.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:08.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:08.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:08.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:08.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:08.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:08.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:08 ntpd[17180]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:08.987 INFO:teuthology.orchestra.run.smithi149.stdout: remote refid st t when poll reach delay offset jitter 2024-03-11T23:04:08.987 INFO:teuthology.orchestra.run.smithi149.stdout:============================================================================== 2024-03-11T23:04:08.987 INFO:teuthology.orchestra.run.smithi149.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-11T23:04:08.987 INFO:teuthology.orchestra.run.smithi149.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-11T23:04:08.988 INFO:teuthology.orchestra.run.smithi149.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-11T23:04:08.988 INFO:teuthology.orchestra.run.smithi149.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-11T23:04:09.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:09 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:09.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:09 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:09.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:09 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:09.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:09 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:09.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:09 ntpd[17180]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:09.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:09 ntpd[17180]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:10.968 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: can't open /var/log/ntpstats/rawstats.20240311: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-11T23:04:10.969 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: can't open /var/log/ntpstats/peerstats.20240311: Permission denied 2024-03-11T23:04:10.970 INFO:teuthology.orchestra.run.smithi165.stdout:11 Mar 23:04:10 ntpd[17180]: ntpd: time slew +0.001215 s 2024-03-11T23:04:10.970 INFO:teuthology.orchestra.run.smithi165.stdout:ntpd: time slew +0.001215s 2024-03-11T23:04:10.970 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-03-11T23:04:10.970 INFO:teuthology.orchestra.run.smithi165.stderr:11 Mar 23:04:10 ntpd[17180]: can't open /var/log/ntpstats/loopstats.20240311: Permission denied 2024-03-11T23:04:11.025 INFO:teuthology.orchestra.run.smithi165.stdout: remote refid st t when poll reach delay offset jitter 2024-03-11T23:04:11.025 INFO:teuthology.orchestra.run.smithi165.stdout:============================================================================== 2024-03-11T23:04:11.025 INFO:teuthology.orchestra.run.smithi165.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-11T23:04:11.025 INFO:teuthology.orchestra.run.smithi165.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-11T23:04:11.026 INFO:teuthology.orchestra.run.smithi165.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-11T23:04:11.026 INFO:teuthology.orchestra.run.smithi165.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-11T23:04:11.027 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-03-11T23:04:11.037 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-03-11T23:04:11.037 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:04:11.037 DEBUG:teuthology.orchestra.run.smithi149:> dd if=/scratch_devs of=/dev/stdout 2024-03-11T23:04:11.043 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-11T23:04:11.044 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/vg_nvme/lv_1 2024-03-11T23:04:11.092 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-11T23:04:11.092 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-11T23:04:11.092 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 885 Links: 1 2024-03-11T23:04:11.093 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-11T23:04:11.093 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2024-03-11 23:00:44.660199536 +0000 2024-03-11T23:04:11.093 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2024-03-11 23:00:44.656199573 +0000 2024-03-11T23:04:11.093 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2024-03-11 23:00:44.656199573 +0000 2024-03-11T23:04:11.093 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2024-03-11T23:04:11.093 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-11T23:04:11.146 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2024-03-11T23:04:11.146 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2024-03-11T23:04:11.146 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000389099 s, 1.3 MB/s 2024-03-11T23:04:11.148 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-11T23:04:11.197 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/vg_nvme/lv_2 2024-03-11T23:04:11.243 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-11T23:04:11.244 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-11T23:04:11.244 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 897 Links: 1 2024-03-11T23:04:11.244 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-11T23:04:11.244 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2024-03-11 23:00:45.464192355 +0000 2024-03-11T23:04:11.244 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2024-03-11 23:00:45.176194928 +0000 2024-03-11T23:04:11.244 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2024-03-11 23:00:45.176194928 +0000 2024-03-11T23:04:11.244 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2024-03-11T23:04:11.244 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-11T23:04:11.297 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2024-03-11T23:04:11.297 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2024-03-11T23:04:11.297 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000313589 s, 1.6 MB/s 2024-03-11T23:04:11.298 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-11T23:04:11.345 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/vg_nvme/lv_3 2024-03-11T23:04:11.395 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-11T23:04:11.396 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-11T23:04:11.396 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 916 Links: 1 2024-03-11T23:04:11.396 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-11T23:04:11.396 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2024-03-11 23:00:45.976187783 +0000 2024-03-11T23:04:11.396 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2024-03-11 23:00:45.692190319 +0000 2024-03-11T23:04:11.396 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2024-03-11 23:00:45.692190319 +0000 2024-03-11T23:04:11.396 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2024-03-11T23:04:11.396 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-11T23:04:11.450 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2024-03-11T23:04:11.450 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2024-03-11T23:04:11.450 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000409076 s, 1.3 MB/s 2024-03-11T23:04:11.451 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-11T23:04:11.501 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/vg_nvme/lv_4 2024-03-11T23:04:11.548 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-11T23:04:11.548 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-11T23:04:11.548 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 933 Links: 1 2024-03-11T23:04:11.548 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-11T23:04:11.548 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2024-03-11 23:00:46.448183567 +0000 2024-03-11T23:04:11.548 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2024-03-11 23:00:46.200185782 +0000 2024-03-11T23:04:11.548 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2024-03-11 23:00:46.200185782 +0000 2024-03-11T23:04:11.548 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2024-03-11T23:04:11.548 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-11T23:04:11.602 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2024-03-11T23:04:11.602 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2024-03-11T23:04:11.602 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000378127 s, 1.4 MB/s 2024-03-11T23:04:11.603 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-11T23:04:11.653 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T23:04:11.799 INFO:teuthology.orchestra.run.smithi149.stdout:loop 2024-03-11T23:04:11.800 INFO:tasks.nvme_loop:Connecting nvme_loop smithi149:/dev/vg_nvme/lv_1... 2024-03-11T23:04:11.800 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T23:04:11.816 INFO:teuthology.orchestra.run.smithi149.stdout:1 2024-03-11T23:04:11.837 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/vg_nvme/lv_11 2024-03-11T23:04:11.854 INFO:tasks.nvme_loop:Connecting nvme_loop smithi149:/dev/vg_nvme/lv_2... 2024-03-11T23:04:11.854 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T23:04:11.915 INFO:teuthology.orchestra.run.smithi149.stdout:1 2024-03-11T23:04:11.933 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/vg_nvme/lv_21 2024-03-11T23:04:11.949 INFO:tasks.nvme_loop:Connecting nvme_loop smithi149:/dev/vg_nvme/lv_3... 2024-03-11T23:04:11.949 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T23:04:12.006 INFO:teuthology.orchestra.run.smithi149.stdout:1 2024-03-11T23:04:12.025 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/vg_nvme/lv_31 2024-03-11T23:04:12.041 INFO:tasks.nvme_loop:Connecting nvme_loop smithi149:/dev/vg_nvme/lv_4... 2024-03-11T23:04:12.041 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T23:04:12.099 INFO:teuthology.orchestra.run.smithi149.stdout:1 2024-03-11T23:04:12.118 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/vg_nvme/lv_41 2024-03-11T23:04:12.133 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:04:12.133 DEBUG:teuthology.orchestra.run.smithi149:> dd if=/scratch_devs of=/dev/stdout 2024-03-11T23:04:12.180 DEBUG:teuthology.orchestra.run.smithi149:> sudo nvme list 2024-03-11T23:04:12.232 INFO:teuthology.orchestra.run.smithi149.stdout:Node SN Model Namespace Usage Format FW Rev 2024-03-11T23:04:12.233 INFO:teuthology.orchestra.run.smithi149.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-03-11T23:04:12.233 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/nvme0n1 CVFT623300CK400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-03-11T23:04:12.233 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/nvme1n1 90f182599f3cb9fb0439 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-11T23:04:12.233 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/nvme2n1 cc23feb170aa197f0b73 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-11T23:04:12.233 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/nvme3n1 bf4d0bd49a2b61db3fda Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-11T23:04:12.233 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/nvme4n1 e77c1e670f3af105b990 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-11T23:04:12.234 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-11T23:04:12.234 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:04:12.234 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/scratch_devs 2024-03-11T23:04:12.285 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T23:04:12.285 DEBUG:teuthology.orchestra.run.smithi165:> dd if=/scratch_devs of=/dev/stdout 2024-03-11T23:04:12.291 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-11T23:04:12.292 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_1 2024-03-11T23:04:12.337 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-11T23:04:12.338 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-11T23:04:12.338 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 884 Links: 1 2024-03-11T23:04:12.338 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-11T23:04:12.338 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-03-11 23:00:46.212118328 +0000 2024-03-11T23:04:12.338 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-03-11 23:00:45.932120829 +0000 2024-03-11T23:04:12.338 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-03-11 23:00:45.932120829 +0000 2024-03-11T23:04:12.338 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-03-11T23:04:12.338 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-11T23:04:12.392 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-03-11T23:04:12.392 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-03-11T23:04:12.392 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000444792 s, 1.2 MB/s 2024-03-11T23:04:12.393 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-11T23:04:12.443 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_2 2024-03-11T23:04:12.489 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-11T23:04:12.489 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-11T23:04:12.490 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 903 Links: 1 2024-03-11T23:04:12.490 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-11T23:04:12.490 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-03-11 23:00:46.708113898 +0000 2024-03-11T23:04:12.490 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-03-11 23:00:46.440116292 +0000 2024-03-11T23:04:12.490 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-03-11 23:00:46.440116292 +0000 2024-03-11T23:04:12.490 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-03-11T23:04:12.490 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-11T23:04:12.544 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-03-11T23:04:12.544 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-03-11T23:04:12.544 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.00040142 s, 1.3 MB/s 2024-03-11T23:04:12.545 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-11T23:04:12.594 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_3 2024-03-11T23:04:12.641 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-11T23:04:12.641 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-11T23:04:12.641 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 922 Links: 1 2024-03-11T23:04:12.642 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-11T23:04:12.642 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-03-11 23:00:47.216109360 +0000 2024-03-11T23:04:12.642 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-03-11 23:00:46.936111861 +0000 2024-03-11T23:04:12.642 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-03-11 23:00:46.936111861 +0000 2024-03-11T23:04:12.642 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-03-11T23:04:12.642 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-11T23:04:12.695 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-03-11T23:04:12.695 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-03-11T23:04:12.695 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000422808 s, 1.2 MB/s 2024-03-11T23:04:12.696 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-11T23:04:12.746 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/vg_nvme/lv_4 2024-03-11T23:04:12.793 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-11T23:04:12.793 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-11T23:04:12.793 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 939 Links: 1 2024-03-11T23:04:12.793 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-11T23:04:12.793 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-03-11 23:00:47.736104716 +0000 2024-03-11T23:04:12.793 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-03-11 23:00:47.468107109 +0000 2024-03-11T23:04:12.793 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-03-11 23:00:47.468107109 +0000 2024-03-11T23:04:12.793 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-03-11T23:04:12.794 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-11T23:04:12.847 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-03-11T23:04:12.847 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-03-11T23:04:12.848 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000305924 s, 1.7 MB/s 2024-03-11T23:04:12.849 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-11T23:04:12.898 DEBUG:teuthology.orchestra.run.smithi165:> 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-11T23:04:13.096 INFO:teuthology.orchestra.run.smithi165.stdout:loop 2024-03-11T23:04:13.098 INFO:tasks.nvme_loop:Connecting nvme_loop smithi165:/dev/vg_nvme/lv_1... 2024-03-11T23:04:13.098 DEBUG:teuthology.orchestra.run.smithi165:> 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-11T23:04:13.115 INFO:teuthology.orchestra.run.smithi165.stdout:1 2024-03-11T23:04:13.135 INFO:teuthology.orchestra.run.smithi165.stdout:/dev/vg_nvme/lv_11 2024-03-11T23:04:13.151 INFO:tasks.nvme_loop:Connecting nvme_loop smithi165:/dev/vg_nvme/lv_2... 2024-03-11T23:04:13.151 DEBUG:teuthology.orchestra.run.smithi165:> 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-11T23:04:13.208 INFO:teuthology.orchestra.run.smithi165.stdout:1 2024-03-11T23:04:13.228 INFO:teuthology.orchestra.run.smithi165.stdout:/dev/vg_nvme/lv_21 2024-03-11T23:04:13.245 INFO:tasks.nvme_loop:Connecting nvme_loop smithi165:/dev/vg_nvme/lv_3... 2024-03-11T23:04:13.245 DEBUG:teuthology.orchestra.run.smithi165:> 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-11T23:04:13.306 INFO:teuthology.orchestra.run.smithi165.stdout:1 2024-03-11T23:04:13.327 INFO:teuthology.orchestra.run.smithi165.stdout:/dev/vg_nvme/lv_31 2024-03-11T23:04:13.344 INFO:tasks.nvme_loop:Connecting nvme_loop smithi165:/dev/vg_nvme/lv_4... 2024-03-11T23:04:13.344 DEBUG:teuthology.orchestra.run.smithi165:> 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-11T23:04:13.406 INFO:teuthology.orchestra.run.smithi165.stdout:1 2024-03-11T23:04:13.427 INFO:teuthology.orchestra.run.smithi165.stdout:/dev/vg_nvme/lv_41 2024-03-11T23:04:13.445 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T23:04:13.445 DEBUG:teuthology.orchestra.run.smithi165:> dd if=/scratch_devs of=/dev/stdout 2024-03-11T23:04:13.497 DEBUG:teuthology.orchestra.run.smithi165:> sudo nvme list 2024-03-11T23:04:13.552 INFO:teuthology.orchestra.run.smithi165.stdout:Node SN Model Namespace Usage Format FW Rev 2024-03-11T23:04:13.552 INFO:teuthology.orchestra.run.smithi165.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-03-11T23:04:13.552 INFO:teuthology.orchestra.run.smithi165.stdout:/dev/nvme0n1 CVFT623300CE400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-03-11T23:04:13.552 INFO:teuthology.orchestra.run.smithi165.stdout:/dev/nvme1n1 da7476dad5fe92bef5f6 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-11T23:04:13.552 INFO:teuthology.orchestra.run.smithi165.stdout:/dev/nvme2n1 4a02910ee5dfa0917e0d Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-11T23:04:13.552 INFO:teuthology.orchestra.run.smithi165.stdout:/dev/nvme3n1 865cb9a989ef58f36d21 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-11T23:04:13.552 INFO:teuthology.orchestra.run.smithi165.stdout:/dev/nvme4n1 6ff710b594da79ccdcb9 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-11T23:04:13.553 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-11T23:04:13.553 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T23:04:13.553 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/scratch_devs 2024-03-11T23:04:13.606 INFO:teuthology.run_tasks:Running task cephadm... 2024-03-11T23:04:13.710 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': '94a539707733325322964c6a187c6a1b41be1daf'} 2024-03-11T23:04:13.711 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf 2024-03-11T23:04:13.711 INFO:tasks.cephadm:Cluster fsid is ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:04:13.711 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-03-11T23:04:13.712 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-03-11T23:04:13.712 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi149': '172.21.15.149', 'mon.smithi165': '172.21.15.165'} 2024-03-11T23:04:13.712 INFO:tasks.cephadm:Normalizing hostnames... 2024-03-11T23:04:13.712 DEBUG:teuthology.orchestra.run.smithi149:> sudo hostname $(hostname -s) 2024-03-11T23:04:13.727 DEBUG:teuthology.orchestra.run.smithi165:> sudo hostname $(hostname -s) 2024-03-11T23:04:13.741 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-03-11T23:04:13.741 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=94a539707733325322964c6a187c6a1b41be1daf 2024-03-11T23:04:13.887 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '94a539707733325322964c6a187c6a1b41be1daf', '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/77431/', 'root_build_cause': 'SCMTRIGGER,MANUALTRIGGER', 'version': '19.0.0-1607-g94a53970', 'node_name': '172.21.2.16+braggi16', '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-1607-g94a53970-1jammy'}, 'url': 'https://1.chacra.ceph.com/r/ceph/squid/94a539707733325322964c6a187c6a1b41be1daf/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-03-08 04:28:28.203537', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/squid/94a539707733325322964c6a187c6a1b41be1daf/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}, {'status': 'ready', 'sha1': '94a539707733325322964c6a187c6a1b41be1daf', '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/77429/', 'root_build_cause': 'SCMTRIGGER,MANUALTRIGGER', 'version': '19.0.0-1607-g94a53970', 'node_name': '172.21.2.10+braggi10', '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-1607-g94a53970-1jammy'}, 'url': 'https://3.chacra.ceph.com/r/ceph/squid/94a539707733325322964c6a187c6a1b41be1daf/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-03-08 04:05:45.820325', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/squid/94a539707733325322964c6a187c6a1b41be1daf/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}, {'status': 'ready', 'sha1': '94a539707733325322964c6a187c6a1b41be1daf', '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/77426/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-1607-g94a53970', 'node_name': '172.21.2.2+braggi02', '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-1607-g94a53970-1jammy'}, 'url': 'https://2.chacra.ceph.com/r/ceph/squid/94a539707733325322964c6a187c6a1b41be1daf/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-03-08 03:23:55.047805', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/squid/94a539707733325322964c6a187c6a1b41be1daf/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-03-11T23:04:14.105 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref squid, sha1 94a539707733325322964c6a187c6a1b41be1daf from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=94a539707733325322964c6a187c6a1b41be1daf 2024-03-11T23:04:14.107 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/squid/94a539707733325322964c6a187c6a1b41be1daf/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-03-11T23:04:14.107 DEBUG:teuthology.orchestra.run.smithi149:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/94a539707733325322964c6a187c6a1b41be1daf/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-03-11T23:04:14.638 INFO:teuthology.orchestra.run.smithi149.stdout:-rw-rw-r-- 1 ubuntu ubuntu 774059 Mar 11 23:04 /home/ubuntu/cephtest/cephadm 2024-03-11T23:04:14.638 DEBUG:teuthology.orchestra.run.smithi165:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/94a539707733325322964c6a187c6a1b41be1daf/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-03-11T23:04:15.200 INFO:teuthology.orchestra.run.smithi165.stdout:-rw-rw-r-- 1 ubuntu ubuntu 774059 Mar 11 23:04 /home/ubuntu/cephtest/cephadm 2024-03-11T23:04:15.200 DEBUG:teuthology.orchestra.run.smithi149:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-03-11T23:04:15.207 DEBUG:teuthology.orchestra.run.smithi165:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-03-11T23:04:15.224 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf on all hosts... 2024-03-11T23:04:15.224 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf pull 2024-03-11T23:04:15.251 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf pull 2024-03-11T23:04:15.414 INFO:teuthology.orchestra.run.smithi149.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf... 2024-03-11T23:04:15.419 INFO:teuthology.orchestra.run.smithi165.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf... 2024-03-11T23:05:11.015 INFO:teuthology.orchestra.run.smithi149.stdout:{ 2024-03-11T23:05:11.015 INFO:teuthology.orchestra.run.smithi149.stdout: "ceph_version": "ceph version 19.0.0-1607-g94a53970 (94a539707733325322964c6a187c6a1b41be1daf) squid (dev)", 2024-03-11T23:05:11.015 INFO:teuthology.orchestra.run.smithi149.stdout: "image_id": "a6477a474d71b439ad6caa1ffdec0c8e4b844b029f7201a2e5a0a3cf1e1a739e", 2024-03-11T23:05:11.016 INFO:teuthology.orchestra.run.smithi149.stdout: "repo_digests": [ 2024-03-11T23:05:11.016 INFO:teuthology.orchestra.run.smithi149.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:bbe755e768640cafd345af8384e9f3b099ff2fb85ebf0601e0883dbf412b887b" 2024-03-11T23:05:11.016 INFO:teuthology.orchestra.run.smithi149.stdout: ] 2024-03-11T23:05:11.016 INFO:teuthology.orchestra.run.smithi149.stdout:} 2024-03-11T23:05:13.271 INFO:teuthology.orchestra.run.smithi165.stdout:{ 2024-03-11T23:05:13.401 INFO:teuthology.orchestra.run.smithi165.stdout: "ceph_version": "ceph version 19.0.0-1607-g94a53970 (94a539707733325322964c6a187c6a1b41be1daf) squid (dev)", 2024-03-11T23:05:13.402 INFO:teuthology.orchestra.run.smithi165.stdout: "image_id": "a6477a474d71b439ad6caa1ffdec0c8e4b844b029f7201a2e5a0a3cf1e1a739e", 2024-03-11T23:05:13.402 INFO:teuthology.orchestra.run.smithi165.stdout: "repo_digests": [ 2024-03-11T23:05:13.402 INFO:teuthology.orchestra.run.smithi165.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:bbe755e768640cafd345af8384e9f3b099ff2fb85ebf0601e0883dbf412b887b" 2024-03-11T23:05:13.402 INFO:teuthology.orchestra.run.smithi165.stdout: ] 2024-03-11T23:05:13.402 INFO:teuthology.orchestra.run.smithi165.stdout:} 2024-03-11T23:05:13.404 DEBUG:teuthology.orchestra.run.smithi149:> sudo mkdir -p /etc/ceph 2024-03-11T23:05:13.418 DEBUG:teuthology.orchestra.run.smithi165:> sudo mkdir -p /etc/ceph 2024-03-11T23:05:13.432 DEBUG:teuthology.orchestra.run.smithi149:> sudo chmod 777 /etc/ceph 2024-03-11T23:05:13.473 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod 777 /etc/ceph 2024-03-11T23:05:13.487 INFO:tasks.cephadm:Writing seed config... 2024-03-11T23:05:13.488 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-03-11T23:05:13.488 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-03-11T23:05:13.488 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-03-11T23:05:13.488 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-03-11T23:05:13.488 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-03-11T23:05:13.488 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-03-11T23:05:13.488 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-03-11T23:05:13.488 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-03-11T23:05:13.489 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:05:13.489 DEBUG:teuthology.orchestra.run.smithi149:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-03-11T23:05:13.522 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 = ad95ae2e-dffb-11ee-95c8-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-11T23:05:13.522 DEBUG:teuthology.orchestra.run.smithi149:mon.smithi149> sudo journalctl -f -n 0 -u ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi149.service 2024-03-11T23:05:13.567 INFO:tasks.cephadm:Bootstrapping... 2024-03-11T23:05:13.567 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf -v bootstrap --fsid ad95ae2e-dffb-11ee-95c8-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.149 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-03-11T23:05:13.776 INFO:teuthology.orchestra.run.smithi149.stdout:-------------------------------------------------------------------------------- 2024-03-11T23:05:13.776 INFO:teuthology.orchestra.run.smithi149.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf', '-v', 'bootstrap', '--fsid', 'ad95ae2e-dffb-11ee-95c8-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.149', '--skip-admin-label'] 2024-03-11T23:05:13.776 INFO:teuthology.orchestra.run.smithi149.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-03-11T23:05:13.777 INFO:teuthology.orchestra.run.smithi149.stdout:Verifying podman|docker is present... 2024-03-11T23:05:13.777 INFO:teuthology.orchestra.run.smithi149.stdout:Verifying lvm2 is present... 2024-03-11T23:05:13.777 INFO:teuthology.orchestra.run.smithi149.stdout:Verifying time synchronization is in place... 2024-03-11T23:05:13.783 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-03-11T23:05:13.783 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-03-11T23:05:13.789 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-03-11T23:05:13.789 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout inactive 2024-03-11T23:05:13.794 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-03-11T23:05:13.794 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-03-11T23:05:13.797 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-03-11T23:05:13.798 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout inactive 2024-03-11T23:05:13.801 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-03-11T23:05:13.801 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout masked 2024-03-11T23:05:13.804 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-03-11T23:05:13.804 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout inactive 2024-03-11T23:05:13.808 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-03-11T23:05:13.808 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-03-11T23:05:13.811 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-03-11T23:05:13.812 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout inactive 2024-03-11T23:05:13.815 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout enabled 2024-03-11T23:05:13.819 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout active 2024-03-11T23:05:13.819 INFO:teuthology.orchestra.run.smithi149.stdout:Unit ntp.service is enabled and running 2024-03-11T23:05:13.819 INFO:teuthology.orchestra.run.smithi149.stdout:Repeating the final host check... 2024-03-11T23:05:13.819 INFO:teuthology.orchestra.run.smithi149.stdout:docker (/usr/bin/docker) is present 2024-03-11T23:05:13.819 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl is present 2024-03-11T23:05:13.820 INFO:teuthology.orchestra.run.smithi149.stdout:lvcreate is present 2024-03-11T23:05:13.823 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-03-11T23:05:13.823 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-03-11T23:05:13.826 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-03-11T23:05:13.826 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout inactive 2024-03-11T23:05:13.829 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-03-11T23:05:13.830 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-03-11T23:05:13.832 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-03-11T23:05:13.832 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout inactive 2024-03-11T23:05:13.836 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-03-11T23:05:13.836 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout masked 2024-03-11T23:05:13.839 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-03-11T23:05:13.839 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout inactive 2024-03-11T23:05:13.842 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-03-11T23:05:13.842 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-03-11T23:05:13.846 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-03-11T23:05:13.846 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout inactive 2024-03-11T23:05:13.850 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout enabled 2024-03-11T23:05:13.853 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stdout active 2024-03-11T23:05:13.853 INFO:teuthology.orchestra.run.smithi149.stdout:Unit ntp.service is enabled and running 2024-03-11T23:05:13.854 INFO:teuthology.orchestra.run.smithi149.stdout:Host looks OK 2024-03-11T23:05:13.854 INFO:teuthology.orchestra.run.smithi149.stdout:Cluster fsid: ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:05:13.854 INFO:teuthology.orchestra.run.smithi149.stdout:Acquiring lock 140032228668944 on /run/cephadm/ad95ae2e-dffb-11ee-95c8-87774f69a715.lock 2024-03-11T23:05:13.854 INFO:teuthology.orchestra.run.smithi149.stdout:Lock 140032228668944 acquired on /run/cephadm/ad95ae2e-dffb-11ee-95c8-87774f69a715.lock 2024-03-11T23:05:13.854 INFO:teuthology.orchestra.run.smithi149.stdout:Verifying IP 172.21.15.149 port 3300 ... 2024-03-11T23:05:13.854 INFO:teuthology.orchestra.run.smithi149.stdout:Verifying IP 172.21.15.149 port 6789 ... 2024-03-11T23:05:13.854 INFO:teuthology.orchestra.run.smithi149.stdout:Base mon IP(s) is [172.21.15.149:3300, 172.21.15.149:6789], mon addrv is [v2:172.21.15.149:3300,v1:172.21.15.149:6789] 2024-03-11T23:05:13.856 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 2024-03-11T23:05:13.857 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.149 metric 100 2024-03-11T23:05:13.857 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout 158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.149 metric 100 2024-03-11T23:05:13.857 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-03-11T23:05:13.857 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.149 metric 100 2024-03-11T23:05:13.857 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout 172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.149 metric 100 2024-03-11T23:05:13.857 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout 172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.149 metric 100 2024-03-11T23:05:13.857 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.149 metric 100 2024-03-11T23:05:13.858 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-03-11T23:05:13.858 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-03-11T23:05:13.858 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1784sec pref medium 2024-03-11T23:05:13.860 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-03-11T23:05:13.861 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-03-11T23:05:13.861 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-03-11T23:05:13.861 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-03-11T23:05:13.861 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe88:7d57/64 scope link 2024-03-11T23:05:13.861 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-03-11T23:05:13.862 INFO:teuthology.orchestra.run.smithi149.stdout:Mon IP `172.21.15.149` is in CIDR network `172.21.0.0/20` 2024-03-11T23:05:13.862 INFO:teuthology.orchestra.run.smithi149.stdout:Mon IP `172.21.15.149` is in CIDR network `172.21.0.0/20` 2024-03-11T23:05:13.862 INFO:teuthology.orchestra.run.smithi149.stdout:Mon IP `172.21.15.149` is in CIDR network `172.21.0.1/32` 2024-03-11T23:05:13.862 INFO:teuthology.orchestra.run.smithi149.stdout:Mon IP `172.21.15.149` is in CIDR network `172.21.0.1/32` 2024-03-11T23:05:13.862 INFO:teuthology.orchestra.run.smithi149.stdout:Mon IP `172.21.15.149` is in CIDR network `172.21.0.2/32` 2024-03-11T23:05:13.862 INFO:teuthology.orchestra.run.smithi149.stdout:Mon IP `172.21.15.149` is in CIDR network `172.21.0.2/32` 2024-03-11T23:05:13.863 INFO:teuthology.orchestra.run.smithi149.stdout:Mon IP `172.21.15.149` is in CIDR network `172.21.15.254/32` 2024-03-11T23:05:13.863 INFO:teuthology.orchestra.run.smithi149.stdout:Mon IP `172.21.15.149` is in CIDR network `172.21.15.254/32` 2024-03-11T23:05:13.863 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:13.863 INFO:teuthology.orchestra.run.smithi149.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-03-11T23:05:13.863 INFO:teuthology.orchestra.run.smithi149.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf... 2024-03-11T23:05:14.125 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/docker: stdout 94a539707733325322964c6a187c6a1b41be1daf: Pulling from ceph-ci/ceph 2024-03-11T23:05:14.125 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/docker: stdout Digest: sha256:bbe755e768640cafd345af8384e9f3b099ff2fb85ebf0601e0883dbf412b887b 2024-03-11T23:05:14.125 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf 2024-03-11T23:05:14.125 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf 2024-03-11T23:05:15.360 INFO:teuthology.orchestra.run.smithi149.stdout:ceph: stdout ceph version 19.0.0-1607-g94a53970 (94a539707733325322964c6a187c6a1b41be1daf) squid (dev) 2024-03-11T23:05:15.360 INFO:teuthology.orchestra.run.smithi149.stdout:Ceph version: ceph version 19.0.0-1607-g94a53970 (94a539707733325322964c6a187c6a1b41be1daf) squid (dev) 2024-03-11T23:05:15.360 INFO:teuthology.orchestra.run.smithi149.stdout:Extracting ceph user uid/gid from container image... 2024-03-11T23:05:16.530 INFO:teuthology.orchestra.run.smithi149.stdout:stat: stdout 167 167 2024-03-11T23:05:16.531 INFO:teuthology.orchestra.run.smithi149.stdout:Creating initial keys... 2024-03-11T23:05:17.652 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-authtool: stdout AQAtju9lM6IsCxAAyHknap1+8WYRpU6+Cgnrtw== 2024-03-11T23:05:18.798 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-authtool: stdout AQAuju9lqSAfERAA9E9cgj7WIl12BTOiKaWN8w== 2024-03-11T23:05:20.002 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-authtool: stdout AQAvju9lCJjvGRAAoK5N1eDDDFTa0JeN67lNAw== 2024-03-11T23:05:20.002 INFO:teuthology.orchestra.run.smithi149.stdout:Creating initial monmap... 2024-03-11T23:05:21.157 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-03-11T23:05:21.157 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-03-11T23:05:21.157 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:05:21.157 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-03-11T23:05:21.157 INFO:teuthology.orchestra.run.smithi149.stdout:monmaptool for smithi149 [v2:172.21.15.149:3300,v1:172.21.15.149:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-03-11T23:05:21.157 INFO:teuthology.orchestra.run.smithi149.stdout:setting min_mon_release = quincy 2024-03-11T23:05:21.157 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/monmaptool: set fsid to ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:05:21.157 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-03-11T23:05:21.157 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:05:21.158 INFO:teuthology.orchestra.run.smithi149.stdout:Creating mon... 2024-03-11T23:05:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-03-11T23:05:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 1 imported monmap: 2024-03-11T23:05:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-03-11T23:05:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:05:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-03-11T23:05:20.650764+0000 2024-03-11T23:05:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr created 2024-03-11T23:05:20.650764+0000 2024-03-11T23:05:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-03-11T23:05:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-03-11T23:05:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0] mon.smithi149 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 0 /usr/bin/ceph-mon: set fsid to ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: RocksDB version: 7.9.2 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Git sha 0 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Compile date 2024-03-08 02:48:09 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: DB SUMMARY 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: DB Session ID: TKKERE168XEKG5T5FRSD 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi149/store.db dir, Total Num: 0, files: 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi149/store.db: 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.382 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.error_if_exists: 0 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.create_if_missing: 1 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.paranoid_checks: 1 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.env: 0x5561a8776ae0 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.fs: PosixFileSystem 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.info_log: 0x5561aac74a20 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.statistics: (nil) 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.use_fsync: 0 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_log_file_size: 0 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-03-11T23:05:22.383 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.allow_fallocate: 1 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.use_direct_reads: 0 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.create_missing_column_families: 0 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.db_log_dir: 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.wal_dir: 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-03-11T23:05:22.384 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.advise_random_on_open: 1 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.write_buffer_manager: 0x5561aac49360 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.rate_limiter: (nil) 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.unordered_write: 0 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-03-11T23:05:22.385 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.row_cache: None 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.wal_filter: None 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.two_write_queues: 0 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.manual_wal_flush: 0 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.wal_compression: 0 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.atomic_flush: 0 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.log_readahead_size: 0 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-03-11T23:05:22.386 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_background_jobs: 2 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_background_compactions: -1 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_subcompactions: 1 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_total_wal_size: 0 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-03-11T23:05:22.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_open_files: -1 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.bytes_per_sync: 0 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Options.max_background_flushes: -1 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: Compression algorithms supported: 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: kZSTD supported: 0 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: kXpressCompression supported: 0 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.830+0000 7f03462adc80 4 rocksdb: kZlibCompression supported: 1 2024-03-11T23:05:22.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.834+0000 7f03462adc80 4 rocksdb: kSnappyCompression supported: 1 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.834+0000 7f03462adc80 4 rocksdb: kLZ4Compression supported: 1 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.834+0000 7f03462adc80 4 rocksdb: kBZip2Compression supported: 0 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.834+0000 7f03462adc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.834+0000 7f03462adc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.834+0000 7f03462adc80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi149/store.db/MANIFEST-000001 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.merge_operator: 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_filter: None 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_filter_factory: None 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-03-11T23:05:22.389 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5561aac74b20) 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-03-11T23:05:22.390 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x5561aac79090 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-03-11T23:05:22.391 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compression: NoCompression 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-03-11T23:05:22.392 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.num_levels: 7 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compression_opts.level: 32767 2024-03-11T23:05:22.393 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compression_opts.enabled: false 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-03-11T23:05:22.394 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.arena_block_size: 1048576 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-03-11T23:05:22.395 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.table_properties_collectors: 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.inplace_update_support: 0 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.bloom_locality: 0 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.max_successive_merges: 0 2024-03-11T23:05:22.396 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.force_consistency_checks: 1 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.ttl: 2592000 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.enable_blob_files: false 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.min_blob_size: 0 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.blob_file_size: 268435456 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-03-11T23:05:22.397 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi149/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-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: c942cefe-0c0b-4fed-b3f9-ce81f176d18a 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5561aad44000 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f03462adc80 4 rocksdb: DB pointer 0x5561aad34000 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f0336425700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.838+0000 7f0336425700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-03-11T23:05:22.398 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-03-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-03-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-03-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-03-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.399 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-03-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.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-11T23:05:22.400 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x5561aac79090#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.2e-05 secs_since: 0 2024-03-11T23:05:22.401 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-03-11T23:05:22.401 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.401 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-03-11T23:05:22.401 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr 2024-03-11T23:05:22.401 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.842+0000 7f03462adc80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-03-11T23:05:22.401 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.842+0000 7f03462adc80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-03-11T23:05:22.401 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-11T23:05:21.842+0000 7f03462adc80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi149 for mon.smithi149 2024-03-11T23:05:22.401 INFO:teuthology.orchestra.run.smithi149.stdout:create mon.smithi149 on 2024-03-11T23:05:22.876 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-03-11T23:05:23.185 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715.target -> /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715.target. 2024-03-11T23:05:23.185 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715.target -> /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715.target. 2024-03-11T23:05:23.466 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi149 2024-03-11T23:05:23.466 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Failed to reset failed state of unit ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi149.service: Unit ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi149.service not loaded. 2024-03-11T23:05:23.662 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715.target.wants/ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi149.service -> /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@.service. 2024-03-11T23:05:23.673 INFO:teuthology.orchestra.run.smithi149.stdout:firewalld does not appear to be present 2024-03-11T23:05:23.673 INFO:teuthology.orchestra.run.smithi149.stdout:Not possible to enable service . firewalld.service is not available 2024-03-11T23:05:23.673 INFO:teuthology.orchestra.run.smithi149.stdout:Waiting for mon to start... 2024-03-11T23:05:23.673 INFO:teuthology.orchestra.run.smithi149.stdout:Waiting for mon... 2024-03-11T23:05:25.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:25 smithi149 bash[18201]: cluster 2024-03-11T23:05:25.090570+0000 mon.smithi149 (mon.0) 1 : cluster 1 mon.smithi149 is new leader, mons smithi149 in quorum (ranks 0) 2024-03-11T23:05:25.858 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout cluster: 2024-03-11T23:05:25.858 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout id: ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:05:25.858 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-03-11T23:05:25.858 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout services: 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi149 (age 0.176302s) 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout data: 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout pgs: 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:mon is available 2024-03-11T23:05:25.859 INFO:teuthology.orchestra.run.smithi149.stdout:Assimilating anything we can from ceph.conf... 2024-03-11T23:05:26.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:26 smithi149 bash[18201]: cluster 2024-03-11T23:05:25.094669+0000 mon.smithi149 (mon.0) 2 : cluster 1 mon.smithi149 is new leader, mons smithi149 in quorum (ranks 0) 2024-03-11T23:05:26.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:26 smithi149 bash[18201]: cluster 2024-03-11T23:05:25.094852+0000 mon.smithi149 (mon.0) 3 : cluster 0 monmap e1: 1 mons at {smithi149=[v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-03-11T23:05:26.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:26 smithi149 bash[18201]: cluster 2024-03-11T23:05:25.097718+0000 mon.smithi149 (mon.0) 4 : cluster 0 fsmap 2024-03-11T23:05:26.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:26 smithi149 bash[18201]: cluster 2024-03-11T23:05:25.100191+0000 mon.smithi149 (mon.0) 5 : cluster 0 osdmap e1: 0 total, 0 up, 0 in 2024-03-11T23:05:26.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:26 smithi149 bash[18201]: cluster 2024-03-11T23:05:25.100762+0000 mon.smithi149 (mon.0) 6 : cluster 0 mgrmap e1: no daemons active 2024-03-11T23:05:26.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:26 smithi149 bash[18201]: audit 2024-03-11T23:05:25.270908+0000 mon.smithi149 (mon.0) 7 : audit 0 from='client.? 172.21.15.149:0/1666314377' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-03-11T23:05:27.387 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout [global] 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout fsid = ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.149:3300,v1:172.21.15.149:6789] 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout [mgr] 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout [osd] 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-03-11T23:05:27.388 INFO:teuthology.orchestra.run.smithi149.stdout:Generating new minimal ceph.conf... 2024-03-11T23:05:27.408 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:27 smithi149 bash[18201]: audit 2024-03-11T23:05:26.753360+0000 mon.smithi149 (mon.0) 8 : audit 1 from='client.? 172.21.15.149:0/1603232514' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-03-11T23:05:27.408 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:27 smithi149 bash[18201]: audit 2024-03-11T23:05:26.757642+0000 mon.smithi149 (mon.0) 9 : audit 1 from='client.? 172.21.15.149:0/1603232514' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-03-11T23:05:28.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:28 smithi149 bash[18201]: audit 2024-03-11T23:05:28.350691+0000 mon.smithi149 (mon.0) 10 : audit 0 from='client.? 172.21.15.149:0/1660073013' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:05:28.891 INFO:teuthology.orchestra.run.smithi149.stdout:Restarting the monitor... 2024-03-11T23:05:29.219 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:28 smithi149 systemd[1]: Stopping Ceph mon.smithi149 for ad95ae2e-dffb-11ee-95c8-87774f69a715... 2024-03-11T23:05:29.220 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:29 smithi149 bash[18201]: debug 2024-03-11T23:05:29.006+0000 7f17c4194700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi149 -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-11T23:05:29.220 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:29 smithi149 bash[18201]: debug 2024-03-11T23:05:29.006+0000 7f17c4194700 -1 mon.smithi149@0(leader) e1 *** Got Signal Terminated *** 2024-03-11T23:05:29.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:29 smithi149 bash[18634]: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-mon-smithi149 2024-03-11T23:05:29.615 INFO:teuthology.orchestra.run.smithi149.stdout:Setting public_network to 172.21.0.1/32,172.21.0.2/32,172.21.15.254/32,172.21.0.0/20 in mon config section 2024-03-11T23:05:30.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:29 smithi149 bash[18696]: Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-mon-smithi149 2024-03-11T23:05:30.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:29 smithi149 systemd[1]: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi149.service: Deactivated successfully. 2024-03-11T23:05:30.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:29 smithi149 systemd[1]: Stopped Ceph mon.smithi149 for ad95ae2e-dffb-11ee-95c8-87774f69a715. 2024-03-11T23:05:30.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:29 smithi149 systemd[1]: Started Ceph mon.smithi149 for ad95ae2e-dffb-11ee-95c8-87774f69a715. 2024-03-11T23:05:30.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.570+0000 7f2e634b3c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-03-11T23:05:30.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.570+0000 7f2e634b3c80 0 ceph version 19.0.0-1607-g94a53970 (94a539707733325322964c6a187c6a1b41be1daf) squid (dev), process ceph-mon, pid 7 2024-03-11T23:05:30.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.570+0000 7f2e634b3c80 0 pidfile_write: ignore empty --pid-file 2024-03-11T23:05:30.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 0 load: jerasure load: lrc 2024-03-11T23:05:30.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: RocksDB version: 7.9.2 2024-03-11T23:05:30.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Git sha 0 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Compile date 2024-03-08 02:48:09 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: DB SUMMARY 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: DB Session ID: GN7BP6K726RT8QSKC7UT 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: CURRENT file: CURRENT 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: IDENTITY file: IDENTITY 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi149/store.db dir, Total Num: 1, files: 000008.sst 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi149/store.db: 000009.log size: 84725 ; 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.error_if_exists: 0 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.create_if_missing: 0 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.paranoid_checks: 1 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-03-11T23:05:30.751 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.env: 0x559617b55ae0 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.fs: PosixFileSystem 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.info_log: 0x559618ae97a0 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.statistics: (nil) 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.use_fsync: 0 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_log_file_size: 0 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.allow_fallocate: 1 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-03-11T23:05:30.752 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.use_direct_reads: 0 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.create_missing_column_families: 0 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.db_log_dir: 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.wal_dir: 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.advise_random_on_open: 1 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.write_buffer_manager: 0x559618abd400 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-03-11T23:05:30.753 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-03-11T23:05:30.754 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-03-11T23:05:30.754 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.rate_limiter: (nil) 2024-03-11T23:05:30.754 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-03-11T23:05:30.754 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-03-11T23:05:30.755 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-03-11T23:05:30.755 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-03-11T23:05:30.755 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.unordered_write: 0 2024-03-11T23:05:30.755 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-03-11T23:05:30.755 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-03-11T23:05:30.755 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.row_cache: None 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.wal_filter: None 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.two_write_queues: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.manual_wal_flush: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.wal_compression: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.atomic_flush: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.log_readahead_size: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-03-11T23:05:30.756 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_background_jobs: 2 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_background_compactions: -1 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_subcompactions: 1 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_total_wal_size: 0 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_open_files: -1 2024-03-11T23:05:30.757 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bytes_per_sync: 0 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_background_flushes: -1 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Compression algorithms supported: 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: kZSTD supported: 0 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: kXpressCompression supported: 0 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: kZlibCompression supported: 1 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: kSnappyCompression supported: 1 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: kLZ4Compression supported: 1 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: kBZip2Compression supported: 0 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-03-11T23:05:30.758 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi149/store.db/MANIFEST-000010 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.merge_operator: 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_filter: None 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_filter_factory: None 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x559618ae98c0) 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: cache_index_and_filter_blocks: 1 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: cache_index_and_filter_blocks_with_high_priority: 0 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: pin_top_level_index_and_filter: 1 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: index_type: 0 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: data_block_index_type: 0 2024-03-11T23:05:30.759 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: index_shortening: 1 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: data_block_hash_table_util_ratio: 0.750000 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: checksum: 4 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: no_block_cache: 0 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: block_cache: 0x559618aeb090 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: block_cache_name: BinnedLRUCache 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: block_cache_options: 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: capacity : 536870912 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: num_shard_bits : 4 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: strict_capacity_limit : 0 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: high_pri_pool_ratio: 0.000 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: block_cache_compressed: (nil) 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: persistent_cache: (nil) 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: block_size: 4096 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: block_size_deviation: 10 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: block_restart_interval: 16 2024-03-11T23:05:30.760 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: index_block_restart_interval: 1 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: metadata_block_size: 4096 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: partition_filters: 0 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: use_delta_encoding: 1 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: filter_policy: bloomfilter 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: whole_key_filtering: 1 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: verify_compression: 0 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: read_amp_bytes_per_bit: 0 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: format_version: 5 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: enable_index_compression: 1 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: block_align: 0 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: max_auto_readahead_size: 262144 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: prepopulate_block_cache: 0 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: initial_auto_readahead_size: 8192 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: num_file_reads_for_auto_readahead: 2 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-03-11T23:05:30.761 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compression: NoCompression 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.num_levels: 7 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-03-11T23:05:30.762 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compression_opts.level: 32767 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compression_opts.enabled: false 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-03-11T23:05:30.763 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.arena_block_size: 1048576 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-03-11T23:05:30.764 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.table_properties_collectors: 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.inplace_update_support: 0 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-03-11T23:05:30.765 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.bloom_locality: 0 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.max_successive_merges: 0 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.force_consistency_checks: 1 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.ttl: 2592000 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-03-11T23:05:30.766 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.enable_blob_files: false 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.min_blob_size: 0 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.blob_file_size: 268435456 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi149/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-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: c942cefe-0c0b-4fed-b3f9-ce81f176d18a 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1710198330582902, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-03-11T23:05:30.767 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1710198330583901, "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": 1710198330, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "c942cefe-0c0b-4fed-b3f9-ce81f176d18a", "db_session_id": "GN7BP6K726RT8QSKC7UT", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1710198330584009, "job": 1, "event": "recovery_finished"} 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.578+0000 7f2e634b3c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi149/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x559618bde000 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 4 rocksdb: DB pointer 0x559618bca000 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e51c23700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e51c23700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: ** DB Stats ** 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: 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-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: 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-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-11T23:05:30.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: ** Compaction Stats [default] ** 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: 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-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: L0 2/0 81.42 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 128.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Sum 2/0 81.42 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 128.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 128.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: ** Compaction Stats [default] ** 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: 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-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 128.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Flush(GB): cumulative 0.000, interval 0.000 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: AddFile(GB): cumulative 0.000, interval 0.000 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: AddFile(Total Files): cumulative 0, interval 0 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: AddFile(L0 Files): cumulative 0, interval 0 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: AddFile(Keys): cumulative 0, interval 0 2024-03-11T23:05:30.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Cumulative compaction: 0.00 GB write, 21.90 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Interval compaction: 0.00 GB write, 21.90 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: 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-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: Block cache BinnedLRUCache@0x559618aeb090#7 capacity: 512.00 MB usage: 1.17 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: 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-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: ** File Read Latency Histogram By Level [default] ** 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 0 starting mon.smithi149 rank 0 at public addrs [v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0] at bind addrs [v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi149 fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 1 mon.smithi149@-1(???) e1 preinit fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 0 mon.smithi149@-1(???).mds e1 new map 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 0 mon.smithi149@-1(???).mds e1 print_map 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: e1 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: enable_multiple, ever_enabled_multiple: 1,1 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: 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-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: legacy client fscid: -1 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: No filesystems configured 2024-03-11T23:05:30.770 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 0 mon.smithi149@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-03-11T23:05:30.771 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 0 mon.smithi149@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-03-11T23:05:30.771 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 0 mon.smithi149@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-03-11T23:05:30.771 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 0 mon.smithi149@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-03-11T23:05:30.771 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: debug 2024-03-11T23:05:30.582+0000 7f2e634b3c80 1 mon.smithi149@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-03-11T23:05:30.771 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: cluster 2024-03-11T23:05:30.591248+0000 mon.smithi149 (mon.0) 1 : cluster 1 mon.smithi149 is new leader, mons smithi149 in quorum (ranks 0) 2024-03-11T23:05:30.771 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: cluster 2024-03-11T23:05:30.591323+0000 mon.smithi149 (mon.0) 2 : cluster 0 monmap e1: 1 mons at {smithi149=[v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-03-11T23:05:30.771 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: cluster 2024-03-11T23:05:30.591763+0000 mon.smithi149 (mon.0) 3 : cluster 0 fsmap 2024-03-11T23:05:30.771 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: cluster 2024-03-11T23:05:30.591809+0000 mon.smithi149 (mon.0) 4 : cluster 0 osdmap e1: 0 total, 0 up, 0 in 2024-03-11T23:05:30.771 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:30 smithi149 bash[18736]: cluster 2024-03-11T23:05:30.592278+0000 mon.smithi149 (mon.0) 5 : cluster 0 mgrmap e1: no daemons active 2024-03-11T23:05:31.452 INFO:teuthology.orchestra.run.smithi149.stdout:Wrote config to /etc/ceph/ceph.conf 2024-03-11T23:05:31.478 INFO:teuthology.orchestra.run.smithi149.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-03-11T23:05:31.478 INFO:teuthology.orchestra.run.smithi149.stdout:Creating mgr... 2024-03-11T23:05:31.479 INFO:teuthology.orchestra.run.smithi149.stdout:Verifying port 0.0.0.0:9283 ... 2024-03-11T23:05:31.479 INFO:teuthology.orchestra.run.smithi149.stdout:Verifying port 0.0.0.0:8765 ... 2024-03-11T23:05:31.479 INFO:teuthology.orchestra.run.smithi149.stdout:Verifying port 0.0.0.0:8443 ... 2024-03-11T23:05:31.831 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:31 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:05:31.841 INFO:teuthology.orchestra.run.smithi149.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mgr.smithi149.leptec 2024-03-11T23:05:31.841 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Failed to reset failed state of unit ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mgr.smithi149.leptec.service: Unit ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mgr.smithi149.leptec.service not loaded. 2024-03-11T23:05:32.070 INFO:teuthology.orchestra.run.smithi149.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715.target.wants/ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mgr.smithi149.leptec.service -> /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@.service. 2024-03-11T23:05:32.078 INFO:teuthology.orchestra.run.smithi149.stdout:firewalld does not appear to be present 2024-03-11T23:05:32.078 INFO:teuthology.orchestra.run.smithi149.stdout:Not possible to enable service . firewalld.service is not available 2024-03-11T23:05:32.078 INFO:teuthology.orchestra.run.smithi149.stdout:firewalld does not appear to be present 2024-03-11T23:05:32.078 INFO:teuthology.orchestra.run.smithi149.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-03-11T23:05:32.078 INFO:teuthology.orchestra.run.smithi149.stdout:Waiting for mgr to start... 2024-03-11T23:05:32.078 INFO:teuthology.orchestra.run.smithi149.stdout:Waiting for mgr... 2024-03-11T23:05:32.095 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:31 smithi149 bash[18736]: audit 2024-03-11T23:05:30.851891+0000 mon.smithi149 (mon.0) 6 : audit 1 from='client.? 172.21.15.149:0/371660354' entity='client.admin' 2024-03-11T23:05:32.095 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:31 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:05:33.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:33 smithi149 bash[18736]: audit 2024-03-11T23:05:33.541492+0000 mon.smithi149 (mon.0) 7 : audit 0 from='client.? 172.21.15.149:0/3470782952' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-11T23:05:34.146 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:34.146 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout { 2024-03-11T23:05:34.146 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "fsid": "ad95ae2e-dffb-11ee-95c8-87774f69a715", 2024-03-11T23:05:34.146 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "health": { 2024-03-11T23:05:34.146 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-11T23:05:34.146 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-11T23:05:34.146 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-11T23:05:34.146 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 0 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "smithi149" 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:34.147 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-11T23:05:34.148 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-11T23:05:34.148 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-11T23:05:34.148 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-11T23:05:34.148 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-11T23:05:34.148 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-11T23:05:34.151 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:34.151 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-11T23:05:34.151 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-11T23:05:34.151 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-11T23:05:34.151 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-11T23:05:34.151 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-11T23:05:34.151 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "available": false, 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-11T23:05:34.152 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "restful" 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "modified": "2024-03-11T23:05:25.096084+0000", 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout } 2024-03-11T23:05:34.153 INFO:teuthology.orchestra.run.smithi149.stdout:mgr not available, waiting (1/15)... 2024-03-11T23:05:37.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:37 smithi149 bash[18736]: audit 2024-03-11T23:05:37.188661+0000 mon.smithi149 (mon.0) 8 : audit 0 from='client.? 172.21.15.149:0/2994104066' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout { 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "fsid": "ad95ae2e-dffb-11ee-95c8-87774f69a715", 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "health": { 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-11T23:05:37.752 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 0 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "smithi149" 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-11T23:05:37.753 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-11T23:05:37.754 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-11T23:05:37.757 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "available": false, 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "restful" 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:37.758 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "modified": "2024-03-11T23:05:25.096084+0000", 2024-03-11T23:05:37.759 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-11T23:05:37.759 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:37.759 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-11T23:05:37.759 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout } 2024-03-11T23:05:37.759 INFO:teuthology.orchestra.run.smithi149.stdout:mgr not available, waiting (2/15)... 2024-03-11T23:05:40.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:40 smithi149 bash[18736]: audit 2024-03-11T23:05:40.731960+0000 mon.smithi149 (mon.0) 9 : audit 0 from='client.? 172.21.15.149:0/1323610081' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-11T23:05:41.304 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout { 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "fsid": "ad95ae2e-dffb-11ee-95c8-87774f69a715", 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "health": { 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 0 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "smithi149" 2024-03-11T23:05:41.305 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-11T23:05:41.306 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-11T23:05:41.309 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:41.310 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "available": false, 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "restful" 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:41.311 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "modified": "2024-03-11T23:05:25.096084+0000", 2024-03-11T23:05:41.312 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-11T23:05:41.312 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:41.312 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-11T23:05:41.312 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout } 2024-03-11T23:05:41.312 INFO:teuthology.orchestra.run.smithi149.stdout:mgr not available, waiting (3/15)... 2024-03-11T23:05:42.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: cluster 2024-03-11T23:05:41.278630+0000 mon.smithi149 (mon.0) 10 : cluster 1 Activating manager daemon smithi149.leptec 2024-03-11T23:05:42.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: cluster 2024-03-11T23:05:41.285525+0000 mon.smithi149 (mon.0) 11 : cluster 0 mgrmap e2: smithi149.leptec(active, starting, since 0.0073968s) 2024-03-11T23:05:42.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: audit 2024-03-11T23:05:41.286483+0000 mon.smithi149 (mon.0) 12 : audit 0 from='mgr.14100 172.21.15.149:0/2983830932' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-11T23:05:42.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: audit 2024-03-11T23:05:41.286594+0000 mon.smithi149 (mon.0) 13 : audit 0 from='mgr.14100 172.21.15.149:0/2983830932' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-11T23:05:42.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: audit 2024-03-11T23:05:41.286694+0000 mon.smithi149 (mon.0) 14 : audit 0 from='mgr.14100 172.21.15.149:0/2983830932' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-11T23:05:42.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: audit 2024-03-11T23:05:41.286803+0000 mon.smithi149 (mon.0) 15 : audit 0 from='mgr.14100 172.21.15.149:0/2983830932' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2024-03-11T23:05:42.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: audit 2024-03-11T23:05:41.287938+0000 mon.smithi149 (mon.0) 16 : audit 0 from='mgr.14100 172.21.15.149:0/2983830932' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr metadata", "who": "smithi149.leptec", "id": "smithi149.leptec"}]: dispatch 2024-03-11T23:05:42.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: cluster 2024-03-11T23:05:41.314700+0000 mon.smithi149 (mon.0) 17 : cluster 1 Manager daemon smithi149.leptec is now available 2024-03-11T23:05:42.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: audit 2024-03-11T23:05:41.326323+0000 mon.smithi149 (mon.0) 18 : audit 1 from='mgr.14100 172.21.15.149:0/2983830932' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi149.leptec/mirror_snapshot_schedule"}]: dispatch 2024-03-11T23:05:42.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: audit 2024-03-11T23:05:41.329074+0000 mon.smithi149 (mon.0) 19 : audit 1 from='mgr.14100 172.21.15.149:0/2983830932' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi149.leptec/trash_purge_schedule"}]: dispatch 2024-03-11T23:05:42.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: audit 2024-03-11T23:05:41.332301+0000 mon.smithi149 (mon.0) 20 : audit 1 from='mgr.14100 172.21.15.149:0/2983830932' entity='mgr.smithi149.leptec' 2024-03-11T23:05:42.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: audit 2024-03-11T23:05:41.334367+0000 mon.smithi149 (mon.0) 21 : audit 1 from='mgr.14100 172.21.15.149:0/2983830932' entity='mgr.smithi149.leptec' 2024-03-11T23:05:42.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:41 smithi149 bash[18736]: audit 2024-03-11T23:05:41.336524+0000 mon.smithi149 (mon.0) 22 : audit 1 from='mgr.14100 172.21.15.149:0/2983830932' entity='mgr.smithi149.leptec' 2024-03-11T23:05:43.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:43 smithi149 bash[18736]: cluster 2024-03-11T23:05:42.293542+0000 mon.smithi149 (mon.0) 23 : cluster 0 mgrmap e3: smithi149.leptec(active, since 1.01541s) 2024-03-11T23:05:45.246 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:45.246 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout { 2024-03-11T23:05:45.246 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "fsid": "ad95ae2e-dffb-11ee-95c8-87774f69a715", 2024-03-11T23:05:45.246 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "health": { 2024-03-11T23:05:45.246 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-11T23:05:45.246 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-11T23:05:45.246 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-11T23:05:45.246 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:45.246 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-11T23:05:45.246 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 0 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "smithi149" 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "quorum_age": 14, 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-11T23:05:45.247 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-11T23:05:45.248 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-11T23:05:45.248 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-11T23:05:45.248 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-11T23:05:45.251 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "available": true, 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "restful" 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ], 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-11T23:05:45.252 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-11T23:05:45.253 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "modified": "2024-03-11T23:05:25.096084+0000", 2024-03-11T23:05:45.253 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-11T23:05:45.253 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout }, 2024-03-11T23:05:45.253 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-11T23:05:45.253 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout } 2024-03-11T23:05:45.253 INFO:teuthology.orchestra.run.smithi149.stdout:mgr is available 2024-03-11T23:05:45.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:45 smithi149 bash[18736]: cluster 2024-03-11T23:05:44.291855+0000 mon.smithi149 (mon.0) 24 : cluster 0 mgrmap e4: smithi149.leptec(active, since 3s) 2024-03-11T23:05:45.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:45 smithi149 bash[18736]: audit 2024-03-11T23:05:44.689184+0000 mon.smithi149 (mon.0) 25 : audit 0 from='client.? 172.21.15.149:0/2567704221' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-11T23:05:46.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:46 smithi149 bash[18736]: audit 2024-03-11T23:05:46.470209+0000 mon.smithi149 (mon.0) 26 : audit 1 from='client.? 172.21.15.149:0/3445370721' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-03-11T23:05:47.035 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:47.035 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout [global] 2024-03-11T23:05:47.035 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout fsid = ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:05:47.035 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-03-11T23:05:47.035 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-03-11T23:05:47.036 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-03-11T23:05:47.036 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-03-11T23:05:47.036 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:47.036 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout [mgr] 2024-03-11T23:05:47.036 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-03-11T23:05:47.036 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 2024-03-11T23:05:47.036 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout [osd] 2024-03-11T23:05:47.036 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-03-11T23:05:47.036 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-03-11T23:05:47.036 INFO:teuthology.orchestra.run.smithi149.stdout:Enabling cephadm module... 2024-03-11T23:05:48.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:48 smithi149 bash[18736]: audit 2024-03-11T23:05:48.304298+0000 mon.smithi149 (mon.0) 27 : audit 1 from='client.? 172.21.15.149:0/535515792' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-03-11T23:05:49.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:49 smithi149 bash[18736]: audit 2024-03-11T23:05:48.356394+0000 mon.smithi149 (mon.0) 28 : audit 1 from='client.? 172.21.15.149:0/535515792' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-03-11T23:05:49.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:49 smithi149 bash[18736]: cluster 2024-03-11T23:05:48.361494+0000 mon.smithi149 (mon.0) 29 : cluster 0 mgrmap e5: smithi149.leptec(active, since 7s) 2024-03-11T23:05:50.425 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:50 smithi149 bash[18736]: audit 2024-03-11T23:05:50.237320+0000 mon.smithi149 (mon.0) 30 : audit 0 from='client.? 172.21.15.149:0/2184714125' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-03-11T23:05:50.791 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout { 2024-03-11T23:05:50.792 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-03-11T23:05:50.792 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "available": true, 2024-03-11T23:05:50.792 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "active_name": "smithi149.leptec", 2024-03-11T23:05:50.792 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-03-11T23:05:50.792 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout } 2024-03-11T23:05:50.792 INFO:teuthology.orchestra.run.smithi149.stdout:Waiting for the mgr to restart... 2024-03-11T23:05:50.792 INFO:teuthology.orchestra.run.smithi149.stdout:Waiting for mgr epoch 5... 2024-03-11T23:05:56.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:56 smithi149 bash[18736]: cluster 2024-03-11T23:05:56.477865+0000 mon.smithi149 (mon.0) 31 : cluster 1 Active manager daemon smithi149.leptec restarted 2024-03-11T23:05:56.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:56 smithi149 bash[18736]: cluster 2024-03-11T23:05:56.478366+0000 mon.smithi149 (mon.0) 32 : cluster 1 Activating manager daemon smithi149.leptec 2024-03-11T23:05:56.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:56 smithi149 bash[18736]: cluster 2024-03-11T23:05:56.484493+0000 mon.smithi149 (mon.0) 33 : cluster 0 osdmap e2: 0 total, 0 up, 0 in 2024-03-11T23:05:56.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:56 smithi149 bash[18736]: cluster 2024-03-11T23:05:56.484603+0000 mon.smithi149 (mon.0) 34 : cluster 0 mgrmap e6: smithi149.leptec(active, starting, since 0.00643891s) 2024-03-11T23:05:56.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:56 smithi149 bash[18736]: audit 2024-03-11T23:05:56.488008+0000 mon.smithi149 (mon.0) 35 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2024-03-11T23:05:56.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:56 smithi149 bash[18736]: audit 2024-03-11T23:05:56.490237+0000 mon.smithi149 (mon.0) 36 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr metadata", "who": "smithi149.leptec", "id": "smithi149.leptec"}]: dispatch 2024-03-11T23:05:56.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:56 smithi149 bash[18736]: audit 2024-03-11T23:05:56.491289+0000 mon.smithi149 (mon.0) 37 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-11T23:05:56.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:56 smithi149 bash[18736]: audit 2024-03-11T23:05:56.491438+0000 mon.smithi149 (mon.0) 38 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-11T23:05:56.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:56 smithi149 bash[18736]: audit 2024-03-11T23:05:56.491572+0000 mon.smithi149 (mon.0) 39 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-11T23:05:56.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:56 smithi149 bash[18736]: cluster 2024-03-11T23:05:56.513889+0000 mon.smithi149 (mon.0) 40 : cluster 1 Manager daemon smithi149.leptec is now available 2024-03-11T23:05:57.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: cephadm 2024-03-11T23:05:56.532289+0000 mgr.smithi149.leptec (mgr.14120) 1 : cephadm 1 Found migration_current of "None". Setting to last migration. 2024-03-11T23:05:58.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: audit 2024-03-11T23:05:56.540398+0000 mon.smithi149 (mon.0) 41 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:05:58.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: audit 2024-03-11T23:05:56.545999+0000 mon.smithi149 (mon.0) 42 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:05:58.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: audit 2024-03-11T23:05:56.549666+0000 mon.smithi149 (mon.0) 43 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:05:58.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: audit 2024-03-11T23:05:56.551352+0000 mon.smithi149 (mon.0) 44 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:05:58.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: audit 2024-03-11T23:05:56.554942+0000 mon.smithi149 (mon.0) 45 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:05:58.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: audit 2024-03-11T23:05:56.565740+0000 mon.smithi149 (mon.0) 46 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi149.leptec/mirror_snapshot_schedule"}]: dispatch 2024-03-11T23:05:58.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: audit 2024-03-11T23:05:56.568655+0000 mon.smithi149 (mon.0) 47 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi149.leptec/trash_purge_schedule"}]: dispatch 2024-03-11T23:05:58.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: audit 2024-03-11T23:05:57.021732+0000 mon.smithi149 (mon.0) 48 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:05:58.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: audit 2024-03-11T23:05:57.029765+0000 mon.smithi149 (mon.0) 49 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:05:58.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:57 smithi149 bash[18736]: cluster 2024-03-11T23:05:57.489196+0000 mon.smithi149 (mon.0) 50 : cluster 0 mgrmap e7: smithi149.leptec(active, since 1.011s) 2024-03-11T23:05:58.080 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout { 2024-03-11T23:05:58.080 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-03-11T23:05:58.080 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "initialized": true 2024-03-11T23:05:58.080 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout } 2024-03-11T23:05:58.080 INFO:teuthology.orchestra.run.smithi149.stdout:mgr epoch 5 is available 2024-03-11T23:05:58.080 INFO:teuthology.orchestra.run.smithi149.stdout:Setting orchestrator backend to cephadm... 2024-03-11T23:05:59.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:58 smithi149 bash[18736]: audit 2024-03-11T23:05:57.488570+0000 mgr.smithi149.leptec (mgr.14120) 2 : audit 0 from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-03-11T23:05:59.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:58 smithi149 bash[18736]: audit 2024-03-11T23:05:57.501117+0000 mgr.smithi149.leptec (mgr.14120) 3 : audit 0 from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-03-11T23:05:59.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:58 smithi149 bash[18736]: cephadm 2024-03-11T23:05:57.960396+0000 mgr.smithi149.leptec (mgr.14120) 4 : cephadm 1 [11/Mar/2024:23:05:57] ENGINE Bus STARTING 2024-03-11T23:05:59.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:58 smithi149 bash[18736]: cephadm 2024-03-11T23:05:58.062495+0000 mgr.smithi149.leptec (mgr.14120) 5 : cephadm 1 [11/Mar/2024:23:05:58] ENGINE Serving on http://172.21.15.149:8765 2024-03-11T23:05:59.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:58 smithi149 bash[18736]: cephadm 2024-03-11T23:05:58.182331+0000 mgr.smithi149.leptec (mgr.14120) 6 : cephadm 1 [11/Mar/2024:23:05:58] ENGINE Serving on https://172.21.15.149:7150 2024-03-11T23:05:59.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:58 smithi149 bash[18736]: cephadm 2024-03-11T23:05:58.182706+0000 mgr.smithi149.leptec (mgr.14120) 7 : cephadm 1 [11/Mar/2024:23:05:58] ENGINE Bus STARTED 2024-03-11T23:05:59.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:58 smithi149 bash[18736]: audit 2024-03-11T23:05:58.225849+0000 mon.smithi149 (mon.0) 51 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:05:59.839 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:59 smithi149 bash[18736]: cluster 2024-03-11T23:05:58.550562+0000 mon.smithi149 (mon.0) 52 : cluster 0 mgrmap e8: smithi149.leptec(active, since 2s) 2024-03-11T23:05:59.839 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:59 smithi149 bash[18736]: audit 2024-03-11T23:05:59.224491+0000 mgr.smithi149.leptec (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-11T23:05:59.839 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:59 smithi149 bash[18736]: audit 2024-03-11T23:05:59.232544+0000 mon.smithi149 (mon.0) 53 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:05:59.839 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:05:59 smithi149 bash[18736]: audit 2024-03-11T23:05:59.296185+0000 mon.smithi149 (mon.0) 54 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:06:01.567 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout value unchanged 2024-03-11T23:06:01.567 INFO:teuthology.orchestra.run.smithi149.stdout:Generating ssh key... 2024-03-11T23:06:01.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:01 smithi149 bash[18736]: audit 2024-03-11T23:06:01.010594+0000 mgr.smithi149.leptec (mgr.14120) 9 : audit 0 from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:04.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:03 smithi149 bash[18736]: audit 2024-03-11T23:06:02.736444+0000 mgr.smithi149.leptec (mgr.14120) 10 : audit 0 from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:04.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:03 smithi149 bash[18736]: cephadm 2024-03-11T23:06:02.736734+0000 mgr.smithi149.leptec (mgr.14120) 11 : cephadm 1 Generating ssh key... 2024-03-11T23:06:04.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:03 smithi149 bash[18736]: audit 2024-03-11T23:06:02.876497+0000 mon.smithi149 (mon.0) 55 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:04.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:03 smithi149 bash[18736]: audit 2024-03-11T23:06:02.879916+0000 mon.smithi149 (mon.0) 56 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:05.201 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCcD7Euo71B/RhT/BDOVzjKKQoKPC4fCB62mSyU69cgQThOYtXsoc+7m8snlfH3pzibabWnLyV/LkhvDGOr+OEEt/S+Vtj17q+FyqARKPXdMgx7TwN0tGH2wF6LJ9oUr4oU4Ney+0GjtlP6zgKWJzbhiw73d6V9FpU2UAM+wy7SHqHIKn1zSbqkrZWU4vDwwGAZ7Mv9c4G9MnUrRwgK/B2SyiseGGseZvU+gJS/ldvwGX93sbTk6P48q9i8bcatTPXolwDL54Lhdk0rDNE2DGndOUYT3qo3q6KXGt4f7SUKbOCvYNUxagwEkPbHXM+VUObbOSNxvt1pHODNSza47bOGnE+LQEGwk0bWHbyR9DureBL+OjkCMUgX8ofSsrMz1o1suVqmqEtphMfP0cmP/nVNm7nUxWYtExOujZiMyNUrnXA+u95MqwseiJVNrmFb4iG6SOSFdygR2E2SkFS5A3bcXkWI9fWXDqzuqpp0ohJh6mXuhltr4CNTVEfl3suSaVE= ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:06:05.202 INFO:teuthology.orchestra.run.smithi149.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-03-11T23:06:05.202 INFO:teuthology.orchestra.run.smithi149.stdout:Adding key to root@localhost authorized_keys... 2024-03-11T23:06:05.202 INFO:teuthology.orchestra.run.smithi149.stdout:Adding host smithi149... 2024-03-11T23:06:05.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:05 smithi149 bash[18736]: audit 2024-03-11T23:06:04.641474+0000 mgr.smithi149.leptec (mgr.14120) 12 : audit 0 from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:06.645 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:06 smithi149 bash[18736]: audit 2024-03-11T23:06:06.364664+0000 mgr.smithi149.leptec (mgr.14120) 13 : audit 0 from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi149", "addr": "172.21.15.149", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:07.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:07 smithi149 bash[18736]: cephadm 2024-03-11T23:06:06.906635+0000 mgr.smithi149.leptec (mgr.14120) 14 : cephadm 1 Deploying cephadm binary to smithi149 2024-03-11T23:06:12.541 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout Added host 'smithi149' with addr '172.21.15.149' 2024-03-11T23:06:12.541 INFO:teuthology.orchestra.run.smithi149.stdout:Deploying mon service with default placement... 2024-03-11T23:06:12.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:12 smithi149 bash[18736]: audit 2024-03-11T23:06:11.708985+0000 mon.smithi149 (mon.0) 57 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:12.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:12 smithi149 bash[18736]: cephadm 2024-03-11T23:06:11.709448+0000 mgr.smithi149.leptec (mgr.14120) 15 : cephadm 1 Added host smithi149 2024-03-11T23:06:13.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:12 smithi149 bash[18736]: audit 2024-03-11T23:06:11.728719+0000 mon.smithi149 (mon.0) 58 : audit 0 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:06:15.009 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-03-11T23:06:15.009 INFO:teuthology.orchestra.run.smithi149.stdout:Deploying mgr service with default placement... 2024-03-11T23:06:15.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:15 smithi149 bash[18736]: audit 2024-03-11T23:06:14.158318+0000 mgr.smithi149.leptec (mgr.14120) 16 : audit 0 from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:15.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:15 smithi149 bash[18736]: cephadm 2024-03-11T23:06:14.159730+0000 mgr.smithi149.leptec (mgr.14120) 17 : cephadm 1 Saving service mon spec with placement count:5 2024-03-11T23:06:15.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:15 smithi149 bash[18736]: audit 2024-03-11T23:06:14.162755+0000 mon.smithi149 (mon.0) 59 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:15.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:15 smithi149 bash[18736]: audit 2024-03-11T23:06:14.753320+0000 mon.smithi149 (mon.0) 60 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:16.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:16 smithi149 bash[18736]: audit 2024-03-11T23:06:15.233016+0000 mon.smithi149 (mon.0) 61 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:16.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:16 smithi149 bash[18736]: audit 2024-03-11T23:06:16.225357+0000 mon.smithi149 (mon.0) 62 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:16.832 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-03-11T23:06:16.832 INFO:teuthology.orchestra.run.smithi149.stdout:Deploying crash service with default placement... 2024-03-11T23:06:17.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:17 smithi149 bash[18736]: audit 2024-03-11T23:06:16.218174+0000 mgr.smithi149.leptec (mgr.14120) 18 : audit 0 from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:17.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:17 smithi149 bash[18736]: cephadm 2024-03-11T23:06:16.220513+0000 mgr.smithi149.leptec (mgr.14120) 19 : cephadm 1 Saving service mgr spec with placement count:2 2024-03-11T23:06:18.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:18 smithi149 bash[18736]: cluster 2024-03-11T23:06:16.492711+0000 mgr.smithi149.leptec (mgr.14120) 20 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:06:18.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:18 smithi149 bash[18736]: audit 2024-03-11T23:06:18.065146+0000 mon.smithi149 (mon.0) 63 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:18.662 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-03-11T23:06:18.662 INFO:teuthology.orchestra.run.smithi149.stdout:Deploying ceph-exporter service with default placement... 2024-03-11T23:06:19.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:19 smithi149 bash[18736]: audit 2024-03-11T23:06:18.058453+0000 mgr.smithi149.leptec (mgr.14120) 21 : audit 0 from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:19.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:19 smithi149 bash[18736]: cephadm 2024-03-11T23:06:18.060703+0000 mgr.smithi149.leptec (mgr.14120) 22 : cephadm 1 Saving service crash spec with placement * 2024-03-11T23:06:20.492 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-03-11T23:06:20.493 INFO:teuthology.orchestra.run.smithi149.stdout:Deploying prometheus service with default placement... 2024-03-11T23:06:20.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:20 smithi149 bash[18736]: cluster 2024-03-11T23:06:18.493158+0000 mgr.smithi149.leptec (mgr.14120) 23 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:06:20.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:20 smithi149 bash[18736]: audit 2024-03-11T23:06:19.903903+0000 mon.smithi149 (mon.0) 64 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:21.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:21 smithi149 bash[18736]: audit 2024-03-11T23:06:19.895839+0000 mgr.smithi149.leptec (mgr.14120) 24 : audit 0 from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:21.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:21 smithi149 bash[18736]: cephadm 2024-03-11T23:06:19.898962+0000 mgr.smithi149.leptec (mgr.14120) 25 : cephadm 1 Saving service ceph-exporter spec with placement * 2024-03-11T23:06:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-03-11T23:06:22.381 INFO:teuthology.orchestra.run.smithi149.stdout:Deploying grafana service with default placement... 2024-03-11T23:06:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:22 smithi149 bash[18736]: cluster 2024-03-11T23:06:20.493469+0000 mgr.smithi149.leptec (mgr.14120) 26 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:06:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:22 smithi149 bash[18736]: audit 2024-03-11T23:06:21.809456+0000 mon.smithi149 (mon.0) 65 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:23.449 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:23 smithi149 bash[18736]: audit 2024-03-11T23:06:21.805099+0000 mgr.smithi149.leptec (mgr.14120) 27 : audit 0 from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:23.449 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:23 smithi149 bash[18736]: cephadm 2024-03-11T23:06:21.806480+0000 mgr.smithi149.leptec (mgr.14120) 28 : cephadm 1 Saving service prometheus spec with placement count:1 2024-03-11T23:06:23.449 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:23 smithi149 bash[18736]: audit 2024-03-11T23:06:23.068416+0000 mon.smithi149 (mon.0) 66 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:24.402 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-03-11T23:06:24.402 INFO:teuthology.orchestra.run.smithi149.stdout:Deploying node-exporter service with default placement... 2024-03-11T23:06:24.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:24 smithi149 bash[18736]: cluster 2024-03-11T23:06:22.493874+0000 mgr.smithi149.leptec (mgr.14120) 29 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:06:24.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:24 smithi149 bash[18736]: audit 2024-03-11T23:06:23.721779+0000 mon.smithi149 (mon.0) 67 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:24.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:24 smithi149 bash[18736]: audit 2024-03-11T23:06:24.054985+0000 mon.smithi149 (mon.0) 68 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:25.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:25 smithi149 bash[18736]: audit 2024-03-11T23:06:23.712849+0000 mgr.smithi149.leptec (mgr.14120) 30 : audit 0 from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:25.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:25 smithi149 bash[18736]: cephadm 2024-03-11T23:06:23.715963+0000 mgr.smithi149.leptec (mgr.14120) 31 : cephadm 1 Saving service grafana spec with placement count:1 2024-03-11T23:06:26.334 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-03-11T23:06:26.334 INFO:teuthology.orchestra.run.smithi149.stdout:Deploying alertmanager service with default placement... 2024-03-11T23:06:26.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:26 smithi149 bash[18736]: cluster 2024-03-11T23:06:24.494211+0000 mgr.smithi149.leptec (mgr.14120) 32 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:06:26.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:26 smithi149 bash[18736]: audit 2024-03-11T23:06:25.679033+0000 mon.smithi149 (mon.0) 69 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:27.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:27 smithi149 bash[18736]: audit 2024-03-11T23:06:25.674544+0000 mgr.smithi149.leptec (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-11T23:06:27.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:27 smithi149 bash[18736]: cephadm 2024-03-11T23:06:25.675738+0000 mgr.smithi149.leptec (mgr.14120) 34 : cephadm 1 Saving service node-exporter spec with placement * 2024-03-11T23:06:28.272 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-03-11T23:06:28.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:28 smithi149 bash[18736]: cluster 2024-03-11T23:06:26.494599+0000 mgr.smithi149.leptec (mgr.14120) 35 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:06:28.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:28 smithi149 bash[18736]: audit 2024-03-11T23:06:27.659876+0000 mon.smithi149 (mon.0) 70 : audit 1 from='mgr.14120 172.21.15.149:0/2336768536' entity='mgr.smithi149.leptec' 2024-03-11T23:06:29.654 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:29 smithi149 bash[18736]: audit 2024-03-11T23:06:27.651988+0000 mgr.smithi149.leptec (mgr.14120) 36 : audit 0 from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:29.654 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:29 smithi149 bash[18736]: cephadm 2024-03-11T23:06:27.654339+0000 mgr.smithi149.leptec (mgr.14120) 37 : cephadm 1 Saving service alertmanager spec with placement count:1 2024-03-11T23:06:30.643 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:30 smithi149 bash[18736]: cluster 2024-03-11T23:06:28.495022+0000 mgr.smithi149.leptec (mgr.14120) 38 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:06:30.644 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:30 smithi149 bash[18736]: audit 2024-03-11T23:06:29.631363+0000 mon.smithi149 (mon.0) 71 : audit 1 from='client.? 172.21.15.149:0/3619539635' entity='client.admin' 2024-03-11T23:06:32.555 INFO:teuthology.orchestra.run.smithi149.stdout:Enabling the dashboard module... 2024-03-11T23:06:32.575 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:32 smithi149 bash[18736]: cluster 2024-03-11T23:06:30.495448+0000 mgr.smithi149.leptec (mgr.14120) 39 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:06:32.575 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:32 smithi149 bash[18736]: audit 2024-03-11T23:06:31.973027+0000 mon.smithi149 (mon.0) 72 : audit 1 from='client.? 172.21.15.149:0/488817519' entity='client.admin' 2024-03-11T23:06:34.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:34 smithi149 bash[18736]: cluster 2024-03-11T23:06:32.495809+0000 mgr.smithi149.leptec (mgr.14120) 40 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:06:34.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:34 smithi149 bash[18736]: audit 2024-03-11T23:06:33.952070+0000 mon.smithi149 (mon.0) 73 : audit 1 from='client.? 172.21.15.149:0/2834835884' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-03-11T23:06:35.551 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:35 smithi149 bash[18736]: audit 2024-03-11T23:06:34.281520+0000 mon.smithi149 (mon.0) 74 : audit 1 from='client.? 172.21.15.149:0/2834835884' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-03-11T23:06:35.551 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:35 smithi149 bash[18736]: cluster 2024-03-11T23:06:34.288303+0000 mon.smithi149 (mon.0) 75 : cluster 0 mgrmap e9: smithi149.leptec(active, since 37s) 2024-03-11T23:06:36.474 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:36 smithi149 bash[18736]: audit 2024-03-11T23:06:36.187366+0000 mon.smithi149 (mon.0) 76 : audit 0 from='client.? 172.21.15.149:0/2623499553' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-03-11T23:06:36.782 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout { 2024-03-11T23:06:36.782 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-03-11T23:06:36.782 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "available": true, 2024-03-11T23:06:36.783 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "active_name": "smithi149.leptec", 2024-03-11T23:06:36.783 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-03-11T23:06:36.783 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout } 2024-03-11T23:06:36.783 INFO:teuthology.orchestra.run.smithi149.stdout:Waiting for the mgr to restart... 2024-03-11T23:06:36.783 INFO:teuthology.orchestra.run.smithi149.stdout:Waiting for mgr epoch 9... 2024-03-11T23:06:42.617 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:42 smithi149 bash[18736]: cluster 2024-03-11T23:06:42.498505+0000 mon.smithi149 (mon.0) 77 : cluster 1 Active manager daemon smithi149.leptec restarted 2024-03-11T23:06:42.617 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:42 smithi149 bash[18736]: cluster 2024-03-11T23:06:42.498993+0000 mon.smithi149 (mon.0) 78 : cluster 1 Activating manager daemon smithi149.leptec 2024-03-11T23:06:42.617 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:42 smithi149 bash[18736]: cluster 2024-03-11T23:06:42.507159+0000 mon.smithi149 (mon.0) 79 : cluster 0 osdmap e3: 0 total, 0 up, 0 in 2024-03-11T23:06:42.617 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:42 smithi149 bash[18736]: cluster 2024-03-11T23:06:42.507396+0000 mon.smithi149 (mon.0) 80 : cluster 0 mgrmap e10: smithi149.leptec(active, starting, since 0.00860717s) 2024-03-11T23:06:42.617 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:42 smithi149 bash[18736]: audit 2024-03-11T23:06:42.508646+0000 mon.smithi149 (mon.0) 81 : audit 0 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2024-03-11T23:06:42.617 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:42 smithi149 bash[18736]: audit 2024-03-11T23:06:42.511104+0000 mon.smithi149 (mon.0) 82 : audit 0 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr metadata", "who": "smithi149.leptec", "id": "smithi149.leptec"}]: dispatch 2024-03-11T23:06:42.617 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:42 smithi149 bash[18736]: audit 2024-03-11T23:06:42.512188+0000 mon.smithi149 (mon.0) 83 : audit 0 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-11T23:06:42.617 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:42 smithi149 bash[18736]: audit 2024-03-11T23:06:42.512302+0000 mon.smithi149 (mon.0) 84 : audit 0 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-11T23:06:42.617 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:42 smithi149 bash[18736]: audit 2024-03-11T23:06:42.512420+0000 mon.smithi149 (mon.0) 85 : audit 0 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-11T23:06:42.617 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:42 smithi149 bash[18736]: cluster 2024-03-11T23:06:42.538494+0000 mon.smithi149 (mon.0) 86 : cluster 1 Manager daemon smithi149.leptec is now available 2024-03-11T23:06:43.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:43 smithi149 bash[18736]: audit 2024-03-11T23:06:42.565122+0000 mon.smithi149 (mon.0) 87 : audit 0 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:06:43.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:43 smithi149 bash[18736]: audit 2024-03-11T23:06:42.568871+0000 mon.smithi149 (mon.0) 88 : audit 0 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:06:43.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:43 smithi149 bash[18736]: audit 2024-03-11T23:06:42.586135+0000 mon.smithi149 (mon.0) 89 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi149.leptec/mirror_snapshot_schedule"}]: dispatch 2024-03-11T23:06:43.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:43 smithi149 bash[18736]: audit 2024-03-11T23:06:42.589069+0000 mon.smithi149 (mon.0) 90 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi149.leptec/trash_purge_schedule"}]: dispatch 2024-03-11T23:06:43.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:43 smithi149 bash[18736]: cluster 2024-03-11T23:06:43.511086+0000 mon.smithi149 (mon.0) 91 : cluster 0 mgrmap e11: smithi149.leptec(active, since 1.01228s) 2024-03-11T23:06:44.221 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout { 2024-03-11T23:06:44.222 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-03-11T23:06:44.222 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout "initialized": true 2024-03-11T23:06:44.222 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout } 2024-03-11T23:06:44.222 INFO:teuthology.orchestra.run.smithi149.stdout:mgr epoch 9 is available 2024-03-11T23:06:44.222 INFO:teuthology.orchestra.run.smithi149.stdout:Generating a dashboard self-signed certificate... 2024-03-11T23:06:44.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:44 smithi149 bash[18736]: cephadm 2024-03-11T23:06:43.847977+0000 mgr.smithi149.leptec (mgr.14164) 3 : cephadm 1 [11/Mar/2024:23:06:43] ENGINE Bus STARTING 2024-03-11T23:06:44.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:44 smithi149 bash[18736]: cephadm 2024-03-11T23:06:43.965918+0000 mgr.smithi149.leptec (mgr.14164) 4 : cephadm 1 [11/Mar/2024:23:06:43] ENGINE Serving on https://172.21.15.149:7150 2024-03-11T23:06:44.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:44 smithi149 bash[18736]: cephadm 2024-03-11T23:06:44.067312+0000 mgr.smithi149.leptec (mgr.14164) 5 : cephadm 1 [11/Mar/2024:23:06:44] ENGINE Serving on http://172.21.15.149:8765 2024-03-11T23:06:44.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:44 smithi149 bash[18736]: cephadm 2024-03-11T23:06:44.067469+0000 mgr.smithi149.leptec (mgr.14164) 6 : cephadm 1 [11/Mar/2024:23:06:44] ENGINE Bus STARTED 2024-03-11T23:06:45.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:45 smithi149 bash[18736]: cluster 2024-03-11T23:06:44.557220+0000 mon.smithi149 (mon.0) 92 : cluster 0 mgrmap e12: smithi149.leptec(active, since 2s) 2024-03-11T23:06:45.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:45 smithi149 bash[18736]: audit 2024-03-11T23:06:45.536593+0000 mon.smithi149 (mon.0) 93 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:06:45.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:45 smithi149 bash[18736]: audit 2024-03-11T23:06:45.539731+0000 mon.smithi149 (mon.0) 94 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:06:46.184 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-03-11T23:06:46.184 INFO:teuthology.orchestra.run.smithi149.stdout:Creating initial admin user... 2024-03-11T23:06:46.834 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:46 smithi149 bash[18736]: audit 2024-03-11T23:06:45.361441+0000 mgr.smithi149.leptec (mgr.14164) 7 : audit 0 from='client.14176 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:06:48.256 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$RQSQgFhfi4CA3jlvuyNb7.6AEeroE4MYGV0ToLb7Exr3dNy7HvIgq", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1710198407, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-03-11T23:06:48.257 INFO:teuthology.orchestra.run.smithi149.stdout:Fetching dashboard port number... 2024-03-11T23:06:48.909 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:48 smithi149 bash[18736]: audit 2024-03-11T23:06:47.409237+0000 mgr.smithi149.leptec (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-11T23:06:48.909 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:48 smithi149 bash[18736]: audit 2024-03-11T23:06:47.638236+0000 mon.smithi149 (mon.0) 95 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:06:49.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:49 smithi149 bash[18736]: cluster 2024-03-11T23:06:48.643988+0000 mon.smithi149 (mon.0) 96 : cluster 0 mgrmap e13: smithi149.leptec(active, since 6s) 2024-03-11T23:06:49.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:49 smithi149 bash[18736]: audit 2024-03-11T23:06:49.375912+0000 mon.smithi149 (mon.0) 97 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:06:49.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:49 smithi149 bash[18736]: audit 2024-03-11T23:06:49.478874+0000 mon.smithi149 (mon.0) 98 : audit 0 from='client.? 172.21.15.149:0/1610961619' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-03-11T23:06:50.046 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stdout 8443 2024-03-11T23:06:50.046 INFO:teuthology.orchestra.run.smithi149.stdout:firewalld does not appear to be present 2024-03-11T23:06:50.046 INFO:teuthology.orchestra.run.smithi149.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-03-11T23:06:50.049 INFO:teuthology.orchestra.run.smithi149.stdout:Ceph Dashboard is now available at: 2024-03-11T23:06:50.049 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:06:50.049 INFO:teuthology.orchestra.run.smithi149.stdout: URL: https://smithi149.front.sepia.ceph.com:8443/ 2024-03-11T23:06:50.049 INFO:teuthology.orchestra.run.smithi149.stdout: User: admin 2024-03-11T23:06:50.049 INFO:teuthology.orchestra.run.smithi149.stdout: Password: l4ymzis9bl 2024-03-11T23:06:50.049 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:06:50.050 INFO:teuthology.orchestra.run.smithi149.stdout:Saving cluster configuration to /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config directory 2024-03-11T23:06:50.050 INFO:teuthology.orchestra.run.smithi149.stdout:Enabling autotune for osd_memory_target 2024-03-11T23:06:51.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:51 smithi149 bash[18736]: audit 2024-03-11T23:06:50.422609+0000 mon.smithi149 (mon.0) 99 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:06:53.698 INFO:teuthology.orchestra.run.smithi149.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-03-11T23:06:53.698 INFO:teuthology.orchestra.run.smithi149.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-03-11T23:06:53.698 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:06:53.698 INFO:teuthology.orchestra.run.smithi149.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-03-11T23:06:53.698 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:06:53.698 INFO:teuthology.orchestra.run.smithi149.stdout:Or, if you are only running a single cluster on this host: 2024-03-11T23:06:53.698 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:06:53.698 INFO:teuthology.orchestra.run.smithi149.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-03-11T23:06:53.698 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:06:53.698 INFO:teuthology.orchestra.run.smithi149.stdout:Please consider enabling telemetry to help improve Ceph: 2024-03-11T23:06:53.699 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:06:53.699 INFO:teuthology.orchestra.run.smithi149.stdout: ceph telemetry on 2024-03-11T23:06:53.699 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:06:53.699 INFO:teuthology.orchestra.run.smithi149.stdout:For more information see: 2024-03-11T23:06:53.699 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:06:53.699 INFO:teuthology.orchestra.run.smithi149.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-03-11T23:06:53.699 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:06:53.699 INFO:teuthology.orchestra.run.smithi149.stdout:Bootstrap complete. 2024-03-11T23:06:53.754 INFO:tasks.cephadm:Fetching config... 2024-03-11T23:06:53.755 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:06:53.755 DEBUG:teuthology.orchestra.run.smithi149:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-03-11T23:06:53.760 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-03-11T23:06:53.760 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:06:53.760 DEBUG:teuthology.orchestra.run.smithi149:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-03-11T23:06:53.808 INFO:tasks.cephadm:Fetching mon keyring... 2024-03-11T23:06:53.808 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:06:53.808 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/keyring of=/dev/stdout 2024-03-11T23:06:53.864 INFO:tasks.cephadm:Fetching pub ssh key... 2024-03-11T23:06:53.864 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:06:53.864 DEBUG:teuthology.orchestra.run.smithi149:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-03-11T23:06:53.912 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-03-11T23:06:53.913 DEBUG:teuthology.orchestra.run.smithi149:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCcD7Euo71B/RhT/BDOVzjKKQoKPC4fCB62mSyU69cgQThOYtXsoc+7m8snlfH3pzibabWnLyV/LkhvDGOr+OEEt/S+Vtj17q+FyqARKPXdMgx7TwN0tGH2wF6LJ9oUr4oU4Ney+0GjtlP6zgKWJzbhiw73d6V9FpU2UAM+wy7SHqHIKn1zSbqkrZWU4vDwwGAZ7Mv9c4G9MnUrRwgK/B2SyiseGGseZvU+gJS/ldvwGX93sbTk6P48q9i8bcatTPXolwDL54Lhdk0rDNE2DGndOUYT3qo3q6KXGt4f7SUKbOCvYNUxagwEkPbHXM+VUObbOSNxvt1pHODNSza47bOGnE+LQEGwk0bWHbyR9DureBL+OjkCMUgX8ofSsrMz1o1suVqmqEtphMfP0cmP/nVNm7nUxWYtExOujZiMyNUrnXA+u95MqwseiJVNrmFb4iG6SOSFdygR2E2SkFS5A3bcXkWI9fWXDqzuqpp0ohJh6mXuhltr4CNTVEfl3suSaVE= ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-03-11T23:06:53.976 INFO:teuthology.orchestra.run.smithi149.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCcD7Euo71B/RhT/BDOVzjKKQoKPC4fCB62mSyU69cgQThOYtXsoc+7m8snlfH3pzibabWnLyV/LkhvDGOr+OEEt/S+Vtj17q+FyqARKPXdMgx7TwN0tGH2wF6LJ9oUr4oU4Ney+0GjtlP6zgKWJzbhiw73d6V9FpU2UAM+wy7SHqHIKn1zSbqkrZWU4vDwwGAZ7Mv9c4G9MnUrRwgK/B2SyiseGGseZvU+gJS/ldvwGX93sbTk6P48q9i8bcatTPXolwDL54Lhdk0rDNE2DGndOUYT3qo3q6KXGt4f7SUKbOCvYNUxagwEkPbHXM+VUObbOSNxvt1pHODNSza47bOGnE+LQEGwk0bWHbyR9DureBL+OjkCMUgX8ofSsrMz1o1suVqmqEtphMfP0cmP/nVNm7nUxWYtExOujZiMyNUrnXA+u95MqwseiJVNrmFb4iG6SOSFdygR2E2SkFS5A3bcXkWI9fWXDqzuqpp0ohJh6mXuhltr4CNTVEfl3suSaVE= ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:06:53.986 DEBUG:teuthology.orchestra.run.smithi165:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCcD7Euo71B/RhT/BDOVzjKKQoKPC4fCB62mSyU69cgQThOYtXsoc+7m8snlfH3pzibabWnLyV/LkhvDGOr+OEEt/S+Vtj17q+FyqARKPXdMgx7TwN0tGH2wF6LJ9oUr4oU4Ney+0GjtlP6zgKWJzbhiw73d6V9FpU2UAM+wy7SHqHIKn1zSbqkrZWU4vDwwGAZ7Mv9c4G9MnUrRwgK/B2SyiseGGseZvU+gJS/ldvwGX93sbTk6P48q9i8bcatTPXolwDL54Lhdk0rDNE2DGndOUYT3qo3q6KXGt4f7SUKbOCvYNUxagwEkPbHXM+VUObbOSNxvt1pHODNSza47bOGnE+LQEGwk0bWHbyR9DureBL+OjkCMUgX8ofSsrMz1o1suVqmqEtphMfP0cmP/nVNm7nUxWYtExOujZiMyNUrnXA+u95MqwseiJVNrmFb4iG6SOSFdygR2E2SkFS5A3bcXkWI9fWXDqzuqpp0ohJh6mXuhltr4CNTVEfl3suSaVE= ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-03-11T23:06:54.008 INFO:teuthology.orchestra.run.smithi165.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCcD7Euo71B/RhT/BDOVzjKKQoKPC4fCB62mSyU69cgQThOYtXsoc+7m8snlfH3pzibabWnLyV/LkhvDGOr+OEEt/S+Vtj17q+FyqARKPXdMgx7TwN0tGH2wF6LJ9oUr4oU4Ney+0GjtlP6zgKWJzbhiw73d6V9FpU2UAM+wy7SHqHIKn1zSbqkrZWU4vDwwGAZ7Mv9c4G9MnUrRwgK/B2SyiseGGseZvU+gJS/ldvwGX93sbTk6P48q9i8bcatTPXolwDL54Lhdk0rDNE2DGndOUYT3qo3q6KXGt4f7SUKbOCvYNUxagwEkPbHXM+VUObbOSNxvt1pHODNSza47bOGnE+LQEGwk0bWHbyR9DureBL+OjkCMUgX8ofSsrMz1o1suVqmqEtphMfP0cmP/nVNm7nUxWYtExOujZiMyNUrnXA+u95MqwseiJVNrmFb4iG6SOSFdygR2E2SkFS5A3bcXkWI9fWXDqzuqpp0ohJh6mXuhltr4CNTVEfl3suSaVE= ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:06:54.017 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-03-11T23:06:54.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:06:54 smithi149 bash[18736]: audit 2024-03-11T23:06:53.150551+0000 mon.smithi149 (mon.0) 100 : audit 1 from='client.? 172.21.15.149:0/1393408278' entity='client.admin' 2024-03-11T23:06:58.686 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:07:02.472 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-03-11T23:07:02.472 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-03-11T23:07:02.660 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:02 smithi149 bash[18736]: audit 2024-03-11T23:07:01.319710+0000 mon.smithi149 (mon.0) 101 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:02.661 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:02 smithi149 bash[18736]: audit 2024-03-11T23:07:01.326039+0000 mon.smithi149 (mon.0) 102 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:02.661 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:02 smithi149 bash[18736]: audit 2024-03-11T23:07:01.327816+0000 mon.smithi149 (mon.0) 103 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd/host:smithi149", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:07:02.661 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:02 smithi149 bash[18736]: audit 2024-03-11T23:07:01.335375+0000 mon.smithi149 (mon.0) 104 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:02.661 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:02 smithi149 bash[18736]: audit 2024-03-11T23:07:01.337656+0000 mon.smithi149 (mon.0) 105 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi149", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-11T23:07:02.661 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:02 smithi149 bash[18736]: audit 2024-03-11T23:07:01.339007+0000 mon.smithi149 (mon.0) 106 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi149", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-03-11T23:07:02.661 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:02 smithi149 bash[18736]: audit 2024-03-11T23:07:01.342968+0000 mon.smithi149 (mon.0) 107 : audit 0 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:07:02.661 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:02 smithi149 bash[18736]: cephadm 2024-03-11T23:07:01.344566+0000 mgr.smithi149.leptec (mgr.14164) 9 : cephadm 1 Deploying daemon ceph-exporter.smithi149 on smithi149 2024-03-11T23:07:02.661 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:02 smithi149 bash[18736]: audit 2024-03-11T23:07:01.445649+0000 mon.smithi149 (mon.0) 108 : audit 1 from='client.? 172.21.15.149:0/3588776257' entity='client.admin' 2024-03-11T23:07:03.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:03 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:07:03.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:03 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:07:04.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:04 smithi149 bash[18736]: cluster 2024-03-11T23:07:02.513588+0000 mgr.smithi149.leptec (mgr.14164) 10 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:04.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:04 smithi149 bash[18736]: audit 2024-03-11T23:07:04.030759+0000 mon.smithi149 (mon.0) 109 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:04.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:04 smithi149 bash[18736]: audit 2024-03-11T23:07:04.034437+0000 mon.smithi149 (mon.0) 110 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:04.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:04 smithi149 bash[18736]: audit 2024-03-11T23:07:04.067401+0000 mon.smithi149 (mon.0) 111 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:04.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:04 smithi149 bash[18736]: audit 2024-03-11T23:07:04.070470+0000 mon.smithi149 (mon.0) 112 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:04.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:04 smithi149 bash[18736]: audit 2024-03-11T23:07:04.071793+0000 mon.smithi149 (mon.0) 113 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi149", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-11T23:07:04.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:04 smithi149 bash[18736]: audit 2024-03-11T23:07:04.072538+0000 mon.smithi149 (mon.0) 114 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi149", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-03-11T23:07:04.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:04 smithi149 bash[18736]: audit 2024-03-11T23:07:04.074249+0000 mon.smithi149 (mon.0) 115 : audit 0 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:07:05.640 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:05 smithi149 bash[18736]: cephadm 2024-03-11T23:07:04.075098+0000 mgr.smithi149.leptec (mgr.14164) 11 : cephadm 1 Deploying daemon crash.smithi149 on smithi149 2024-03-11T23:07:06.654 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:06 smithi149 bash[18736]: cluster 2024-03-11T23:07:04.513851+0000 mgr.smithi149.leptec (mgr.14164) 12 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:06.655 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:06 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:07:06.655 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:06 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:07:07.169 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:07:07.947 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:07 smithi149 bash[18736]: cluster 2024-03-11T23:07:06.514102+0000 mgr.smithi149.leptec (mgr.14164) 13 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:07.947 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:07 smithi149 bash[18736]: audit 2024-03-11T23:07:06.796329+0000 mon.smithi149 (mon.0) 116 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:07.947 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:07 smithi149 bash[18736]: audit 2024-03-11T23:07:06.800078+0000 mon.smithi149 (mon.0) 117 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:07.947 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:07 smithi149 bash[18736]: audit 2024-03-11T23:07:06.847040+0000 mon.smithi149 (mon.0) 118 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:07.948 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:07 smithi149 bash[18736]: audit 2024-03-11T23:07:06.849136+0000 mon.smithi149 (mon.0) 119 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:07.948 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:07 smithi149 bash[18736]: cephadm 2024-03-11T23:07:06.850822+0000 mgr.smithi149.leptec (mgr.14164) 14 : cephadm 1 Deploying daemon node-exporter.smithi149 on smithi149 2024-03-11T23:07:07.948 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:07 smithi149 bash[18736]: audit 2024-03-11T23:07:07.586147+0000 mon.smithi149 (mon.0) 120 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:07.948 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:07 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:07:08.201 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:08 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:07:09.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:09 smithi149 bash[18736]: audit 2024-03-11T23:07:08.225531+0000 mon.smithi149 (mon.0) 121 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:09.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:09 smithi149 bash[18736]: audit 2024-03-11T23:07:08.232078+0000 mon.smithi149 (mon.0) 122 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:09.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:09 smithi149 bash[18736]: audit 2024-03-11T23:07:08.270229+0000 mon.smithi149 (mon.0) 123 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:09.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:09 smithi149 bash[18736]: audit 2024-03-11T23:07:08.275487+0000 mon.smithi149 (mon.0) 124 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:09.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:09 smithi149 bash[18736]: cephadm 2024-03-11T23:07:08.286910+0000 mgr.smithi149.leptec (mgr.14164) 15 : cephadm 1 Deploying daemon alertmanager.smithi149 on smithi149 2024-03-11T23:07:10.432 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:10 smithi149 bash[18736]: cluster 2024-03-11T23:07:08.514531+0000 mgr.smithi149.leptec (mgr.14164) 16 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:12.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:11 smithi149 bash[18736]: cluster 2024-03-11T23:07:10.514913+0000 mgr.smithi149.leptec (mgr.14164) 17 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:12.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:11 smithi149 bash[18736]: audit 2024-03-11T23:07:10.866671+0000 mgr.smithi149.leptec (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-11T23:07:12.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:11 smithi149 bash[18736]: audit 2024-03-11T23:07:10.869201+0000 mon.smithi149 (mon.0) 125 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:12.279 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi165 2024-03-11T23:07:12.279 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T23:07:12.279 DEBUG:teuthology.orchestra.run.smithi165:> dd of=/etc/ceph/ceph.conf 2024-03-11T23:07:12.286 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T23:07:12.286 DEBUG:teuthology.orchestra.run.smithi165:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-11T23:07:12.332 INFO:tasks.cephadm:Adding host smithi165 to orchestrator... 2024-03-11T23:07:12.332 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph orch host add smithi165 2024-03-11T23:07:13.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:13 smithi149 bash[18736]: cluster 2024-03-11T23:07:12.515161+0000 mgr.smithi149.leptec (mgr.14164) 19 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:13.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:13 smithi149 bash[18736]: audit 2024-03-11T23:07:12.592516+0000 mon.smithi149 (mon.0) 126 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:15.725 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:15 smithi149 bash[18736]: cluster 2024-03-11T23:07:14.515467+0000 mgr.smithi149.leptec (mgr.14164) 20 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:17.438 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:07:17.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:17 smithi149 bash[18736]: cluster 2024-03-11T23:07:16.515866+0000 mgr.smithi149.leptec (mgr.14164) 21 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:19.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:19 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:07:19.853 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:19 smithi149 bash[18736]: cluster 2024-03-11T23:07:18.516206+0000 mgr.smithi149.leptec (mgr.14164) 22 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:19.853 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:19 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:07:21.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.847566+0000 mon.smithi149 (mon.0) 127 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:21.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.850716+0000 mon.smithi149 (mon.0) 128 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:21.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.877507+0000 mon.smithi149 (mon.0) 129 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:21.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.880715+0000 mon.smithi149 (mon.0) 130 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:21.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.884728+0000 mon.smithi149 (mon.0) 131 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:21.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.887888+0000 mon.smithi149 (mon.0) 132 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:21.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: cephadm 2024-03-11T23:07:19.896914+0000 mgr.smithi149.leptec (mgr.14164) 23 : cephadm 1 Regenerating cephadm self-signed grafana TLS certificates 2024-03-11T23:07:21.250 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.923098+0000 mon.smithi149 (mon.0) 133 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:21.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.927276+0000 mon.smithi149 (mon.0) 134 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:21.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.929214+0000 mon.smithi149 (mon.0) 135 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-03-11T23:07:21.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.930030+0000 mgr.smithi149.leptec (mgr.14164) 24 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-03-11T23:07:21.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: audit 2024-03-11T23:07:19.936628+0000 mon.smithi149 (mon.0) 136 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:21.251 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:20 smithi149 bash[18736]: cephadm 2024-03-11T23:07:19.949012+0000 mgr.smithi149.leptec (mgr.14164) 25 : cephadm 1 Deploying daemon grafana.smithi149 on smithi149 2024-03-11T23:07:22.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:21 smithi149 bash[18736]: cluster 2024-03-11T23:07:20.516528+0000 mgr.smithi149.leptec (mgr.14164) 26 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:23.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:22 smithi149 bash[18736]: audit 2024-03-11T23:07:21.721363+0000 mgr.smithi149.leptec (mgr.14164) 27 : audit 0 from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:07:23.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:22 smithi149 bash[18736]: audit 2024-03-11T23:07:22.603162+0000 mon.smithi149 (mon.0) 137 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:24.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:23 smithi149 bash[18736]: cephadm 2024-03-11T23:07:22.422936+0000 mgr.smithi149.leptec (mgr.14164) 28 : cephadm 1 Deploying cephadm binary to smithi165 2024-03-11T23:07:24.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:23 smithi149 bash[18736]: cluster 2024-03-11T23:07:22.516889+0000 mgr.smithi149.leptec (mgr.14164) 29 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:26.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:25 smithi149 bash[18736]: cluster 2024-03-11T23:07:24.517292+0000 mgr.smithi149.leptec (mgr.14164) 30 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:27.884 INFO:teuthology.orchestra.run.smithi149.stdout:Added host 'smithi165' with addr '172.21.15.165' 2024-03-11T23:07:28.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:27 smithi149 bash[18736]: cluster 2024-03-11T23:07:26.517673+0000 mgr.smithi149.leptec (mgr.14164) 31 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:28.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:27 smithi149 bash[18736]: audit 2024-03-11T23:07:27.879053+0000 mon.smithi149 (mon.0) 138 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:29.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:28 smithi149 bash[18736]: cephadm 2024-03-11T23:07:27.879610+0000 mgr.smithi149.leptec (mgr.14164) 32 : cephadm 1 Added host smithi165 2024-03-11T23:07:30.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:29 smithi149 bash[18736]: cluster 2024-03-11T23:07:28.517962+0000 mgr.smithi149.leptec (mgr.14164) 33 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:32.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:31 smithi149 bash[18736]: cluster 2024-03-11T23:07:30.518268+0000 mgr.smithi149.leptec (mgr.14164) 34 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:32.412 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph orch host ls --format=json 2024-03-11T23:07:34.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:33 smithi149 bash[18736]: cluster 2024-03-11T23:07:32.518564+0000 mgr.smithi149.leptec (mgr.14164) 35 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:36.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:35 smithi149 bash[18736]: cluster 2024-03-11T23:07:34.518961+0000 mgr.smithi149.leptec (mgr.14164) 36 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:37.198 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:07:38.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:37 smithi149 bash[18736]: cluster 2024-03-11T23:07:36.519385+0000 mgr.smithi149.leptec (mgr.14164) 37 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:40.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:39 smithi149 bash[18736]: cluster 2024-03-11T23:07:38.519817+0000 mgr.smithi149.leptec (mgr.14164) 38 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:42.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:41 smithi149 bash[18736]: cluster 2024-03-11T23:07:40.520202+0000 mgr.smithi149.leptec (mgr.14164) 39 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:42.302 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:07:42.302 INFO:teuthology.orchestra.run.smithi149.stdout:[{"addr": "172.21.15.149", "hostname": "smithi149", "labels": [], "status": ""}, {"addr": "172.21.15.165", "hostname": "smithi165", "labels": [], "status": ""}] 2024-03-11T23:07:43.162 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:42 smithi149 bash[18736]: audit 2024-03-11T23:07:42.297038+0000 mgr.smithi149.leptec (mgr.14164) 40 : audit 0 from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:07:43.253 INFO:tasks.cephadm:Setting crush tunables to default 2024-03-11T23:07:43.253 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd crush tunables default 2024-03-11T23:07:43.431 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:07:43.702 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:07:44.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 bash[18736]: cluster 2024-03-11T23:07:42.520595+0000 mgr.smithi149.leptec (mgr.14164) 41 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:44.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 bash[18736]: audit 2024-03-11T23:07:43.741963+0000 mon.smithi149 (mon.0) 139 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:44.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 bash[18736]: audit 2024-03-11T23:07:43.745087+0000 mon.smithi149 (mon.0) 140 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:44.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 bash[18736]: audit 2024-03-11T23:07:43.761482+0000 mon.smithi149 (mon.0) 141 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:44.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 bash[18736]: audit 2024-03-11T23:07:43.764746+0000 mon.smithi149 (mon.0) 142 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:44.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 bash[18736]: audit 2024-03-11T23:07:43.768185+0000 mon.smithi149 (mon.0) 143 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:44.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 bash[18736]: audit 2024-03-11T23:07:43.771701+0000 mon.smithi149 (mon.0) 144 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:44.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 bash[18736]: audit 2024-03-11T23:07:43.777474+0000 mon.smithi149 (mon.0) 145 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:44.249 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:43 smithi149 bash[18736]: audit 2024-03-11T23:07:43.783225+0000 mon.smithi149 (mon.0) 146 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:45.045 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:44 smithi149 bash[18736]: cephadm 2024-03-11T23:07:44.043271+0000 mgr.smithi149.leptec (mgr.14164) 42 : cephadm 1 Deploying daemon prometheus.smithi149 on smithi149 2024-03-11T23:07:46.127 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:45 smithi149 bash[18736]: cluster 2024-03-11T23:07:44.520910+0000 mgr.smithi149.leptec (mgr.14164) 43 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:48.018 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:47 smithi149 bash[18736]: cluster 2024-03-11T23:07:46.521176+0000 mgr.smithi149.leptec (mgr.14164) 44 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:48.018 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:47 smithi149 bash[18736]: audit 2024-03-11T23:07:47.608563+0000 mon.smithi149 (mon.0) 147 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:07:49.000 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:07:50.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:49 smithi149 bash[18736]: cluster 2024-03-11T23:07:48.521420+0000 mgr.smithi149.leptec (mgr.14164) 45 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:52.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:51 smithi149 bash[18736]: cluster 2024-03-11T23:07:50.521797+0000 mgr.smithi149.leptec (mgr.14164) 46 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:54.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:53 smithi149 bash[18736]: cluster 2024-03-11T23:07:52.522217+0000 mgr.smithi149.leptec (mgr.14164) 47 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:56.137 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:55 smithi149 bash[18736]: cluster 2024-03-11T23:07:54.522640+0000 mgr.smithi149.leptec (mgr.14164) 48 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:57.003 INFO:teuthology.orchestra.run.smithi149.stderr:adjusted tunables profile to default 2024-03-11T23:07:57.196 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:56 smithi149 bash[18736]: audit 2024-03-11T23:07:56.353891+0000 mon.smithi149 (mon.0) 148 : audit 1 from='client.? 172.21.15.149:0/1035636371' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-03-11T23:07:58.365 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:57 smithi149 bash[18736]: cluster 2024-03-11T23:07:56.523151+0000 mgr.smithi149.leptec (mgr.14164) 49 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:07:58.365 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:57 smithi149 bash[18736]: audit 2024-03-11T23:07:56.993610+0000 mon.smithi149 (mon.0) 149 : audit 1 from='client.? 172.21.15.149:0/1035636371' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-03-11T23:07:58.365 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:57 smithi149 bash[18736]: cluster 2024-03-11T23:07:57.001403+0000 mon.smithi149 (mon.0) 150 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-11T23:07:58.516 INFO:tasks.cephadm:Adding mon.smithi149 on smithi149 2024-03-11T23:07:58.516 INFO:tasks.cephadm:Adding mon.smithi165 on smithi165 2024-03-11T23:07:58.516 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph orch apply mon '2;smithi149:172.21.15.149=smithi149;smithi165:172.21.15.165=smithi165' 2024-03-11T23:07:59.729 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-11T23:08:00.144 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:07:59 smithi149 bash[18736]: cluster 2024-03-11T23:07:58.523630+0000 mgr.smithi149.leptec (mgr.14164) 50 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:00.656 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:00 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:08:00.656 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:00 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:08:00.774 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-11T23:08:02.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:01 smithi149 bash[18736]: cluster 2024-03-11T23:08:00.523938+0000 mgr.smithi149.leptec (mgr.14164) 51 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:02.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:01 smithi149 bash[18736]: audit 2024-03-11T23:08:00.812641+0000 mon.smithi149 (mon.0) 151 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:08:02.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:01 smithi149 bash[18736]: audit 2024-03-11T23:08:00.816362+0000 mon.smithi149 (mon.0) 152 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:08:02.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:01 smithi149 bash[18736]: audit 2024-03-11T23:08:00.851695+0000 mon.smithi149 (mon.0) 153 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' 2024-03-11T23:08:02.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:01 smithi149 bash[18736]: audit 2024-03-11T23:08:00.853853+0000 mon.smithi149 (mon.0) 154 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-03-11T23:08:03.095 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:02 smithi149 bash[18736]: audit 2024-03-11T23:08:01.852240+0000 mon.smithi149 (mon.0) 155 : audit 1 from='mgr.14164 172.21.15.149:0/3074301142' entity='mgr.smithi149.leptec' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-03-11T23:08:03.095 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:02 smithi149 bash[18736]: cluster 2024-03-11T23:08:01.857685+0000 mon.smithi149 (mon.0) 156 : cluster 0 mgrmap e14: smithi149.leptec(active, since 79s) 2024-03-11T23:08:10.425 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:10 smithi149 bash[18736]: cluster 2024-03-11T23:08:10.202461+0000 mon.smithi149 (mon.0) 157 : cluster 1 Active manager daemon smithi149.leptec restarted 2024-03-11T23:08:10.425 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:10 smithi149 bash[18736]: cluster 2024-03-11T23:08:10.202959+0000 mon.smithi149 (mon.0) 158 : cluster 1 Activating manager daemon smithi149.leptec 2024-03-11T23:08:10.425 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:10 smithi149 bash[18736]: cluster 2024-03-11T23:08:10.207581+0000 mon.smithi149 (mon.0) 159 : cluster 0 osdmap e5: 0 total, 0 up, 0 in 2024-03-11T23:08:10.426 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:10 smithi149 bash[18736]: cluster 2024-03-11T23:08:10.207727+0000 mon.smithi149 (mon.0) 160 : cluster 0 mgrmap e15: smithi149.leptec(active, starting, since 0.00498344s) 2024-03-11T23:08:10.426 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:10 smithi149 bash[18736]: audit 2024-03-11T23:08:10.211018+0000 mon.smithi149 (mon.0) 161 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2024-03-11T23:08:10.426 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:10 smithi149 bash[18736]: audit 2024-03-11T23:08:10.213191+0000 mon.smithi149 (mon.0) 162 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr metadata", "who": "smithi149.leptec", "id": "smithi149.leptec"}]: dispatch 2024-03-11T23:08:10.426 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:10 smithi149 bash[18736]: audit 2024-03-11T23:08:10.214356+0000 mon.smithi149 (mon.0) 163 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-11T23:08:10.426 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:10 smithi149 bash[18736]: audit 2024-03-11T23:08:10.214752+0000 mon.smithi149 (mon.0) 164 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-11T23:08:10.426 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:10 smithi149 bash[18736]: audit 2024-03-11T23:08:10.215088+0000 mon.smithi149 (mon.0) 165 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-11T23:08:10.426 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:10 smithi149 bash[18736]: cluster 2024-03-11T23:08:10.242389+0000 mon.smithi149 (mon.0) 166 : cluster 1 Manager daemon smithi149.leptec is now available 2024-03-11T23:08:11.228 INFO:teuthology.orchestra.run.smithi165.stdout:Scheduled mon update... 2024-03-11T23:08:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:11 smithi149 bash[18736]: audit 2024-03-11T23:08:10.269412+0000 mon.smithi149 (mon.0) 167 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:08:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:11 smithi149 bash[18736]: audit 2024-03-11T23:08:10.273558+0000 mon.smithi149 (mon.0) 168 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:08:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:11 smithi149 bash[18736]: audit 2024-03-11T23:08:10.289933+0000 mon.smithi149 (mon.0) 169 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:11 smithi149 bash[18736]: audit 2024-03-11T23:08:10.294138+0000 mon.smithi149 (mon.0) 170 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:08:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:11 smithi149 bash[18736]: audit 2024-03-11T23:08:10.300731+0000 mon.smithi149 (mon.0) 171 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi149.leptec/mirror_snapshot_schedule"}]: dispatch 2024-03-11T23:08:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:11 smithi149 bash[18736]: audit 2024-03-11T23:08:10.304792+0000 mon.smithi149 (mon.0) 172 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi149.leptec/trash_purge_schedule"}]: dispatch 2024-03-11T23:08:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:11 smithi149 bash[18736]: audit 2024-03-11T23:08:11.153560+0000 mon.smithi149 (mon.0) 173 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:11 smithi149 bash[18736]: cluster 2024-03-11T23:08:11.216744+0000 mon.smithi149 (mon.0) 174 : cluster 0 mgrmap e16: smithi149.leptec(active, since 1.01399s) 2024-03-11T23:08:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:11 smithi149 bash[18736]: audit 2024-03-11T23:08:11.223550+0000 mon.smithi149 (mon.0) 175 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:11.888 DEBUG:teuthology.orchestra.run.smithi165:mon.smithi165> sudo journalctl -f -n 0 -u ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi165.service 2024-03-11T23:08:11.891 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-03-11T23:08:11.891 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph mon dump -f json 2024-03-11T23:08:12.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:12 smithi149 bash[18736]: cephadm 2024-03-11T23:08:10.940737+0000 mgr.smithi149.leptec (mgr.14197) 1 : cephadm 1 [11/Mar/2024:23:08:10] ENGINE Bus STARTING 2024-03-11T23:08:12.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:12 smithi149 bash[18736]: cephadm 2024-03-11T23:08:11.060433+0000 mgr.smithi149.leptec (mgr.14197) 2 : cephadm 1 [11/Mar/2024:23:08:11] ENGINE Serving on https://172.21.15.149:7150 2024-03-11T23:08:12.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:12 smithi149 bash[18736]: cephadm 2024-03-11T23:08:11.164044+0000 mgr.smithi149.leptec (mgr.14197) 3 : cephadm 1 [11/Mar/2024:23:08:11] ENGINE Serving on http://172.21.15.149:8765 2024-03-11T23:08:12.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:12 smithi149 bash[18736]: cephadm 2024-03-11T23:08:11.164932+0000 mgr.smithi149.leptec (mgr.14197) 4 : cephadm 1 [11/Mar/2024:23:08:11] ENGINE Bus STARTED 2024-03-11T23:08:12.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:12 smithi149 bash[18736]: audit 2024-03-11T23:08:11.216812+0000 mgr.smithi149.leptec (mgr.14197) 5 : audit 0 from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi149:172.21.15.149=smithi149;smithi165:172.21.15.165=smithi165", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:08:12.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:12 smithi149 bash[18736]: cephadm 2024-03-11T23:08:11.220269+0000 mgr.smithi149.leptec (mgr.14197) 6 : cephadm 1 Saving service mon spec with placement smithi149:172.21.15.149=smithi149;smithi165:172.21.15.165=smithi165;count:2 2024-03-11T23:08:13.142 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-11T23:08:13.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:13 smithi149 bash[18736]: cluster 2024-03-11T23:08:12.264097+0000 mon.smithi149 (mon.0) 176 : cluster 0 mgrmap e17: smithi149.leptec(active, since 2s) 2024-03-11T23:08:13.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:13 smithi149 bash[18736]: audit 2024-03-11T23:08:12.930891+0000 mon.smithi149 (mon.0) 177 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:14.184 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-11T23:08:15.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:15 smithi149 bash[18736]: audit 2024-03-11T23:08:14.024474+0000 mon.smithi149 (mon.0) 178 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:17.200 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-03-11T23:08:17.200 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":1,"fsid":"ad95ae2e-dffb-11ee-95c8-87774f69a715","modified":"2024-03-11T23:05:20.650764Z","created":"2024-03-11T23:05:20.650764Z","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":"smithi149","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:3300","nonce":0},{"type":"v1","addr":"172.21.15.149:6789","nonce":0}]},"addr":"172.21.15.149:6789/0","public_addr":"172.21.15.149:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-03-11T23:08:17.202 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 1 2024-03-11T23:08:17.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:17 smithi149 bash[18736]: audit 2024-03-11T23:08:16.480028+0000 mon.smithi149 (mon.0) 179 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:17.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:17 smithi149 bash[18736]: audit 2024-03-11T23:08:16.483418+0000 mon.smithi149 (mon.0) 180 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:17.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:17 smithi149 bash[18736]: audit 2024-03-11T23:08:17.195983+0000 mon.smithi149 (mon.0) 181 : audit 0 from='client.? 172.21.15.165:0/1622523420' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-11T23:08:17.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:17 smithi149 bash[18736]: audit 2024-03-11T23:08:17.425151+0000 mon.smithi149 (mon.0) 182 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:17.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:17 smithi149 bash[18736]: audit 2024-03-11T23:08:17.430892+0000 mon.smithi149 (mon.0) 183 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:17.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:17 smithi149 bash[18736]: audit 2024-03-11T23:08:17.432876+0000 mon.smithi149 (mon.0) 184 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd/host:smithi149", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:08:19.114 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-03-11T23:08:19.115 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph mon dump -f json 2024-03-11T23:08:21.155 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.conf 2024-03-11T23:08:21.581 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:20.270377+0000 mon.smithi149 (mon.0) 185 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:21.581 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:20.276116+0000 mon.smithi149 (mon.0) 186 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:21.581 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:20.286146+0000 mon.smithi149 (mon.0) 187 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:21.581 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:20.291818+0000 mon.smithi149 (mon.0) 188 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:21.581 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:20.306374+0000 mon.smithi149 (mon.0) 189 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd/host:smithi165", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:08:21.581 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:20.308402+0000 mon.smithi149 (mon.0) 190 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:21.581 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:20.310169+0000 mon.smithi149 (mon.0) 191 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: cephadm 2024-03-11T23:08:20.313044+0000 mgr.smithi149.leptec (mgr.14197) 7 : cephadm 1 Updating smithi149:/etc/ceph/ceph.conf 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: cephadm 2024-03-11T23:08:20.313615+0000 mgr.smithi149.leptec (mgr.14197) 8 : cephadm 1 Updating smithi165:/etc/ceph/ceph.conf 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: cephadm 2024-03-11T23:08:20.580025+0000 mgr.smithi149.leptec (mgr.14197) 9 : cephadm 1 Updating smithi149:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.conf 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: cephadm 2024-03-11T23:08:20.580438+0000 mgr.smithi149.leptec (mgr.14197) 10 : cephadm 1 Updating smithi165:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.conf 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: cephadm 2024-03-11T23:08:20.744725+0000 mgr.smithi149.leptec (mgr.14197) 11 : cephadm 1 Updating smithi149:/etc/ceph/ceph.client.admin.keyring 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: cephadm 2024-03-11T23:08:20.745959+0000 mgr.smithi149.leptec (mgr.14197) 12 : cephadm 1 Updating smithi165:/etc/ceph/ceph.client.admin.keyring 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: cephadm 2024-03-11T23:08:20.909556+0000 mgr.smithi149.leptec (mgr.14197) 13 : cephadm 1 Updating smithi149:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.client.admin.keyring 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: cephadm 2024-03-11T23:08:20.911027+0000 mgr.smithi149.leptec (mgr.14197) 14 : cephadm 1 Updating smithi165:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.client.admin.keyring 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:21.081796+0000 mon.smithi149 (mon.0) 192 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:21.086824+0000 mon.smithi149 (mon.0) 193 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:21.092730+0000 mon.smithi149 (mon.0) 194 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:21.097140+0000 mon.smithi149 (mon.0) 195 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:21.582 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:21.102403+0000 mon.smithi149 (mon.0) 196 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:21.583 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:21.104561+0000 mon.smithi149 (mon.0) 197 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi165", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-11T23:08:21.583 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:21.106072+0000 mon.smithi149 (mon.0) 198 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi165", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-03-11T23:08:21.583 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:21 smithi149 bash[18736]: audit 2024-03-11T23:08:21.110073+0000 mon.smithi149 (mon.0) 199 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:22.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: cephadm 2024-03-11T23:08:21.111476+0000 mgr.smithi149.leptec (mgr.14197) 15 : cephadm 1 Deploying daemon ceph-exporter.smithi165 on smithi165 2024-03-11T23:08:22.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: cephadm 2024-03-11T23:08:21.558020+0000 mgr.smithi149.leptec (mgr.14197) 16 : cephadm 1 Removing key for client.ceph-exporter.smithi165 2024-03-11T23:08:22.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: audit 2024-03-11T23:08:21.558707+0000 mon.smithi149 (mon.0) 200 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi165"}]: dispatch 2024-03-11T23:08:22.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: audit 2024-03-11T23:08:21.560378+0000 mon.smithi149 (mon.0) 201 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi165"}]': finished 2024-03-11T23:08:22.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: cephadm 2024-03-11T23:08:21.576408+0000 mgr.smithi149.leptec (mgr.14197) 17 : cephadm 4 Failed while placing ceph-exporter.smithi165 on smithi165: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165 2024-03-11T23:08:22.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: /usr/bin/docker: stdout 2024-03-11T23:08:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165 2024-03-11T23:08:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165 2024-03-11T23:08:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: /usr/bin/docker: stdout 2024-03-11T23:08:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165 2024-03-11T23:08:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: Deploy daemon ceph-exporter.smithi165 ... 2024-03-11T23:08:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: ERROR: Directory does not exist. Got: /var/run/ceph/ 2024-03-11T23:08:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: audit 2024-03-11T23:08:21.580580+0000 mon.smithi149 (mon.0) 202 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi165", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-11T23:08:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: audit 2024-03-11T23:08:21.582223+0000 mon.smithi149 (mon.0) 203 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi165", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-03-11T23:08:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: audit 2024-03-11T23:08:21.586684+0000 mon.smithi149 (mon.0) 204 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:22.749 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:22 smithi149 bash[18736]: cephadm 2024-03-11T23:08:21.588716+0000 mgr.smithi149.leptec (mgr.14197) 18 : cephadm 1 Deploying daemon crash.smithi165 on smithi165 2024-03-11T23:08:24.228 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-03-11T23:08:24.228 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":1,"fsid":"ad95ae2e-dffb-11ee-95c8-87774f69a715","modified":"2024-03-11T23:05:20.650764Z","created":"2024-03-11T23:05:20.650764Z","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":"smithi149","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:3300","nonce":0},{"type":"v1","addr":"172.21.15.149:6789","nonce":0}]},"addr":"172.21.15.149:6789/0","public_addr":"172.21.15.149:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-03-11T23:08:24.231 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 1 2024-03-11T23:08:24.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:24 smithi149 bash[18736]: audit 2024-03-11T23:08:24.223830+0000 mon.smithi149 (mon.0) 205 : audit 0 from='client.? 172.21.15.165:0/2940377131' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-11T23:08:25.931 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-03-11T23:08:25.932 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph mon dump -f json 2024-03-11T23:08:26.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:26 smithi149 bash[18736]: audit 2024-03-11T23:08:25.292035+0000 mon.smithi149 (mon.0) 206 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:26.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:26 smithi149 bash[18736]: audit 2024-03-11T23:08:25.295018+0000 mon.smithi149 (mon.0) 207 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:08:26.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:26 smithi149 bash[18736]: audit 2024-03-11T23:08:25.518201+0000 mon.smithi149 (mon.0) 208 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:26.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:26 smithi149 bash[18736]: audit 2024-03-11T23:08:25.524869+0000 mon.smithi149 (mon.0) 209 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:26.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:26 smithi149 bash[18736]: audit 2024-03-11T23:08:25.569441+0000 mon.smithi149 (mon.0) 210 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:26.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:26 smithi149 bash[18736]: audit 2024-03-11T23:08:25.575488+0000 mon.smithi149 (mon.0) 211 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:26.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:26 smithi149 bash[18736]: cephadm 2024-03-11T23:08:25.578955+0000 mgr.smithi149.leptec (mgr.14197) 19 : cephadm 1 Deploying daemon node-exporter.smithi165 on smithi165 2024-03-11T23:08:27.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:27 smithi149 bash[18736]: audit 2024-03-11T23:08:26.709448+0000 mon.smithi149 (mon.0) 212 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:27.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:27 smithi149 bash[18736]: audit 2024-03-11T23:08:26.718196+0000 mon.smithi149 (mon.0) 213 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:27.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:27 smithi149 bash[18736]: audit 2024-03-11T23:08:26.754314+0000 mon.smithi149 (mon.0) 214 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:27.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:27 smithi149 bash[18736]: audit 2024-03-11T23:08:26.761775+0000 mon.smithi149 (mon.0) 215 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:27.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:27 smithi149 bash[18736]: audit 2024-03-11T23:08:26.764995+0000 mon.smithi149 (mon.0) 216 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi165.tfkohn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-11T23:08:27.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:27 smithi149 bash[18736]: audit 2024-03-11T23:08:26.769237+0000 mon.smithi149 (mon.0) 217 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi165.tfkohn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-03-11T23:08:27.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:27 smithi149 bash[18736]: audit 2024-03-11T23:08:26.773415+0000 mon.smithi149 (mon.0) 218 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-11T23:08:27.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:27 smithi149 bash[18736]: audit 2024-03-11T23:08:26.774852+0000 mon.smithi149 (mon.0) 219 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:27.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:27 smithi149 bash[18736]: cephadm 2024-03-11T23:08:26.776648+0000 mgr.smithi149.leptec (mgr.14197) 20 : cephadm 1 Deploying daemon mgr.smithi165.tfkohn on smithi165 2024-03-11T23:08:29.810 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.conf 2024-03-11T23:08:30.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:30 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:08:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:30 smithi149 bash[18736]: audit 2024-03-11T23:08:29.932570+0000 mon.smithi149 (mon.0) 220 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:30 smithi149 bash[18736]: audit 2024-03-11T23:08:29.939383+0000 mon.smithi149 (mon.0) 221 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:30 smithi149 bash[18736]: audit 2024-03-11T23:08:29.954172+0000 mon.smithi149 (mon.0) 222 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:30 smithi149 bash[18736]: audit 2024-03-11T23:08:29.960278+0000 mon.smithi149 (mon.0) 223 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:30 smithi149 bash[18736]: audit 2024-03-11T23:08:29.963900+0000 mon.smithi149 (mon.0) 224 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-11T23:08:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:30 smithi149 bash[18736]: audit 2024-03-11T23:08:29.965617+0000 mon.smithi149 (mon.0) 225 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:30 smithi149 bash[18736]: cephadm 2024-03-11T23:08:29.967631+0000 mgr.smithi149.leptec (mgr.14197) 21 : cephadm 1 Deploying daemon mon.smithi165 on smithi165 2024-03-11T23:08:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:30 smithi149 bash[18736]: audit 2024-03-11T23:08:30.299727+0000 mon.smithi149 (mon.0) 226 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:32.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:31 smithi149 bash[18736]: cluster 2024-03-11T23:08:31.578596+0000 mgr.smithi149.leptec (mgr.14197) 22 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:33.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:32 smithi149 bash[18736]: cluster 2024-03-11T23:08:31.929752+0000 mon.smithi149 (mon.0) 227 : cluster 3 Health check failed: Failed to place 1 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-03-11T23:08:34.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:33 smithi149 bash[18736]: cluster 2024-03-11T23:08:33.579254+0000 mgr.smithi149.leptec (mgr.14197) 23 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:34.699 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-03-11T23:08:34.699 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":1,"fsid":"ad95ae2e-dffb-11ee-95c8-87774f69a715","modified":"2024-03-11T23:05:20.650764Z","created":"2024-03-11T23:05:20.650764Z","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":"smithi149","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:3300","nonce":0},{"type":"v1","addr":"172.21.15.149:6789","nonce":0}]},"addr":"172.21.15.149:6789/0","public_addr":"172.21.15.149:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-03-11T23:08:34.702 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 1 2024-03-11T23:08:35.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:34 smithi149 bash[18736]: audit 2024-03-11T23:08:34.695624+0000 mon.smithi149 (mon.0) 228 : audit 0 from='client.? 172.21.15.165:0/1831375736' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-11T23:08:36.201 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:36 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:08:36.202 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:36 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:08:36.202 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:36 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:08:36.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:35 smithi149 bash[18736]: cluster 2024-03-11T23:08:35.579809+0000 mgr.smithi149.leptec (mgr.14197) 24 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:36.252 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:36 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:08:36.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:36 smithi165 systemd[1]: Started Ceph mon.smithi165 for ad95ae2e-dffb-11ee-95c8-87774f69a715. 2024-03-11T23:08:36.839 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-03-11T23:08:36.839 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph mon dump -f json 2024-03-11T23:08:37.381 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.353+0000 7f76c1645c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-03-11T23:08:37.381 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.353+0000 7f76c1645c80 0 ceph version 19.0.0-1607-g94a53970 (94a539707733325322964c6a187c6a1b41be1daf) squid (dev), process ceph-mon, pid 7 2024-03-11T23:08:37.381 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.353+0000 7f76c1645c80 0 pidfile_write: ignore empty --pid-file 2024-03-11T23:08:37.381 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 0 load: jerasure load: lrc 2024-03-11T23:08:37.381 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: RocksDB version: 7.9.2 2024-03-11T23:08:37.381 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Git sha 0 2024-03-11T23:08:37.381 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Compile date 2024-03-08 02:48:09 2024-03-11T23:08:37.381 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: DB SUMMARY 2024-03-11T23:08:37.381 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: DB Session ID: H5ESZWM62CWEBL3L4KIJ 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: CURRENT file: CURRENT 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: IDENTITY file: IDENTITY 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi165/store.db dir, Total Num: 0, files: 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi165/store.db: 000004.log size: 511 ; 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.error_if_exists: 0 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.create_if_missing: 0 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.paranoid_checks: 1 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.env: 0x55589de37ae0 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.fs: PosixFileSystem 2024-03-11T23:08:37.382 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.info_log: 0x55589f5c57a0 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.statistics: (nil) 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.use_fsync: 0 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_log_file_size: 0 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.allow_fallocate: 1 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.use_direct_reads: 0 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.create_missing_column_families: 0 2024-03-11T23:08:37.383 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.db_log_dir: 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.wal_dir: 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.advise_random_on_open: 1 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.write_buffer_manager: 0x55589f599400 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.rate_limiter: (nil) 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-03-11T23:08:37.384 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.unordered_write: 0 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.row_cache: None 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.wal_filter: None 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.two_write_queues: 0 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.manual_wal_flush: 0 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.wal_compression: 0 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.atomic_flush: 0 2024-03-11T23:08:37.385 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.log_readahead_size: 0 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-03-11T23:08:37.386 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_background_jobs: 2 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_background_compactions: -1 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_subcompactions: 1 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_total_wal_size: 0 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_open_files: -1 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bytes_per_sync: 0 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-03-11T23:08:37.387 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_background_flushes: -1 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Compression algorithms supported: 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: kZSTD supported: 0 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: kXpressCompression supported: 0 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: kZlibCompression supported: 1 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: kSnappyCompression supported: 1 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: kLZ4Compression supported: 1 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: kBZip2Compression supported: 0 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi165/store.db/MANIFEST-000005 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.merge_operator: 2024-03-11T23:08:37.388 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_filter: None 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_filter_factory: None 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55589f5c58c0) 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cache_index_and_filter_blocks: 1 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cache_index_and_filter_blocks_with_high_priority: 0 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: pin_top_level_index_and_filter: 1 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: index_type: 0 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: data_block_index_type: 0 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: index_shortening: 1 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: data_block_hash_table_util_ratio: 0.750000 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: checksum: 4 2024-03-11T23:08:37.389 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: no_block_cache: 0 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: block_cache: 0x55589f5c7090 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: block_cache_name: BinnedLRUCache 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: block_cache_options: 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: capacity : 536870912 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: num_shard_bits : 4 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: strict_capacity_limit : 0 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: high_pri_pool_ratio: 0.000 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: block_cache_compressed: (nil) 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: persistent_cache: (nil) 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: block_size: 4096 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: block_size_deviation: 10 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: block_restart_interval: 16 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: index_block_restart_interval: 1 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: metadata_block_size: 4096 2024-03-11T23:08:37.390 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: partition_filters: 0 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: use_delta_encoding: 1 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: filter_policy: bloomfilter 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: whole_key_filtering: 1 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: verify_compression: 0 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: read_amp_bytes_per_bit: 0 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: format_version: 5 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: enable_index_compression: 1 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: block_align: 0 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: max_auto_readahead_size: 262144 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: prepopulate_block_cache: 0 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: initial_auto_readahead_size: 8192 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: num_file_reads_for_auto_readahead: 2 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compression: NoCompression 2024-03-11T23:08:37.391 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.num_levels: 7 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-03-11T23:08:37.392 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compression_opts.level: 32767 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compression_opts.enabled: false 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-03-11T23:08:37.393 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.arena_block_size: 1048576 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-03-11T23:08:37.394 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.table_properties_collectors: 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.inplace_update_support: 0 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.bloom_locality: 0 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.max_successive_merges: 0 2024-03-11T23:08:37.395 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.force_consistency_checks: 1 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.ttl: 2592000 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.enable_blob_files: false 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.min_blob_size: 0 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.blob_file_size: 268435456 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-03-11T23:08:37.396 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi165/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-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: f6a6de8e-7640-4c0b-a7ab-783ad64b02b7 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1710198517365202, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1710198517365747, "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": 1710198517, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "f6a6de8e-7640-4c0b-a7ab-783ad64b02b7", "db_session_id": "H5ESZWM62CWEBL3L4KIJ", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1710198517365853, "job": 1, "event": "recovery_finished"} 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.361+0000 7f76c1645c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.365+0000 7f76c1645c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi165/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.365+0000 7f76c1645c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55589f6ba000 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.365+0000 7f76c1645c80 4 rocksdb: DB pointer 0x55589f6a6000 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.365+0000 7f76c1645c80 0 mon.smithi165 does not exist in monmap, will attempt to join an existing cluster 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.365+0000 7f76afdb5700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.365+0000 7f76afdb5700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-03-11T23:08:37.397 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: ** DB Stats ** 2024-03-11T23:08:37.398 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-11T23:08:37.398 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 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-11T23:08:37.398 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-11T23:08:37.398 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-11T23:08:37.398 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 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-11T23:08:37.398 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-11T23:08:37.398 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-11T23:08:37.398 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: ** Compaction Stats [default] ** 2024-03-11T23:08:37.398 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 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-11T23:08:37.398 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 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.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 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.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 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.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: ** Compaction Stats [default] ** 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 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-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 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.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Flush(GB): cumulative 0.000, interval 0.000 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: AddFile(GB): cumulative 0.000, interval 0.000 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: AddFile(Total Files): cumulative 0, interval 0 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: AddFile(L0 Files): cumulative 0, interval 0 2024-03-11T23:08:37.399 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: AddFile(Keys): cumulative 0, interval 0 2024-03-11T23:08:37.400 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Cumulative compaction: 0.00 GB write, 0.42 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-11T23:08:37.400 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Interval compaction: 0.00 GB write, 0.42 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-11T23:08:37.400 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 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-11T23:08:37.400 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Block cache BinnedLRUCache@0x55589f5c7090#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2024-03-11T23:08:37.400 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Block cache entry stats(count,size,portion): DataBlock(1,0.64 KB,0.00012219%) FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-03-11T23:08:37.400 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: ** File Read Latency Histogram By Level [default] ** 2024-03-11T23:08:37.400 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.365+0000 7f76c1645c80 0 using public_addr v2:172.21.15.165:0/0 -> [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] 2024-03-11T23:08:37.400 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.365+0000 7f76c1645c80 0 starting mon.smithi165 rank -1 at public addrs [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] at bind addrs [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi165 fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:08:37.400 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.365+0000 7f76c1645c80 1 mon.smithi165@-1(???) e0 preinit fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:08:37.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 0 mon.smithi165@-1(synchronizing).mds e1 new map 2024-03-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 0 mon.smithi165@-1(synchronizing).mds e1 print_map 2024-03-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: e1 2024-03-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: enable_multiple, ever_enabled_multiple: 1,1 2024-03-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 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-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: legacy client fscid: -1 2024-03-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: 2024-03-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: No filesystems configured 2024-03-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 1 mon.smithi165@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-03-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 1 mon.smithi165@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-03-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 1 mon.smithi165@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-03-11T23:08:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 1 mon.smithi165@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 1 mon.smithi165@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 1 mon.smithi165@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 1 mon.smithi165@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 0 mon.smithi165@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 0 mon.smithi165@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 0 mon.smithi165@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.393+0000 7f76b2dbb700 0 mon.smithi165@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:20.270377+0000 mon.smithi149 (mon.0) 185 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:20.276116+0000 mon.smithi149 (mon.0) 186 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:20.286146+0000 mon.smithi149 (mon.0) 187 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:20.291818+0000 mon.smithi149 (mon.0) 188 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:20.306374+0000 mon.smithi149 (mon.0) 189 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd/host:smithi165", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:08:37.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:20.308402+0000 mon.smithi149 (mon.0) 190 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:37.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:20.310169+0000 mon.smithi149 (mon.0) 191 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:08:37.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:20.313044+0000 mgr.smithi149.leptec (mgr.14197) 7 : cephadm 1 Updating smithi149:/etc/ceph/ceph.conf 2024-03-11T23:08:37.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:20.313615+0000 mgr.smithi149.leptec (mgr.14197) 8 : cephadm 1 Updating smithi165:/etc/ceph/ceph.conf 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:20.580025+0000 mgr.smithi149.leptec (mgr.14197) 9 : cephadm 1 Updating smithi149:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.conf 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:20.580438+0000 mgr.smithi149.leptec (mgr.14197) 10 : cephadm 1 Updating smithi165:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.conf 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:20.744725+0000 mgr.smithi149.leptec (mgr.14197) 11 : cephadm 1 Updating smithi149:/etc/ceph/ceph.client.admin.keyring 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:20.745959+0000 mgr.smithi149.leptec (mgr.14197) 12 : cephadm 1 Updating smithi165:/etc/ceph/ceph.client.admin.keyring 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:20.909556+0000 mgr.smithi149.leptec (mgr.14197) 13 : cephadm 1 Updating smithi149:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.client.admin.keyring 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:20.911027+0000 mgr.smithi149.leptec (mgr.14197) 14 : cephadm 1 Updating smithi165:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.client.admin.keyring 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.081796+0000 mon.smithi149 (mon.0) 192 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.086824+0000 mon.smithi149 (mon.0) 193 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.092730+0000 mon.smithi149 (mon.0) 194 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.097140+0000 mon.smithi149 (mon.0) 195 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.102403+0000 mon.smithi149 (mon.0) 196 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.104561+0000 mon.smithi149 (mon.0) 197 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi165", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.106072+0000 mon.smithi149 (mon.0) 198 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi165", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.110073+0000 mon.smithi149 (mon.0) 199 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:37.563 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:21.111476+0000 mgr.smithi149.leptec (mgr.14197) 15 : cephadm 1 Deploying daemon ceph-exporter.smithi165 on smithi165 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:21.558020+0000 mgr.smithi149.leptec (mgr.14197) 16 : cephadm 1 Removing key for client.ceph-exporter.smithi165 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.558707+0000 mon.smithi149 (mon.0) 200 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi165"}]: dispatch 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.560378+0000 mon.smithi149 (mon.0) 201 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi165"}]': finished 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:21.576408+0000 mgr.smithi149.leptec (mgr.14197) 17 : cephadm 4 Failed while placing ceph-exporter.smithi165 on smithi165: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: /usr/bin/docker: stdout 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: /usr/bin/docker: stdout 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: Deploy daemon ceph-exporter.smithi165 ... 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: ERROR: Directory does not exist. Got: /var/run/ceph/ 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.580580+0000 mon.smithi149 (mon.0) 202 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi165", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.582223+0000 mon.smithi149 (mon.0) 203 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi165", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:21.586684+0000 mon.smithi149 (mon.0) 204 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:37.564 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:21.588716+0000 mgr.smithi149.leptec (mgr.14197) 18 : cephadm 1 Deploying daemon crash.smithi165 on smithi165 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:24.223830+0000 mon.smithi149 (mon.0) 205 : audit 0 from='client.? 172.21.15.165:0/2940377131' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:25.292035+0000 mon.smithi149 (mon.0) 206 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:25.295018+0000 mon.smithi149 (mon.0) 207 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:25.518201+0000 mon.smithi149 (mon.0) 208 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:25.524869+0000 mon.smithi149 (mon.0) 209 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:25.569441+0000 mon.smithi149 (mon.0) 210 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:25.575488+0000 mon.smithi149 (mon.0) 211 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:25.578955+0000 mgr.smithi149.leptec (mgr.14197) 19 : cephadm 1 Deploying daemon node-exporter.smithi165 on smithi165 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:26.709448+0000 mon.smithi149 (mon.0) 212 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:26.718196+0000 mon.smithi149 (mon.0) 213 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:26.754314+0000 mon.smithi149 (mon.0) 214 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:26.761775+0000 mon.smithi149 (mon.0) 215 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:26.764995+0000 mon.smithi149 (mon.0) 216 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi165.tfkohn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:26.769237+0000 mon.smithi149 (mon.0) 217 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi165.tfkohn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-03-11T23:08:37.565 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:26.773415+0000 mon.smithi149 (mon.0) 218 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:26.774852+0000 mon.smithi149 (mon.0) 219 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:26.776648+0000 mgr.smithi149.leptec (mgr.14197) 20 : cephadm 1 Deploying daemon mgr.smithi165.tfkohn on smithi165 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:29.932570+0000 mon.smithi149 (mon.0) 220 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:29.939383+0000 mon.smithi149 (mon.0) 221 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:29.954172+0000 mon.smithi149 (mon.0) 222 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:29.960278+0000 mon.smithi149 (mon.0) 223 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:29.963900+0000 mon.smithi149 (mon.0) 224 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:29.965617+0000 mon.smithi149 (mon.0) 225 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cephadm 2024-03-11T23:08:29.967631+0000 mgr.smithi149.leptec (mgr.14197) 21 : cephadm 1 Deploying daemon mon.smithi165 on smithi165 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:30.299727+0000 mon.smithi149 (mon.0) 226 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cluster 2024-03-11T23:08:31.578596+0000 mgr.smithi149.leptec (mgr.14197) 22 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cluster 2024-03-11T23:08:31.929752+0000 mon.smithi149 (mon.0) 227 : cluster 3 Health check failed: Failed to place 1 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cluster 2024-03-11T23:08:33.579254+0000 mgr.smithi149.leptec (mgr.14197) 23 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:34.695624+0000 mon.smithi149 (mon.0) 228 : audit 0 from='client.? 172.21.15.165:0/1831375736' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-11T23:08:37.566 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: cluster 2024-03-11T23:08:35.579809+0000 mgr.smithi149.leptec (mgr.14197) 24 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:37.567 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:36.356039+0000 mon.smithi149 (mon.0) 229 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.567 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:36.362953+0000 mon.smithi149 (mon.0) 230 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.567 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:36.404973+0000 mon.smithi149 (mon.0) 231 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.567 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:36.411142+0000 mon.smithi149 (mon.0) 232 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.567 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:36.421251+0000 mon.smithi149 (mon.0) 233 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.567 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: audit 2024-03-11T23:08:36.489238+0000 mon.smithi149 (mon.0) 234 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:08:37.567 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:37 smithi165 bash[22892]: debug 2024-03-11T23:08:37.397+0000 7f76b2dbb700 1 mon.smithi165@-1(synchronizing).paxosservice(auth 1..9) refresh upgraded, format 0 -> 3 2024-03-11T23:08:37.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:37 smithi149 bash[18736]: audit 2024-03-11T23:08:36.356039+0000 mon.smithi149 (mon.0) 229 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:37 smithi149 bash[18736]: audit 2024-03-11T23:08:36.362953+0000 mon.smithi149 (mon.0) 230 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:37 smithi149 bash[18736]: audit 2024-03-11T23:08:36.404973+0000 mon.smithi149 (mon.0) 231 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:37 smithi149 bash[18736]: audit 2024-03-11T23:08:36.411142+0000 mon.smithi149 (mon.0) 232 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:37 smithi149 bash[18736]: audit 2024-03-11T23:08:36.421251+0000 mon.smithi149 (mon.0) 233 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:37.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:37 smithi149 bash[18736]: audit 2024-03-11T23:08:36.489238+0000 mon.smithi149 (mon.0) 234 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:08:41.433 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi165/config 2024-03-11T23:08:42.698 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:37.402408+0000 mon.smithi149 (mon.0) 235 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.698 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:37.407179+0000 mon.smithi149 (mon.0) 236 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2024-03-11T23:08:42.698 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:37.407513+0000 mon.smithi149 (mon.0) 237 : cluster 1 mon.smithi149 calling monitor election 2024-03-11T23:08:42.698 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:37.409417+0000 mon.smithi149 (mon.0) 238 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.698 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:37.580278+0000 mgr.smithi149.leptec (mgr.14197) 25 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:42.698 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:38.402423+0000 mon.smithi149 (mon.0) 239 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.698 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:39.402517+0000 mon.smithi149 (mon.0) 240 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.698 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:39.405492+0000 mon.smithi165 (mon.1) 1 : cluster 1 mon.smithi165 calling monitor election 2024-03-11T23:08:42.698 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:39.580693+0000 mgr.smithi149.leptec (mgr.14197) 26 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:42.699 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:40.250901+0000 mon.smithi149 (mon.0) 241 : audit 0 from='mgr.? 172.21.15.165:0/2553961682' entity='mgr.smithi165.tfkohn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi165.tfkohn/crt"}]: dispatch 2024-03-11T23:08:42.699 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:40.402713+0000 mon.smithi149 (mon.0) 242 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.699 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:41.402984+0000 mon.smithi149 (mon.0) 243 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.699 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:41.581182+0000 mgr.smithi149.leptec (mgr.14197) 27 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:42.699 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.403207+0000 mon.smithi149 (mon.0) 244 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.699 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.431143+0000 mon.smithi149 (mon.0) 245 : cluster 1 mon.smithi149 is new leader, mons smithi149,smithi165 in quorum (ranks 0,1) 2024-03-11T23:08:42.699 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.437934+0000 mon.smithi149 (mon.0) 246 : cluster 0 monmap e2: 2 mons at {smithi149=[v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0],smithi165=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-03-11T23:08:42.699 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.461089+0000 mon.smithi149 (mon.0) 247 : cluster 0 fsmap 2024-03-11T23:08:42.699 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.461182+0000 mon.smithi149 (mon.0) 248 : cluster 0 osdmap e5: 0 total, 0 up, 0 in 2024-03-11T23:08:42.699 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.461514+0000 mon.smithi149 (mon.0) 249 : cluster 0 mgrmap e17: smithi149.leptec(active, since 32s) 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.461870+0000 mon.smithi149 (mon.0) 250 : cluster 3 Health detail: HEALTH_WARN Failed to place 1 daemon(s) 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.461924+0000 mon.smithi149 (mon.0) 251 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.461964+0000 mon.smithi149 (mon.0) 252 : cluster 3 Failed while placing ceph-exporter.smithi165 on smithi165: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.462010+0000 mon.smithi149 (mon.0) 253 : cluster 3 /usr/bin/docker: stdout 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.462053+0000 mon.smithi149 (mon.0) 254 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.462097+0000 mon.smithi149 (mon.0) 255 : cluster 3 Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.462132+0000 mon.smithi149 (mon.0) 256 : cluster 3 /usr/bin/docker: stdout 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.462176+0000 mon.smithi149 (mon.0) 257 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.462220+0000 mon.smithi149 (mon.0) 258 : cluster 3 Deploy daemon ceph-exporter.smithi165 ... 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.462264+0000 mon.smithi149 (mon.0) 259 : cluster 3 ERROR: Directory does not exist. Got: /var/run/ceph/ 2024-03-11T23:08:42.700 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.464592+0000 mon.smithi149 (mon.0) 260 : cluster 0 Standby manager daemon smithi165.tfkohn started 2024-03-11T23:08:42.701 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.472353+0000 mon.smithi149 (mon.0) 261 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:42.701 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.475729+0000 mon.smithi149 (mon.0) 262 : audit 0 from='mgr.? 172.21.15.165:0/2553961682' entity='mgr.smithi165.tfkohn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-03-11T23:08:42.701 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.479344+0000 mon.smithi149 (mon.0) 263 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:42.701 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.481244+0000 mon.smithi149 (mon.0) 264 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:08:42.701 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.482006+0000 mon.smithi149 (mon.0) 265 : audit 0 from='mgr.? 172.21.15.165:0/2553961682' entity='mgr.smithi165.tfkohn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi165.tfkohn/key"}]: dispatch 2024-03-11T23:08:42.701 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.483018+0000 mon.smithi149 (mon.0) 266 : audit 0 from='mgr.? 172.21.15.165:0/2553961682' entity='mgr.smithi165.tfkohn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-03-11T23:08:42.701 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.486810+0000 mon.smithi149 (mon.0) 267 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:42.701 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.495558+0000 mon.smithi149 (mon.0) 268 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:42.701 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.503201+0000 mon.smithi149 (mon.0) 269 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:42.701 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:42 smithi165 bash[22892]: audit 2024-03-11T23:08:42.505281+0000 mon.smithi149 (mon.0) 270 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:08:42.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:37.402408+0000 mon.smithi149 (mon.0) 235 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:37.407179+0000 mon.smithi149 (mon.0) 236 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2024-03-11T23:08:42.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:37.407513+0000 mon.smithi149 (mon.0) 237 : cluster 1 mon.smithi149 calling monitor election 2024-03-11T23:08:42.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:37.409417+0000 mon.smithi149 (mon.0) 238 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:37.580278+0000 mgr.smithi149.leptec (mgr.14197) 25 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:42.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:38.402423+0000 mon.smithi149 (mon.0) 239 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:39.402517+0000 mon.smithi149 (mon.0) 240 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:39.405492+0000 mon.smithi165 (mon.1) 1 : cluster 1 mon.smithi165 calling monitor election 2024-03-11T23:08:42.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:39.580693+0000 mgr.smithi149.leptec (mgr.14197) 26 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:42.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:40.250901+0000 mon.smithi149 (mon.0) 241 : audit 0 from='mgr.? 172.21.15.165:0/2553961682' entity='mgr.smithi165.tfkohn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi165.tfkohn/crt"}]: dispatch 2024-03-11T23:08:42.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:40.402713+0000 mon.smithi149 (mon.0) 242 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:41.402984+0000 mon.smithi149 (mon.0) 243 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:41.581182+0000 mgr.smithi149.leptec (mgr.14197) 27 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:42.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.403207+0000 mon.smithi149 (mon.0) 244 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:42.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.431143+0000 mon.smithi149 (mon.0) 245 : cluster 1 mon.smithi149 is new leader, mons smithi149,smithi165 in quorum (ranks 0,1) 2024-03-11T23:08:42.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.437934+0000 mon.smithi149 (mon.0) 246 : cluster 0 monmap e2: 2 mons at {smithi149=[v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0],smithi165=[v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-03-11T23:08:42.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.461089+0000 mon.smithi149 (mon.0) 247 : cluster 0 fsmap 2024-03-11T23:08:42.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.461182+0000 mon.smithi149 (mon.0) 248 : cluster 0 osdmap e5: 0 total, 0 up, 0 in 2024-03-11T23:08:42.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.461514+0000 mon.smithi149 (mon.0) 249 : cluster 0 mgrmap e17: smithi149.leptec(active, since 32s) 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.461870+0000 mon.smithi149 (mon.0) 250 : cluster 3 Health detail: HEALTH_WARN Failed to place 1 daemon(s) 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.461924+0000 mon.smithi149 (mon.0) 251 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.461964+0000 mon.smithi149 (mon.0) 252 : cluster 3 Failed while placing ceph-exporter.smithi165 on smithi165: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.462010+0000 mon.smithi149 (mon.0) 253 : cluster 3 /usr/bin/docker: stdout 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.462053+0000 mon.smithi149 (mon.0) 254 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.462097+0000 mon.smithi149 (mon.0) 255 : cluster 3 Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.462132+0000 mon.smithi149 (mon.0) 256 : cluster 3 /usr/bin/docker: stdout 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.462176+0000 mon.smithi149 (mon.0) 257 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.462220+0000 mon.smithi149 (mon.0) 258 : cluster 3 Deploy daemon ceph-exporter.smithi165 ... 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.462264+0000 mon.smithi149 (mon.0) 259 : cluster 3 ERROR: Directory does not exist. Got: /var/run/ceph/ 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.464592+0000 mon.smithi149 (mon.0) 260 : cluster 0 Standby manager daemon smithi165.tfkohn started 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.472353+0000 mon.smithi149 (mon.0) 261 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.475729+0000 mon.smithi149 (mon.0) 262 : audit 0 from='mgr.? 172.21.15.165:0/2553961682' entity='mgr.smithi165.tfkohn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-03-11T23:08:43.000 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.479344+0000 mon.smithi149 (mon.0) 263 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.001 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.481244+0000 mon.smithi149 (mon.0) 264 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:08:43.001 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.482006+0000 mon.smithi149 (mon.0) 265 : audit 0 from='mgr.? 172.21.15.165:0/2553961682' entity='mgr.smithi165.tfkohn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi165.tfkohn/key"}]: dispatch 2024-03-11T23:08:43.001 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.483018+0000 mon.smithi149 (mon.0) 266 : audit 0 from='mgr.? 172.21.15.165:0/2553961682' entity='mgr.smithi165.tfkohn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-03-11T23:08:43.001 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.486810+0000 mon.smithi149 (mon.0) 267 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.001 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.495558+0000 mon.smithi149 (mon.0) 268 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.001 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.503201+0000 mon.smithi149 (mon.0) 269 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:43.001 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:42 smithi149 bash[18736]: audit 2024-03-11T23:08:42.505281+0000 mon.smithi149 (mon.0) 270 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: cephadm 2024-03-11T23:08:42.508081+0000 mgr.smithi149.leptec (mgr.14197) 28 : cephadm 1 Updating smithi149:/etc/ceph/ceph.conf 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: cephadm 2024-03-11T23:08:42.508550+0000 mgr.smithi149.leptec (mgr.14197) 29 : cephadm 1 Updating smithi165:/etc/ceph/ceph.conf 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.544728+0000 mon.smithi149 (mon.0) 271 : cluster 0 mgrmap e18: smithi149.leptec(active, since 32s), standbys: smithi165.tfkohn 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: audit 2024-03-11T23:08:42.545045+0000 mon.smithi149 (mon.0) 272 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr metadata", "who": "smithi165.tfkohn", "id": "smithi165.tfkohn"}]: dispatch 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: cephadm 2024-03-11T23:08:42.775894+0000 mgr.smithi149.leptec (mgr.14197) 30 : cephadm 1 Updating smithi165:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.conf 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: cephadm 2024-03-11T23:08:42.776416+0000 mgr.smithi149.leptec (mgr.14197) 31 : cephadm 1 Updating smithi149:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.conf 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: audit 2024-03-11T23:08:42.948193+0000 mon.smithi149 (mon.0) 273 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: audit 2024-03-11T23:08:42.954318+0000 mon.smithi149 (mon.0) 274 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: audit 2024-03-11T23:08:42.960639+0000 mon.smithi149 (mon.0) 275 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: audit 2024-03-11T23:08:42.967289+0000 mon.smithi149 (mon.0) 276 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: audit 2024-03-11T23:08:42.973662+0000 mon.smithi149 (mon.0) 277 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: audit 2024-03-11T23:08:42.975496+0000 mon.smithi149 (mon.0) 278 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi165", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-11T23:08:43.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: audit 2024-03-11T23:08:42.977161+0000 mon.smithi149 (mon.0) 279 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi165", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-03-11T23:08:43.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: audit 2024-03-11T23:08:42.981360+0000 mon.smithi149 (mon.0) 280 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:43.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:43 smithi165 bash[22892]: audit 2024-03-11T23:08:43.403274+0000 mon.smithi149 (mon.0) 281 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:43.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: cephadm 2024-03-11T23:08:42.508081+0000 mgr.smithi149.leptec (mgr.14197) 28 : cephadm 1 Updating smithi149:/etc/ceph/ceph.conf 2024-03-11T23:08:43.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: cephadm 2024-03-11T23:08:42.508550+0000 mgr.smithi149.leptec (mgr.14197) 29 : cephadm 1 Updating smithi165:/etc/ceph/ceph.conf 2024-03-11T23:08:43.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.544728+0000 mon.smithi149 (mon.0) 271 : cluster 0 mgrmap e18: smithi149.leptec(active, since 32s), standbys: smithi165.tfkohn 2024-03-11T23:08:43.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: audit 2024-03-11T23:08:42.545045+0000 mon.smithi149 (mon.0) 272 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr metadata", "who": "smithi165.tfkohn", "id": "smithi165.tfkohn"}]: dispatch 2024-03-11T23:08:43.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: cephadm 2024-03-11T23:08:42.775894+0000 mgr.smithi149.leptec (mgr.14197) 30 : cephadm 1 Updating smithi165:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.conf 2024-03-11T23:08:43.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: cephadm 2024-03-11T23:08:42.776416+0000 mgr.smithi149.leptec (mgr.14197) 31 : cephadm 1 Updating smithi149:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/config/ceph.conf 2024-03-11T23:08:43.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: audit 2024-03-11T23:08:42.948193+0000 mon.smithi149 (mon.0) 273 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: audit 2024-03-11T23:08:42.954318+0000 mon.smithi149 (mon.0) 274 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: audit 2024-03-11T23:08:42.960639+0000 mon.smithi149 (mon.0) 275 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: audit 2024-03-11T23:08:42.967289+0000 mon.smithi149 (mon.0) 276 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: audit 2024-03-11T23:08:42.973662+0000 mon.smithi149 (mon.0) 277 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:43.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: audit 2024-03-11T23:08:42.975496+0000 mon.smithi149 (mon.0) 278 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi165", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-11T23:08:43.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: audit 2024-03-11T23:08:42.977161+0000 mon.smithi149 (mon.0) 279 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi165", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-03-11T23:08:43.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: audit 2024-03-11T23:08:42.981360+0000 mon.smithi149 (mon.0) 280 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:43.999 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:43 smithi149 bash[18736]: audit 2024-03-11T23:08:43.403274+0000 mon.smithi149 (mon.0) 281 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:08:44.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:44 smithi165 bash[22892]: cluster 2024-03-11T23:08:42.974248+0000 mgr.smithi149.leptec (mgr.14197) 32 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:44.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:44 smithi165 bash[22892]: cephadm 2024-03-11T23:08:42.982727+0000 mgr.smithi149.leptec (mgr.14197) 33 : cephadm 1 Deploying daemon ceph-exporter.smithi165 on smithi165 2024-03-11T23:08:44.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:44 smithi165 bash[22892]: cluster 2024-03-11T23:08:43.970626+0000 mon.smithi149 (mon.0) 282 : cluster 1 Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 1 daemon(s)) 2024-03-11T23:08:44.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:44 smithi165 bash[22892]: cluster 2024-03-11T23:08:43.970679+0000 mon.smithi149 (mon.0) 283 : cluster 1 Cluster is now healthy 2024-03-11T23:08:44.986 INFO:teuthology.orchestra.run.smithi165.stdout: 2024-03-11T23:08:44.987 INFO:teuthology.orchestra.run.smithi165.stdout:{"epoch":2,"fsid":"ad95ae2e-dffb-11ee-95c8-87774f69a715","modified":"2024-03-11T23:08:37.401699Z","created":"2024-03-11T23:05:20.650764Z","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":"smithi149","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:3300","nonce":0},{"type":"v1","addr":"172.21.15.149:6789","nonce":0}]},"addr":"172.21.15.149:6789/0","public_addr":"172.21.15.149:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi165","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:3300","nonce":0},{"type":"v1","addr":"172.21.15.165:6789","nonce":0}]},"addr":"172.21.15.165:6789/0","public_addr":"172.21.15.165:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-03-11T23:08:44.990 INFO:teuthology.orchestra.run.smithi165.stderr:dumped monmap epoch 2 2024-03-11T23:08:44.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:44 smithi149 bash[18736]: cluster 2024-03-11T23:08:42.974248+0000 mgr.smithi149.leptec (mgr.14197) 32 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:44.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:44 smithi149 bash[18736]: cephadm 2024-03-11T23:08:42.982727+0000 mgr.smithi149.leptec (mgr.14197) 33 : cephadm 1 Deploying daemon ceph-exporter.smithi165 on smithi165 2024-03-11T23:08:44.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:44 smithi149 bash[18736]: cluster 2024-03-11T23:08:43.970626+0000 mon.smithi149 (mon.0) 282 : cluster 1 Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 1 daemon(s)) 2024-03-11T23:08:44.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:44 smithi149 bash[18736]: cluster 2024-03-11T23:08:43.970679+0000 mon.smithi149 (mon.0) 283 : cluster 1 Cluster is now healthy 2024-03-11T23:08:45.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:45 smithi165 bash[22892]: audit 2024-03-11T23:08:44.982897+0000 mon.smithi149 (mon.0) 284 : audit 0 from='client.? 172.21.15.165:0/3967855214' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-11T23:08:45.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:45 smithi149 bash[18736]: audit 2024-03-11T23:08:44.982897+0000 mon.smithi149 (mon.0) 284 : audit 0 from='client.? 172.21.15.165:0/3967855214' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-11T23:08:45.999 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-03-11T23:08:45.999 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph config generate-minimal-conf 2024-03-11T23:08:46.150 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:46 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:08:46.441 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:46 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:08:46.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:46 smithi165 bash[22892]: cluster 2024-03-11T23:08:44.974621+0000 mgr.smithi149.leptec (mgr.14197) 34 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:46.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:46 smithi165 bash[22892]: audit 2024-03-11T23:08:46.446209+0000 mon.smithi149 (mon.0) 285 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:46.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:46 smithi165 bash[22892]: audit 2024-03-11T23:08:46.455045+0000 mon.smithi149 (mon.0) 286 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:46.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:46 smithi165 bash[22892]: audit 2024-03-11T23:08:46.511254+0000 mon.smithi149 (mon.0) 287 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:46.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:46 smithi165 bash[22892]: audit 2024-03-11T23:08:46.518171+0000 mon.smithi149 (mon.0) 288 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:46.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:46 smithi149 bash[18736]: cluster 2024-03-11T23:08:44.974621+0000 mgr.smithi149.leptec (mgr.14197) 34 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:46.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:46 smithi149 bash[18736]: audit 2024-03-11T23:08:46.446209+0000 mon.smithi149 (mon.0) 285 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:46.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:46 smithi149 bash[18736]: audit 2024-03-11T23:08:46.455045+0000 mon.smithi149 (mon.0) 286 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:46.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:46 smithi149 bash[18736]: audit 2024-03-11T23:08:46.511254+0000 mon.smithi149 (mon.0) 287 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:46.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:46 smithi149 bash[18736]: audit 2024-03-11T23:08:46.518171+0000 mon.smithi149 (mon.0) 288 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:47.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:47 smithi165 bash[22892]: audit 2024-03-11T23:08:46.594868+0000 mon.smithi149 (mon.0) 289 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:08:47.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:47 smithi165 bash[22892]: audit 2024-03-11T23:08:47.487830+0000 mon.smithi149 (mon.0) 290 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:47.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:47 smithi149 bash[18736]: audit 2024-03-11T23:08:46.594868+0000 mon.smithi149 (mon.0) 289 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:08:47.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:47 smithi149 bash[18736]: audit 2024-03-11T23:08:47.487830+0000 mon.smithi149 (mon.0) 290 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:48.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:48 smithi149 bash[18736]: cluster 2024-03-11T23:08:46.975006+0000 mgr.smithi149.leptec (mgr.14197) 35 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:49.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:48 smithi165 bash[22892]: cluster 2024-03-11T23:08:46.975006+0000 mgr.smithi149.leptec (mgr.14197) 35 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:50.761 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:08:50.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:50 smithi149 bash[18736]: cluster 2024-03-11T23:08:48.975430+0000 mgr.smithi149.leptec (mgr.14197) 36 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:51.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:50 smithi165 bash[22892]: cluster 2024-03-11T23:08:48.975430+0000 mgr.smithi149.leptec (mgr.14197) 36 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:52 smithi149 bash[18736]: cluster 2024-03-11T23:08:50.975764+0000 mgr.smithi149.leptec (mgr.14197) 37 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:52.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:52 smithi149 bash[18736]: audit 2024-03-11T23:08:51.988918+0000 mon.smithi149 (mon.0) 291 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:52.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:52 smithi149 bash[18736]: audit 2024-03-11T23:08:51.999923+0000 mon.smithi149 (mon.0) 292 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:52.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:52 smithi149 bash[18736]: audit 2024-03-11T23:08:52.002167+0000 mon.smithi149 (mon.0) 293 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:52.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:52 smithi149 bash[18736]: audit 2024-03-11T23:08:52.004102+0000 mon.smithi149 (mon.0) 294 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:08:52.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:52 smithi149 bash[18736]: audit 2024-03-11T23:08:52.014777+0000 mon.smithi149 (mon.0) 295 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:52.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:52 smithi149 bash[18736]: audit 2024-03-11T23:08:52.092624+0000 mon.smithi149 (mon.0) 296 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-11T23:08:52.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:52 smithi149 bash[18736]: audit 2024-03-11T23:08:52.094357+0000 mon.smithi149 (mon.0) 297 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-11T23:08:52.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:52 smithi149 bash[18736]: audit 2024-03-11T23:08:52.095991+0000 mon.smithi149 (mon.0) 298 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:52.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:52 smithi165 bash[22892]: cluster 2024-03-11T23:08:50.975764+0000 mgr.smithi149.leptec (mgr.14197) 37 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:52.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:52 smithi165 bash[22892]: audit 2024-03-11T23:08:51.988918+0000 mon.smithi149 (mon.0) 291 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:52.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:52 smithi165 bash[22892]: audit 2024-03-11T23:08:51.999923+0000 mon.smithi149 (mon.0) 292 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:52.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:52 smithi165 bash[22892]: audit 2024-03-11T23:08:52.002167+0000 mon.smithi149 (mon.0) 293 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:52.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:52 smithi165 bash[22892]: audit 2024-03-11T23:08:52.004102+0000 mon.smithi149 (mon.0) 294 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:08:52.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:52 smithi165 bash[22892]: audit 2024-03-11T23:08:52.014777+0000 mon.smithi149 (mon.0) 295 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:52.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:52 smithi165 bash[22892]: audit 2024-03-11T23:08:52.092624+0000 mon.smithi149 (mon.0) 296 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-11T23:08:52.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:52 smithi165 bash[22892]: audit 2024-03-11T23:08:52.094357+0000 mon.smithi149 (mon.0) 297 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-11T23:08:52.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:52 smithi165 bash[22892]: audit 2024-03-11T23:08:52.095991+0000 mon.smithi149 (mon.0) 298 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:53.951 INFO:teuthology.orchestra.run.smithi149.stdout:# minimal ceph.conf for ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:08:53.951 INFO:teuthology.orchestra.run.smithi149.stdout:[global] 2024-03-11T23:08:53.951 INFO:teuthology.orchestra.run.smithi149.stdout: fsid = ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:08:53.951 INFO:teuthology.orchestra.run.smithi149.stdout: mon_host = [v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0] [v2:172.21.15.165:3300/0,v1:172.21.15.165:6789/0] 2024-03-11T23:08:53.961 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:53 smithi149 bash[18736]: cephadm 2024-03-11T23:08:52.091789+0000 mgr.smithi149.leptec (mgr.14197) 38 : cephadm 1 Reconfiguring mon.smithi149 (unknown last config time)... 2024-03-11T23:08:53.961 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:53 smithi149 bash[18736]: cephadm 2024-03-11T23:08:52.097990+0000 mgr.smithi149.leptec (mgr.14197) 39 : cephadm 1 Reconfiguring daemon mon.smithi149 on smithi149 2024-03-11T23:08:54.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:53 smithi165 bash[22892]: cephadm 2024-03-11T23:08:52.091789+0000 mgr.smithi149.leptec (mgr.14197) 38 : cephadm 1 Reconfiguring mon.smithi149 (unknown last config time)... 2024-03-11T23:08:54.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:53 smithi165 bash[22892]: cephadm 2024-03-11T23:08:52.097990+0000 mgr.smithi149.leptec (mgr.14197) 39 : cephadm 1 Reconfiguring daemon mon.smithi149 on smithi149 2024-03-11T23:08:54.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:54 smithi149 bash[18736]: cluster 2024-03-11T23:08:52.976269+0000 mgr.smithi149.leptec (mgr.14197) 40 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:54.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:54 smithi149 bash[18736]: audit 2024-03-11T23:08:53.947756+0000 mon.smithi149 (mon.0) 299 : audit 0 from='client.? 172.21.15.149:0/2076940685' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:55.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:54 smithi165 bash[22892]: cluster 2024-03-11T23:08:52.976269+0000 mgr.smithi149.leptec (mgr.14197) 40 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:55.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:54 smithi165 bash[22892]: audit 2024-03-11T23:08:53.947756+0000 mon.smithi149 (mon.0) 299 : audit 0 from='client.? 172.21.15.149:0/2076940685' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:55.063 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-03-11T23:08:55.064 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:08:55.064 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/etc/ceph/ceph.conf 2024-03-11T23:08:55.076 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:08:55.077 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-11T23:08:55.236 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T23:08:55.236 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/ceph/ceph.conf 2024-03-11T23:08:55.251 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T23:08:55.251 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-11T23:08:55.306 INFO:tasks.cephadm:Deploying OSDs... 2024-03-11T23:08:55.306 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:08:55.306 DEBUG:teuthology.orchestra.run.smithi149:> dd if=/scratch_devs of=/dev/stdout 2024-03-11T23:08:55.312 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-11T23:08:55.312 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/nvme1n1 2024-03-11T23:08:55.360 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/nvme1n1 2024-03-11T23:08:55.360 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-11T23:08:55.360 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 965 Links: 1 Device type: 103,2 2024-03-11T23:08:55.360 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-11T23:08:55.360 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2024-03-11 23:06:55.469783475 +0000 2024-03-11T23:08:55.360 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2024-03-11 23:04:11.849764435 +0000 2024-03-11T23:08:55.360 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2024-03-11 23:04:11.849764435 +0000 2024-03-11T23:08:55.360 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2024-03-11T23:08:55.361 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-03-11T23:08:55.414 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2024-03-11T23:08:55.414 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2024-03-11T23:08:55.414 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000509114 s, 1.0 MB/s 2024-03-11T23:08:55.416 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-03-11T23:08:55.465 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/nvme2n1 2024-03-11T23:08:55.511 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/nvme2n1 2024-03-11T23:08:55.511 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-11T23:08:55.511 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 974 Links: 1 Device type: 103,4 2024-03-11T23:08:55.511 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-11T23:08:55.511 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2024-03-11 23:06:55.485783332 +0000 2024-03-11T23:08:55.512 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2024-03-11 23:04:11.945715577 +0000 2024-03-11T23:08:55.512 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2024-03-11 23:04:11.945715577 +0000 2024-03-11T23:08:55.512 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2024-03-11T23:08:55.512 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-03-11T23:08:55.566 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2024-03-11T23:08:55.566 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2024-03-11T23:08:55.566 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000412248 s, 1.2 MB/s 2024-03-11T23:08:55.567 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-03-11T23:08:55.617 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/nvme3n1 2024-03-11T23:08:55.667 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/nvme3n1 2024-03-11T23:08:55.667 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-11T23:08:55.667 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 983 Links: 1 Device type: 103,6 2024-03-11T23:08:55.668 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-11T23:08:55.668 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2024-03-11 23:06:55.505783154 +0000 2024-03-11T23:08:55.668 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2024-03-11 23:04:12.037668756 +0000 2024-03-11T23:08:55.668 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2024-03-11 23:04:12.037668756 +0000 2024-03-11T23:08:55.668 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2024-03-11T23:08:55.668 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-03-11T23:08:55.719 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:55 smithi149 bash[18736]: audit 2024-03-11T23:08:54.655723+0000 mon.smithi149 (mon.0) 300 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:55.719 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:55 smithi149 bash[18736]: audit 2024-03-11T23:08:54.663584+0000 mon.smithi149 (mon.0) 301 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:55.720 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:55 smithi149 bash[18736]: cephadm 2024-03-11T23:08:54.667130+0000 mgr.smithi149.leptec (mgr.14197) 41 : cephadm 1 Reconfiguring mgr.smithi149.leptec (unknown last config time)... 2024-03-11T23:08:55.720 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:55 smithi149 bash[18736]: audit 2024-03-11T23:08:54.667740+0000 mon.smithi149 (mon.0) 302 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi149.leptec", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-11T23:08:55.720 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:55 smithi149 bash[18736]: audit 2024-03-11T23:08:54.669372+0000 mon.smithi149 (mon.0) 303 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-11T23:08:55.720 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:55 smithi149 bash[18736]: audit 2024-03-11T23:08:54.670619+0000 mon.smithi149 (mon.0) 304 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:55.720 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:55 smithi149 bash[18736]: cephadm 2024-03-11T23:08:54.672148+0000 mgr.smithi149.leptec (mgr.14197) 42 : cephadm 1 Reconfiguring daemon mgr.smithi149.leptec on smithi149 2024-03-11T23:08:55.720 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:55 smithi149 bash[18736]: audit 2024-03-11T23:08:55.301591+0000 mon.smithi149 (mon.0) 305 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:55.720 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:55 smithi149 bash[18736]: audit 2024-03-11T23:08:55.303155+0000 mon.smithi149 (mon.0) 306 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:08:55.722 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2024-03-11T23:08:55.722 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2024-03-11T23:08:55.722 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000488888 s, 1.0 MB/s 2024-03-11T23:08:55.723 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-03-11T23:08:55.772 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/nvme4n1 2024-03-11T23:08:55.819 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/nvme4n1 2024-03-11T23:08:55.819 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-11T23:08:55.819 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 992 Links: 1 Device type: 103,8 2024-03-11T23:08:55.819 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-11T23:08:55.819 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2024-03-11 23:06:55.521783011 +0000 2024-03-11T23:08:55.819 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2024-03-11 23:04:12.129621934 +0000 2024-03-11T23:08:55.820 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2024-03-11 23:04:12.129621934 +0000 2024-03-11T23:08:55.820 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2024-03-11T23:08:55.820 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-03-11T23:08:55.873 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2024-03-11T23:08:55.873 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2024-03-11T23:08:55.873 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000344889 s, 1.5 MB/s 2024-03-11T23:08:55.874 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-03-11T23:08:55.924 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T23:08:55.925 DEBUG:teuthology.orchestra.run.smithi165:> dd if=/scratch_devs of=/dev/stdout 2024-03-11T23:08:55.931 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-11T23:08:55.931 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/nvme1n1 2024-03-11T23:08:55.978 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/nvme1n1 2024-03-11T23:08:55.978 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-11T23:08:55.978 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 969 Links: 1 Device type: 103,2 2024-03-11T23:08:55.978 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-11T23:08:55.978 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-03-11 23:08:19.057925713 +0000 2024-03-11T23:08:55.978 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-03-11 23:04:13.148943943 +0000 2024-03-11T23:08:55.978 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-03-11 23:04:13.148943943 +0000 2024-03-11T23:08:55.978 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-03-11T23:08:55.979 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-03-11T23:08:56.030 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:55 smithi165 bash[22892]: audit 2024-03-11T23:08:54.655723+0000 mon.smithi149 (mon.0) 300 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:56.030 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:55 smithi165 bash[22892]: audit 2024-03-11T23:08:54.663584+0000 mon.smithi149 (mon.0) 301 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:56.030 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:55 smithi165 bash[22892]: cephadm 2024-03-11T23:08:54.667130+0000 mgr.smithi149.leptec (mgr.14197) 41 : cephadm 1 Reconfiguring mgr.smithi149.leptec (unknown last config time)... 2024-03-11T23:08:56.030 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:55 smithi165 bash[22892]: audit 2024-03-11T23:08:54.667740+0000 mon.smithi149 (mon.0) 302 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi149.leptec", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-11T23:08:56.030 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:55 smithi165 bash[22892]: audit 2024-03-11T23:08:54.669372+0000 mon.smithi149 (mon.0) 303 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-11T23:08:56.030 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:55 smithi165 bash[22892]: audit 2024-03-11T23:08:54.670619+0000 mon.smithi149 (mon.0) 304 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:56.031 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:55 smithi165 bash[22892]: cephadm 2024-03-11T23:08:54.672148+0000 mgr.smithi149.leptec (mgr.14197) 42 : cephadm 1 Reconfiguring daemon mgr.smithi149.leptec on smithi149 2024-03-11T23:08:56.031 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:55 smithi165 bash[22892]: audit 2024-03-11T23:08:55.301591+0000 mon.smithi149 (mon.0) 305 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:56.031 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:55 smithi165 bash[22892]: audit 2024-03-11T23:08:55.303155+0000 mon.smithi149 (mon.0) 306 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:08:56.032 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-03-11T23:08:56.032 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-03-11T23:08:56.032 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000508628 s, 1.0 MB/s 2024-03-11T23:08:56.033 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-03-11T23:08:56.086 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/nvme2n1 2024-03-11T23:08:56.137 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/nvme2n1 2024-03-11T23:08:56.137 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-11T23:08:56.137 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 978 Links: 1 Device type: 103,4 2024-03-11T23:08:56.137 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-11T23:08:56.138 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-03-11 23:08:19.073925441 +0000 2024-03-11T23:08:56.138 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-03-11 23:04:13.240962902 +0000 2024-03-11T23:08:56.138 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-03-11 23:04:13.240962902 +0000 2024-03-11T23:08:56.138 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-03-11T23:08:56.138 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-03-11T23:08:56.192 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-03-11T23:08:56.192 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-03-11T23:08:56.192 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000409289 s, 1.3 MB/s 2024-03-11T23:08:56.193 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-03-11T23:08:56.243 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/nvme3n1 2024-03-11T23:08:56.290 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/nvme3n1 2024-03-11T23:08:56.290 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-11T23:08:56.290 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 987 Links: 1 Device type: 103,6 2024-03-11T23:08:56.290 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-11T23:08:56.290 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-03-11 23:08:19.093925102 +0000 2024-03-11T23:08:56.290 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-03-11 23:04:13.340983509 +0000 2024-03-11T23:08:56.290 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-03-11 23:04:13.340983509 +0000 2024-03-11T23:08:56.291 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-03-11T23:08:56.291 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-03-11T23:08:56.344 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-03-11T23:08:56.344 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-03-11T23:08:56.344 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.00041601 s, 1.2 MB/s 2024-03-11T23:08:56.345 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-03-11T23:08:56.395 DEBUG:teuthology.orchestra.run.smithi165:> stat /dev/nvme4n1 2024-03-11T23:08:56.441 INFO:teuthology.orchestra.run.smithi165.stdout: File: /dev/nvme4n1 2024-03-11T23:08:56.442 INFO:teuthology.orchestra.run.smithi165.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-11T23:08:56.442 INFO:teuthology.orchestra.run.smithi165.stdout:Device: 5h/5d Inode: 996 Links: 1 Device type: 103,8 2024-03-11T23:08:56.442 INFO:teuthology.orchestra.run.smithi165.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-11T23:08:56.442 INFO:teuthology.orchestra.run.smithi165.stdout:Access: 2024-03-11 23:08:19.109924832 +0000 2024-03-11T23:08:56.442 INFO:teuthology.orchestra.run.smithi165.stdout:Modify: 2024-03-11 23:04:13.441004115 +0000 2024-03-11T23:08:56.442 INFO:teuthology.orchestra.run.smithi165.stdout:Change: 2024-03-11 23:04:13.441004115 +0000 2024-03-11T23:08:56.442 INFO:teuthology.orchestra.run.smithi165.stdout: Birth: - 2024-03-11T23:08:56.442 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-03-11T23:08:56.496 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records in 2024-03-11T23:08:56.496 INFO:teuthology.orchestra.run.smithi165.stderr:1+0 records out 2024-03-11T23:08:56.496 INFO:teuthology.orchestra.run.smithi165.stderr:512 bytes copied, 0.000409814 s, 1.2 MB/s 2024-03-11T23:08:56.497 DEBUG:teuthology.orchestra.run.smithi165:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-03-11T23:08:56.547 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-03-11T23:08:56.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:56 smithi149 bash[18736]: cluster 2024-03-11T23:08:54.976719+0000 mgr.smithi149.leptec (mgr.14197) 43 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:57.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:56 smithi165 bash[22892]: cluster 2024-03-11T23:08:54.976719+0000 mgr.smithi149.leptec (mgr.14197) 43 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:58.163 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:57 smithi149 bash[18736]: audit 2024-03-11T23:08:56.890663+0000 mon.smithi149 (mon.0) 307 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:58.163 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:57 smithi149 bash[18736]: audit 2024-03-11T23:08:56.900806+0000 mon.smithi149 (mon.0) 308 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:58.163 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:57 smithi149 bash[18736]: audit 2024-03-11T23:08:56.943382+0000 mon.smithi149 (mon.0) 309 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi149", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-11T23:08:58.163 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:57 smithi149 bash[18736]: audit 2024-03-11T23:08:56.945731+0000 mon.smithi149 (mon.0) 310 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:58.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:57 smithi165 bash[22892]: audit 2024-03-11T23:08:56.890663+0000 mon.smithi149 (mon.0) 307 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:58.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:57 smithi165 bash[22892]: audit 2024-03-11T23:08:56.900806+0000 mon.smithi149 (mon.0) 308 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:08:58.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:57 smithi165 bash[22892]: audit 2024-03-11T23:08:56.943382+0000 mon.smithi149 (mon.0) 309 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi149", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-11T23:08:58.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:57 smithi165 bash[22892]: audit 2024-03-11T23:08:56.945731+0000 mon.smithi149 (mon.0) 310 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:08:59.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:58 smithi149 bash[18736]: cephadm 2024-03-11T23:08:56.942471+0000 mgr.smithi149.leptec (mgr.14197) 44 : cephadm 1 Reconfiguring ceph-exporter.smithi149 (monmap changed)... 2024-03-11T23:08:59.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:58 smithi149 bash[18736]: cephadm 2024-03-11T23:08:56.948108+0000 mgr.smithi149.leptec (mgr.14197) 45 : cephadm 1 Reconfiguring daemon ceph-exporter.smithi149 on smithi149 2024-03-11T23:08:59.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:58 smithi149 bash[18736]: cluster 2024-03-11T23:08:56.977165+0000 mgr.smithi149.leptec (mgr.14197) 46 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:08:59.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:58 smithi165 bash[22892]: cephadm 2024-03-11T23:08:56.942471+0000 mgr.smithi149.leptec (mgr.14197) 44 : cephadm 1 Reconfiguring ceph-exporter.smithi149 (monmap changed)... 2024-03-11T23:08:59.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:58 smithi165 bash[22892]: cephadm 2024-03-11T23:08:56.948108+0000 mgr.smithi149.leptec (mgr.14197) 45 : cephadm 1 Reconfiguring daemon ceph-exporter.smithi149 on smithi149 2024-03-11T23:08:59.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:58 smithi165 bash[22892]: cluster 2024-03-11T23:08:56.977165+0000 mgr.smithi149.leptec (mgr.14197) 46 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:00.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:59 smithi149 bash[18736]: audit 2024-03-11T23:08:58.943234+0000 mon.smithi149 (mon.0) 311 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:00.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:59 smithi149 bash[18736]: audit 2024-03-11T23:08:58.952749+0000 mon.smithi149 (mon.0) 312 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:00.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:59 smithi149 bash[18736]: cephadm 2024-03-11T23:08:58.966874+0000 mgr.smithi149.leptec (mgr.14197) 47 : cephadm 1 Reconfiguring crash.smithi149 (monmap changed)... 2024-03-11T23:09:00.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:59 smithi149 bash[18736]: audit 2024-03-11T23:08:58.967592+0000 mon.smithi149 (mon.0) 313 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi149", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-11T23:09:00.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:59 smithi149 bash[18736]: audit 2024-03-11T23:08:58.969751+0000 mon.smithi149 (mon.0) 314 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:00.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:59 smithi149 bash[18736]: cephadm 2024-03-11T23:08:58.971787+0000 mgr.smithi149.leptec (mgr.14197) 48 : cephadm 1 Reconfiguring daemon crash.smithi149 on smithi149 2024-03-11T23:09:00.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:08:59 smithi149 bash[18736]: cluster 2024-03-11T23:08:58.977463+0000 mgr.smithi149.leptec (mgr.14197) 49 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:00.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:59 smithi165 bash[22892]: audit 2024-03-11T23:08:58.943234+0000 mon.smithi149 (mon.0) 311 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:00.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:59 smithi165 bash[22892]: audit 2024-03-11T23:08:58.952749+0000 mon.smithi149 (mon.0) 312 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:00.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:59 smithi165 bash[22892]: cephadm 2024-03-11T23:08:58.966874+0000 mgr.smithi149.leptec (mgr.14197) 47 : cephadm 1 Reconfiguring crash.smithi149 (monmap changed)... 2024-03-11T23:09:00.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:59 smithi165 bash[22892]: audit 2024-03-11T23:08:58.967592+0000 mon.smithi149 (mon.0) 313 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi149", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-11T23:09:00.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:59 smithi165 bash[22892]: audit 2024-03-11T23:08:58.969751+0000 mon.smithi149 (mon.0) 314 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:00.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:59 smithi165 bash[22892]: cephadm 2024-03-11T23:08:58.971787+0000 mgr.smithi149.leptec (mgr.14197) 48 : cephadm 1 Reconfiguring daemon crash.smithi149 on smithi149 2024-03-11T23:09:00.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:08:59 smithi165 bash[22892]: cluster 2024-03-11T23:08:58.977463+0000 mgr.smithi149.leptec (mgr.14197) 49 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:01.321 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi165/config 2024-03-11T23:09:01.968 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:01 smithi149 bash[18736]: audit 2024-03-11T23:09:00.925499+0000 mon.smithi149 (mon.0) 315 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:01.968 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:01 smithi149 bash[18736]: audit 2024-03-11T23:09:00.935753+0000 mon.smithi149 (mon.0) 316 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:02.197 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:01 smithi165 bash[22892]: audit 2024-03-11T23:09:00.925499+0000 mon.smithi149 (mon.0) 315 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:02.198 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:01 smithi165 bash[22892]: audit 2024-03-11T23:09:00.935753+0000 mon.smithi149 (mon.0) 316 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:03.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:02 smithi149 bash[18736]: cephadm 2024-03-11T23:09:00.940969+0000 mgr.smithi149.leptec (mgr.14197) 50 : cephadm 1 Reconfiguring alertmanager.smithi149 (dependencies changed)... 2024-03-11T23:09:03.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:02 smithi149 bash[18736]: cluster 2024-03-11T23:09:01.240401+0000 mgr.smithi149.leptec (mgr.14197) 51 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:03.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:02 smithi149 bash[18736]: cephadm 2024-03-11T23:09:01.252358+0000 mgr.smithi149.leptec (mgr.14197) 52 : cephadm 1 Reconfiguring daemon alertmanager.smithi149 on smithi149 2024-03-11T23:09:03.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:02 smithi165 bash[22892]: cephadm 2024-03-11T23:09:00.940969+0000 mgr.smithi149.leptec (mgr.14197) 50 : cephadm 1 Reconfiguring alertmanager.smithi149 (dependencies changed)... 2024-03-11T23:09:03.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:02 smithi165 bash[22892]: cluster 2024-03-11T23:09:01.240401+0000 mgr.smithi149.leptec (mgr.14197) 51 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:03.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:02 smithi165 bash[22892]: cephadm 2024-03-11T23:09:01.252358+0000 mgr.smithi149.leptec (mgr.14197) 52 : cephadm 1 Reconfiguring daemon alertmanager.smithi149 on smithi149 2024-03-11T23:09:04.101 INFO:teuthology.orchestra.run.smithi165.stdout:Scheduled osd.all-available-devices update... 2024-03-11T23:09:04.779 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-03-11T23:09:04.780 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd stat -f json 2024-03-11T23:09:04.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:04 smithi149 bash[18736]: cluster 2024-03-11T23:09:03.240686+0000 mgr.smithi149.leptec (mgr.14197) 53 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:04.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:04 smithi149 bash[18736]: audit 2024-03-11T23:09:04.097041+0000 mon.smithi149 (mon.0) 317 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:05.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:04 smithi165 bash[22892]: cluster 2024-03-11T23:09:03.240686+0000 mgr.smithi149.leptec (mgr.14197) 53 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:05.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:04 smithi165 bash[22892]: audit 2024-03-11T23:09:04.097041+0000 mon.smithi149 (mon.0) 317 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:06.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:05 smithi149 bash[18736]: audit 2024-03-11T23:09:04.089776+0000 mgr.smithi149.leptec (mgr.14197) 54 : audit 0 from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:09:06.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:05 smithi149 bash[18736]: cephadm 2024-03-11T23:09:04.091864+0000 mgr.smithi149.leptec (mgr.14197) 55 : cephadm 1 Marking host: smithi149 for OSDSpec preview refresh. 2024-03-11T23:09:06.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:05 smithi149 bash[18736]: cephadm 2024-03-11T23:09:04.091938+0000 mgr.smithi149.leptec (mgr.14197) 56 : cephadm 1 Marking host: smithi165 for OSDSpec preview refresh. 2024-03-11T23:09:06.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:05 smithi149 bash[18736]: cephadm 2024-03-11T23:09:04.092553+0000 mgr.smithi149.leptec (mgr.14197) 57 : cephadm 1 Saving service osd.all-available-devices spec with placement * 2024-03-11T23:09:06.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:05 smithi149 bash[18736]: audit 2024-03-11T23:09:05.614037+0000 mon.smithi149 (mon.0) 318 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:06.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:05 smithi149 bash[18736]: audit 2024-03-11T23:09:05.618980+0000 mon.smithi149 (mon.0) 319 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:06.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:05 smithi165 bash[22892]: audit 2024-03-11T23:09:04.089776+0000 mgr.smithi149.leptec (mgr.14197) 54 : audit 0 from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:09:06.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:05 smithi165 bash[22892]: cephadm 2024-03-11T23:09:04.091864+0000 mgr.smithi149.leptec (mgr.14197) 55 : cephadm 1 Marking host: smithi149 for OSDSpec preview refresh. 2024-03-11T23:09:06.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:05 smithi165 bash[22892]: cephadm 2024-03-11T23:09:04.091938+0000 mgr.smithi149.leptec (mgr.14197) 56 : cephadm 1 Marking host: smithi165 for OSDSpec preview refresh. 2024-03-11T23:09:06.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:05 smithi165 bash[22892]: cephadm 2024-03-11T23:09:04.092553+0000 mgr.smithi149.leptec (mgr.14197) 57 : cephadm 1 Saving service osd.all-available-devices spec with placement * 2024-03-11T23:09:06.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:05 smithi165 bash[22892]: audit 2024-03-11T23:09:05.614037+0000 mon.smithi149 (mon.0) 318 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:06.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:05 smithi165 bash[22892]: audit 2024-03-11T23:09:05.618980+0000 mon.smithi149 (mon.0) 319 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:07.199 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:06 smithi149 bash[18736]: cluster 2024-03-11T23:09:05.241050+0000 mgr.smithi149.leptec (mgr.14197) 58 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:07.199 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:06 smithi149 bash[18736]: cephadm 2024-03-11T23:09:05.628238+0000 mgr.smithi149.leptec (mgr.14197) 59 : cephadm 1 Reconfiguring grafana.smithi149 (dependencies changed)... 2024-03-11T23:09:07.199 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:06 smithi149 bash[18736]: cephadm 2024-03-11T23:09:05.642536+0000 mgr.smithi149.leptec (mgr.14197) 60 : cephadm 1 Reconfiguring daemon grafana.smithi149 on smithi149 2024-03-11T23:09:07.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:06 smithi165 bash[22892]: cluster 2024-03-11T23:09:05.241050+0000 mgr.smithi149.leptec (mgr.14197) 58 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:07.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:06 smithi165 bash[22892]: cephadm 2024-03-11T23:09:05.628238+0000 mgr.smithi149.leptec (mgr.14197) 59 : cephadm 1 Reconfiguring grafana.smithi149 (dependencies changed)... 2024-03-11T23:09:07.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:06 smithi165 bash[22892]: cephadm 2024-03-11T23:09:05.642536+0000 mgr.smithi149.leptec (mgr.14197) 60 : cephadm 1 Reconfiguring daemon grafana.smithi149 on smithi149 2024-03-11T23:09:08.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:07 smithi149 bash[18736]: cluster 2024-03-11T23:09:07.241450+0000 mgr.smithi149.leptec (mgr.14197) 61 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:08.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:07 smithi165 bash[22892]: cluster 2024-03-11T23:09:07.241450+0000 mgr.smithi149.leptec (mgr.14197) 61 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:09.584 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:09:10.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:10 smithi149 bash[18736]: cluster 2024-03-11T23:09:09.241784+0000 mgr.smithi149.leptec (mgr.14197) 62 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:10.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:10 smithi149 bash[18736]: audit 2024-03-11T23:09:10.154534+0000 mon.smithi149 (mon.0) 320 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:10.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:10 smithi149 bash[18736]: audit 2024-03-11T23:09:10.159664+0000 mon.smithi149 (mon.0) 321 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:10.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:10 smithi165 bash[22892]: cluster 2024-03-11T23:09:09.241784+0000 mgr.smithi149.leptec (mgr.14197) 62 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:10.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:10 smithi165 bash[22892]: audit 2024-03-11T23:09:10.154534+0000 mon.smithi149 (mon.0) 320 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:10.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:10 smithi165 bash[22892]: audit 2024-03-11T23:09:10.159664+0000 mon.smithi149 (mon.0) 321 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:11.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:11 smithi165 bash[22892]: cephadm 2024-03-11T23:09:10.165680+0000 mgr.smithi149.leptec (mgr.14197) 63 : cephadm 1 Reconfiguring prometheus.smithi149 (dependencies changed)... 2024-03-11T23:09:11.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:11 smithi165 bash[22892]: audit 2024-03-11T23:09:10.301038+0000 mon.smithi149 (mon.0) 322 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:09:11.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:11 smithi165 bash[22892]: cephadm 2024-03-11T23:09:10.402767+0000 mgr.smithi149.leptec (mgr.14197) 64 : cephadm 1 Reconfiguring daemon prometheus.smithi149 on smithi149 2024-03-11T23:09:11.696 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:11 smithi149 bash[18736]: cephadm 2024-03-11T23:09:10.165680+0000 mgr.smithi149.leptec (mgr.14197) 63 : cephadm 1 Reconfiguring prometheus.smithi149 (dependencies changed)... 2024-03-11T23:09:11.697 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:11 smithi149 bash[18736]: audit 2024-03-11T23:09:10.301038+0000 mon.smithi149 (mon.0) 322 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:09:11.697 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:11 smithi149 bash[18736]: cephadm 2024-03-11T23:09:10.402767+0000 mgr.smithi149.leptec (mgr.14197) 64 : cephadm 1 Reconfiguring daemon prometheus.smithi149 on smithi149 2024-03-11T23:09:12.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:12 smithi149 bash[18736]: cluster 2024-03-11T23:09:11.242145+0000 mgr.smithi149.leptec (mgr.14197) 65 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:12.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:12 smithi165 bash[22892]: cluster 2024-03-11T23:09:11.242145+0000 mgr.smithi149.leptec (mgr.14197) 65 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:14.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:14 smithi149 bash[18736]: cluster 2024-03-11T23:09:13.242524+0000 mgr.smithi149.leptec (mgr.14197) 66 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:14.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:14 smithi165 bash[22892]: cluster 2024-03-11T23:09:13.242524+0000 mgr.smithi149.leptec (mgr.14197) 66 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:15.404 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:09:16.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:16 smithi149 bash[18736]: cluster 2024-03-11T23:09:15.242904+0000 mgr.smithi149.leptec (mgr.14197) 67 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:16.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:16 smithi149 bash[18736]: audit 2024-03-11T23:09:15.401459+0000 mon.smithi149 (mon.0) 323 : audit 0 from='client.? 172.21.15.149:0/1015744285' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:09:16.512 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":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-11T23:09:16.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:16 smithi165 bash[22892]: cluster 2024-03-11T23:09:15.242904+0000 mgr.smithi149.leptec (mgr.14197) 67 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:16.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:16 smithi165 bash[22892]: audit 2024-03-11T23:09:15.401459+0000 mon.smithi149 (mon.0) 323 : audit 0 from='client.? 172.21.15.149:0/1015744285' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:09:17.513 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd stat -f json 2024-03-11T23:09:18.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:18 smithi149 bash[18736]: cluster 2024-03-11T23:09:17.243240+0000 mgr.smithi149.leptec (mgr.14197) 68 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:18.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:18 smithi149 bash[18736]: audit 2024-03-11T23:09:17.477976+0000 mon.smithi149 (mon.0) 324 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:18.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:18 smithi149 bash[18736]: audit 2024-03-11T23:09:17.483552+0000 mon.smithi149 (mon.0) 325 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:18.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:18 smithi149 bash[18736]: cephadm 2024-03-11T23:09:17.486807+0000 mgr.smithi149.leptec (mgr.14197) 69 : cephadm 1 Reconfiguring crash.smithi165 (monmap changed)... 2024-03-11T23:09:18.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:18 smithi149 bash[18736]: audit 2024-03-11T23:09:17.487104+0000 mon.smithi149 (mon.0) 326 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi165", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-11T23:09:18.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:18 smithi149 bash[18736]: audit 2024-03-11T23:09:17.487859+0000 mon.smithi149 (mon.0) 327 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:18.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:18 smithi149 bash[18736]: cephadm 2024-03-11T23:09:17.488643+0000 mgr.smithi149.leptec (mgr.14197) 70 : cephadm 1 Reconfiguring daemon crash.smithi165 on smithi165 2024-03-11T23:09:18.737 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:18 smithi165 bash[22892]: cluster 2024-03-11T23:09:17.243240+0000 mgr.smithi149.leptec (mgr.14197) 68 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:18.737 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:18 smithi165 bash[22892]: audit 2024-03-11T23:09:17.477976+0000 mon.smithi149 (mon.0) 324 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:18.737 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:18 smithi165 bash[22892]: audit 2024-03-11T23:09:17.483552+0000 mon.smithi149 (mon.0) 325 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:18.737 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:18 smithi165 bash[22892]: cephadm 2024-03-11T23:09:17.486807+0000 mgr.smithi149.leptec (mgr.14197) 69 : cephadm 1 Reconfiguring crash.smithi165 (monmap changed)... 2024-03-11T23:09:18.737 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:18 smithi165 bash[22892]: audit 2024-03-11T23:09:17.487104+0000 mon.smithi149 (mon.0) 326 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi165", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-11T23:09:18.737 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:18 smithi165 bash[22892]: audit 2024-03-11T23:09:17.487859+0000 mon.smithi149 (mon.0) 327 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:18.737 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:18 smithi165 bash[22892]: cephadm 2024-03-11T23:09:17.488643+0000 mgr.smithi149.leptec (mgr.14197) 70 : cephadm 1 Reconfiguring daemon crash.smithi165 on smithi165 2024-03-11T23:09:20.683 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:20 smithi165 bash[22892]: cluster 2024-03-11T23:09:19.243621+0000 mgr.smithi149.leptec (mgr.14197) 71 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:20.683 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:20 smithi165 bash[22892]: audit 2024-03-11T23:09:19.420381+0000 mon.smithi149 (mon.0) 328 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:20.683 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:20 smithi165 bash[22892]: audit 2024-03-11T23:09:19.429914+0000 mon.smithi149 (mon.0) 329 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:20.683 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:20 smithi165 bash[22892]: cephadm 2024-03-11T23:09:19.457652+0000 mgr.smithi149.leptec (mgr.14197) 72 : cephadm 1 Reconfiguring mgr.smithi165.tfkohn (monmap changed)... 2024-03-11T23:09:20.683 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:20 smithi165 bash[22892]: audit 2024-03-11T23:09:19.458353+0000 mon.smithi149 (mon.0) 330 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi165.tfkohn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-11T23:09:20.683 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:20 smithi165 bash[22892]: audit 2024-03-11T23:09:19.460398+0000 mon.smithi149 (mon.0) 331 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-11T23:09:20.683 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:20 smithi165 bash[22892]: audit 2024-03-11T23:09:19.462195+0000 mon.smithi149 (mon.0) 332 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:20.683 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:20 smithi165 bash[22892]: cephadm 2024-03-11T23:09:19.464324+0000 mgr.smithi149.leptec (mgr.14197) 73 : cephadm 1 Reconfiguring daemon mgr.smithi165.tfkohn on smithi165 2024-03-11T23:09:20.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:20 smithi149 bash[18736]: cluster 2024-03-11T23:09:19.243621+0000 mgr.smithi149.leptec (mgr.14197) 71 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:20.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:20 smithi149 bash[18736]: audit 2024-03-11T23:09:19.420381+0000 mon.smithi149 (mon.0) 328 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:20.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:20 smithi149 bash[18736]: audit 2024-03-11T23:09:19.429914+0000 mon.smithi149 (mon.0) 329 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:20.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:20 smithi149 bash[18736]: cephadm 2024-03-11T23:09:19.457652+0000 mgr.smithi149.leptec (mgr.14197) 72 : cephadm 1 Reconfiguring mgr.smithi165.tfkohn (monmap changed)... 2024-03-11T23:09:20.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:20 smithi149 bash[18736]: audit 2024-03-11T23:09:19.458353+0000 mon.smithi149 (mon.0) 330 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi165.tfkohn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-11T23:09:20.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:20 smithi149 bash[18736]: audit 2024-03-11T23:09:19.460398+0000 mon.smithi149 (mon.0) 331 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-11T23:09:20.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:20 smithi149 bash[18736]: audit 2024-03-11T23:09:19.462195+0000 mon.smithi149 (mon.0) 332 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:20.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:20 smithi149 bash[18736]: cephadm 2024-03-11T23:09:19.464324+0000 mgr.smithi149.leptec (mgr.14197) 73 : cephadm 1 Reconfiguring daemon mgr.smithi165.tfkohn on smithi165 2024-03-11T23:09:22.260 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:09:22.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:22 smithi165 bash[22892]: cluster 2024-03-11T23:09:21.244046+0000 mgr.smithi149.leptec (mgr.14197) 74 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:22.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:22 smithi165 bash[22892]: audit 2024-03-11T23:09:21.292263+0000 mon.smithi149 (mon.0) 333 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:22.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:22 smithi165 bash[22892]: audit 2024-03-11T23:09:21.301720+0000 mon.smithi149 (mon.0) 334 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:22.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:22 smithi165 bash[22892]: cephadm 2024-03-11T23:09:21.334657+0000 mgr.smithi149.leptec (mgr.14197) 75 : cephadm 1 Reconfiguring mon.smithi165 (monmap changed)... 2024-03-11T23:09:22.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:22 smithi165 bash[22892]: audit 2024-03-11T23:09:21.335341+0000 mon.smithi149 (mon.0) 335 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-11T23:09:22.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:22 smithi165 bash[22892]: audit 2024-03-11T23:09:21.337177+0000 mon.smithi149 (mon.0) 336 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-11T23:09:22.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:22 smithi165 bash[22892]: audit 2024-03-11T23:09:21.338987+0000 mon.smithi149 (mon.0) 337 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:22.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:22 smithi165 bash[22892]: cephadm 2024-03-11T23:09:21.341077+0000 mgr.smithi149.leptec (mgr.14197) 76 : cephadm 1 Reconfiguring daemon mon.smithi165 on smithi165 2024-03-11T23:09:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:22 smithi149 bash[18736]: cluster 2024-03-11T23:09:21.244046+0000 mgr.smithi149.leptec (mgr.14197) 74 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:22 smithi149 bash[18736]: audit 2024-03-11T23:09:21.292263+0000 mon.smithi149 (mon.0) 333 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:22 smithi149 bash[18736]: audit 2024-03-11T23:09:21.301720+0000 mon.smithi149 (mon.0) 334 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:22 smithi149 bash[18736]: cephadm 2024-03-11T23:09:21.334657+0000 mgr.smithi149.leptec (mgr.14197) 75 : cephadm 1 Reconfiguring mon.smithi165 (monmap changed)... 2024-03-11T23:09:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:22 smithi149 bash[18736]: audit 2024-03-11T23:09:21.335341+0000 mon.smithi149 (mon.0) 335 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-11T23:09:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:22 smithi149 bash[18736]: audit 2024-03-11T23:09:21.337177+0000 mon.smithi149 (mon.0) 336 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-11T23:09:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:22 smithi149 bash[18736]: audit 2024-03-11T23:09:21.338987+0000 mon.smithi149 (mon.0) 337 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:22 smithi149 bash[18736]: cephadm 2024-03-11T23:09:21.341077+0000 mgr.smithi149.leptec (mgr.14197) 76 : cephadm 1 Reconfiguring daemon mon.smithi165 on smithi165 2024-03-11T23:09:24.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.163342+0000 mon.smithi149 (mon.0) 338 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:24.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.174550+0000 mon.smithi149 (mon.0) 339 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:24.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.212758+0000 mon.smithi149 (mon.0) 340 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.213290+0000 mgr.smithi149.leptec (mgr.14197) 77 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.214483+0000 mon.smithi149 (mon.0) 341 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi149.front.sepia.ceph.com:9093"}]: dispatch 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.214822+0000 mgr.smithi149.leptec (mgr.14197) 78 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi149.front.sepia.ceph.com:9093"}]: dispatch 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.221680+0000 mon.smithi149 (mon.0) 342 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.231447+0000 mon.smithi149 (mon.0) 343 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.231948+0000 mgr.smithi149.leptec (mgr.14197) 79 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.237965+0000 mon.smithi149 (mon.0) 344 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi149.front.sepia.ceph.com:3000"}]: dispatch 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.238431+0000 mgr.smithi149.leptec (mgr.14197) 80 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi149.front.sepia.ceph.com:3000"}]: dispatch 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.244060+0000 mon.smithi149 (mon.0) 345 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: cluster 2024-03-11T23:09:23.244313+0000 mgr.smithi149.leptec (mgr.14197) 81 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.254507+0000 mon.smithi149 (mon.0) 346 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.255041+0000 mgr.smithi149.leptec (mgr.14197) 82 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:09:24.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.258230+0000 mon.smithi149 (mon.0) 347 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi149.front.sepia.ceph.com:9095"}]: dispatch 2024-03-11T23:09:24.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.258643+0000 mgr.smithi149.leptec (mgr.14197) 83 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi149.front.sepia.ceph.com:9095"}]: dispatch 2024-03-11T23:09:24.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.265446+0000 mon.smithi149 (mon.0) 348 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:24.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:24 smithi149 bash[18736]: audit 2024-03-11T23:09:23.280734+0000 mon.smithi149 (mon.0) 349 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:09:24.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.163342+0000 mon.smithi149 (mon.0) 338 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:24.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.174550+0000 mon.smithi149 (mon.0) 339 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:24.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.212758+0000 mon.smithi149 (mon.0) 340 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-03-11T23:09:24.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.213290+0000 mgr.smithi149.leptec (mgr.14197) 77 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-03-11T23:09:24.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.214483+0000 mon.smithi149 (mon.0) 341 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi149.front.sepia.ceph.com:9093"}]: dispatch 2024-03-11T23:09:24.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.214822+0000 mgr.smithi149.leptec (mgr.14197) 78 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi149.front.sepia.ceph.com:9093"}]: dispatch 2024-03-11T23:09:24.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.221680+0000 mon.smithi149 (mon.0) 342 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.231447+0000 mon.smithi149 (mon.0) 343 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.231948+0000 mgr.smithi149.leptec (mgr.14197) 79 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.237965+0000 mon.smithi149 (mon.0) 344 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi149.front.sepia.ceph.com:3000"}]: dispatch 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.238431+0000 mgr.smithi149.leptec (mgr.14197) 80 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi149.front.sepia.ceph.com:3000"}]: dispatch 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.244060+0000 mon.smithi149 (mon.0) 345 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: cluster 2024-03-11T23:09:23.244313+0000 mgr.smithi149.leptec (mgr.14197) 81 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.254507+0000 mon.smithi149 (mon.0) 346 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.255041+0000 mgr.smithi149.leptec (mgr.14197) 82 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.258230+0000 mon.smithi149 (mon.0) 347 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi149.front.sepia.ceph.com:9095"}]: dispatch 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.258643+0000 mgr.smithi149.leptec (mgr.14197) 83 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi149.front.sepia.ceph.com:9095"}]: dispatch 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.265446+0000 mon.smithi149 (mon.0) 348 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:24.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:24 smithi165 bash[22892]: audit 2024-03-11T23:09:23.280734+0000 mon.smithi149 (mon.0) 349 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:09:25.264 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:09:25.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:25 smithi149 bash[18736]: audit 2024-03-11T23:09:25.260912+0000 mon.smithi149 (mon.0) 350 : audit 0 from='client.? 172.21.15.149:0/1034112775' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:09:25.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:25 smithi149 bash[18736]: audit 2024-03-11T23:09:25.296163+0000 mon.smithi149 (mon.0) 351 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:09:25.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:25 smithi165 bash[22892]: audit 2024-03-11T23:09:25.260912+0000 mon.smithi149 (mon.0) 350 : audit 0 from='client.? 172.21.15.149:0/1034112775' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:09:25.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:25 smithi165 bash[22892]: audit 2024-03-11T23:09:25.296163+0000 mon.smithi149 (mon.0) 351 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:09:25.929 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":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-11T23:09:26.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:26 smithi149 bash[18736]: cluster 2024-03-11T23:09:25.244639+0000 mgr.smithi149.leptec (mgr.14197) 84 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:26.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:26 smithi165 bash[22892]: cluster 2024-03-11T23:09:25.244639+0000 mgr.smithi149.leptec (mgr.14197) 84 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:26.930 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd stat -f json 2024-03-11T23:09:28.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:28 smithi149 bash[18736]: cluster 2024-03-11T23:09:27.245059+0000 mgr.smithi149.leptec (mgr.14197) 85 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:28.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:28 smithi165 bash[22892]: cluster 2024-03-11T23:09:27.245059+0000 mgr.smithi149.leptec (mgr.14197) 85 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:29.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:29 smithi149 bash[18736]: audit 2024-03-11T23:09:28.719399+0000 mon.smithi149 (mon.0) 352 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:29.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:29 smithi149 bash[18736]: audit 2024-03-11T23:09:28.725064+0000 mon.smithi149 (mon.0) 353 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:29.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:29 smithi149 bash[18736]: audit 2024-03-11T23:09:29.334203+0000 mon.smithi149 (mon.0) 354 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:29.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:29 smithi149 bash[18736]: audit 2024-03-11T23:09:29.344579+0000 mon.smithi149 (mon.0) 355 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:29.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:29 smithi149 bash[18736]: audit 2024-03-11T23:09:29.353219+0000 mon.smithi149 (mon.0) 356 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:29.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:29 smithi149 bash[18736]: audit 2024-03-11T23:09:29.360473+0000 mon.smithi149 (mon.0) 357 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:30.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:29 smithi165 bash[22892]: audit 2024-03-11T23:09:28.719399+0000 mon.smithi149 (mon.0) 352 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:30.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:29 smithi165 bash[22892]: audit 2024-03-11T23:09:28.725064+0000 mon.smithi149 (mon.0) 353 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:30.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:29 smithi165 bash[22892]: audit 2024-03-11T23:09:29.334203+0000 mon.smithi149 (mon.0) 354 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:30.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:29 smithi165 bash[22892]: audit 2024-03-11T23:09:29.344579+0000 mon.smithi149 (mon.0) 355 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:30.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:29 smithi165 bash[22892]: audit 2024-03-11T23:09:29.353219+0000 mon.smithi149 (mon.0) 356 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:30.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:29 smithi165 bash[22892]: audit 2024-03-11T23:09:29.360473+0000 mon.smithi149 (mon.0) 357 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: cluster 2024-03-11T23:09:29.245414+0000 mgr.smithi149.leptec (mgr.14197) 86 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: audit 2024-03-11T23:09:29.926372+0000 mon.smithi149 (mon.0) 358 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: audit 2024-03-11T23:09:29.937824+0000 mon.smithi149 (mon.0) 359 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: audit 2024-03-11T23:09:29.940244+0000 mon.smithi149 (mon.0) 360 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: audit 2024-03-11T23:09:29.941732+0000 mon.smithi149 (mon.0) 361 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:09:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: audit 2024-03-11T23:09:29.950590+0000 mon.smithi149 (mon.0) 362 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: audit 2024-03-11T23:09:29.959617+0000 mon.smithi149 (mon.0) 363 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:09:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: audit 2024-03-11T23:09:29.967202+0000 mon.smithi149 (mon.0) 364 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-11T23:09:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: audit 2024-03-11T23:09:29.968438+0000 mon.smithi149 (mon.0) 365 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: audit 2024-03-11T23:09:29.974905+0000 mon.smithi149 (mon.0) 366 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-11T23:09:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:30 smithi149 bash[18736]: audit 2024-03-11T23:09:29.975900+0000 mon.smithi149 (mon.0) 367 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: cluster 2024-03-11T23:09:29.245414+0000 mgr.smithi149.leptec (mgr.14197) 86 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: audit 2024-03-11T23:09:29.926372+0000 mon.smithi149 (mon.0) 358 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: audit 2024-03-11T23:09:29.937824+0000 mon.smithi149 (mon.0) 359 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: audit 2024-03-11T23:09:29.940244+0000 mon.smithi149 (mon.0) 360 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: audit 2024-03-11T23:09:29.941732+0000 mon.smithi149 (mon.0) 361 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: audit 2024-03-11T23:09:29.950590+0000 mon.smithi149 (mon.0) 362 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: audit 2024-03-11T23:09:29.959617+0000 mon.smithi149 (mon.0) 363 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: audit 2024-03-11T23:09:29.967202+0000 mon.smithi149 (mon.0) 364 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: audit 2024-03-11T23:09:29.968438+0000 mon.smithi149 (mon.0) 365 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: audit 2024-03-11T23:09:29.974905+0000 mon.smithi149 (mon.0) 366 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-11T23:09:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:30 smithi165 bash[22892]: audit 2024-03-11T23:09:29.975900+0000 mon.smithi149 (mon.0) 367 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:09:31.493 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:09:32.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:32 smithi149 bash[18736]: cluster 2024-03-11T23:09:31.245759+0000 mgr.smithi149.leptec (mgr.14197) 87 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:33.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:32 smithi165 bash[22892]: cluster 2024-03-11T23:09:31.245759+0000 mgr.smithi149.leptec (mgr.14197) 87 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:34.390 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:09:35.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:34 smithi149 bash[18736]: cluster 2024-03-11T23:09:33.246186+0000 mgr.smithi149.leptec (mgr.14197) 88 : cluster 0 pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:35.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:34 smithi149 bash[18736]: audit 2024-03-11T23:09:34.387745+0000 mon.smithi149 (mon.0) 368 : audit 0 from='client.? 172.21.15.149:0/885343457' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:09:35.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:34 smithi165 bash[22892]: cluster 2024-03-11T23:09:33.246186+0000 mgr.smithi149.leptec (mgr.14197) 88 : cluster 0 pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:35.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:34 smithi165 bash[22892]: audit 2024-03-11T23:09:34.387745+0000 mon.smithi149 (mon.0) 368 : audit 0 from='client.? 172.21.15.149:0/885343457' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:09:35.476 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":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-11T23:09:36.477 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd stat -f json 2024-03-11T23:09:37.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:36 smithi149 bash[18736]: cluster 2024-03-11T23:09:35.246599+0000 mgr.smithi149.leptec (mgr.14197) 89 : cluster 0 pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:37.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:36 smithi165 bash[22892]: cluster 2024-03-11T23:09:35.246599+0000 mgr.smithi149.leptec (mgr.14197) 89 : cluster 0 pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:38.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:37 smithi149 bash[18736]: cluster 2024-03-11T23:09:37.246976+0000 mgr.smithi149.leptec (mgr.14197) 90 : cluster 0 pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:38.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:37 smithi165 bash[22892]: cluster 2024-03-11T23:09:37.246976+0000 mgr.smithi149.leptec (mgr.14197) 90 : cluster 0 pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:39.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:38 smithi149 bash[18736]: audit 2024-03-11T23:09:38.760591+0000 mon.smithi165 (mon.1) 2 : audit 1 from='client.? 172.21.15.165:0/3926318977' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a5546c90-302f-4276-a11c-b591130d89f5"}]: dispatch 2024-03-11T23:09:39.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:38 smithi149 bash[18736]: audit 2024-03-11T23:09:38.761977+0000 mon.smithi149 (mon.0) 369 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a5546c90-302f-4276-a11c-b591130d89f5"}]: dispatch 2024-03-11T23:09:39.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:38 smithi149 bash[18736]: audit 2024-03-11T23:09:38.764954+0000 mon.smithi149 (mon.0) 370 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a5546c90-302f-4276-a11c-b591130d89f5"}]': finished 2024-03-11T23:09:39.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:38 smithi149 bash[18736]: cluster 2024-03-11T23:09:38.769793+0000 mon.smithi149 (mon.0) 371 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-03-11T23:09:39.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:38 smithi149 bash[18736]: audit 2024-03-11T23:09:38.770194+0000 mon.smithi149 (mon.0) 372 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:39.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:38 smithi165 bash[22892]: audit 2024-03-11T23:09:38.760591+0000 mon.smithi165 (mon.1) 2 : audit 1 from='client.? 172.21.15.165:0/3926318977' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a5546c90-302f-4276-a11c-b591130d89f5"}]: dispatch 2024-03-11T23:09:39.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:38 smithi165 bash[22892]: audit 2024-03-11T23:09:38.761977+0000 mon.smithi149 (mon.0) 369 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a5546c90-302f-4276-a11c-b591130d89f5"}]: dispatch 2024-03-11T23:09:39.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:38 smithi165 bash[22892]: audit 2024-03-11T23:09:38.764954+0000 mon.smithi149 (mon.0) 370 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a5546c90-302f-4276-a11c-b591130d89f5"}]': finished 2024-03-11T23:09:39.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:38 smithi165 bash[22892]: cluster 2024-03-11T23:09:38.769793+0000 mon.smithi149 (mon.0) 371 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-03-11T23:09:39.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:38 smithi165 bash[22892]: audit 2024-03-11T23:09:38.770194+0000 mon.smithi149 (mon.0) 372 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:40.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:39 smithi149 bash[18736]: audit 2024-03-11T23:09:39.105005+0000 mon.smithi149 (mon.0) 373 : audit 1 from='client.? 172.21.15.149:0/253818293' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "db423266-c251-4d43-bea5-c6aef2a08256"}]: dispatch 2024-03-11T23:09:40.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:39 smithi149 bash[18736]: audit 2024-03-11T23:09:39.108013+0000 mon.smithi149 (mon.0) 374 : audit 1 from='client.? 172.21.15.149:0/253818293' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "db423266-c251-4d43-bea5-c6aef2a08256"}]': finished 2024-03-11T23:09:40.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:39 smithi149 bash[18736]: cluster 2024-03-11T23:09:39.113295+0000 mon.smithi149 (mon.0) 375 : cluster 0 osdmap e7: 2 total, 0 up, 2 in 2024-03-11T23:09:40.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:39 smithi149 bash[18736]: audit 2024-03-11T23:09:39.113787+0000 mon.smithi149 (mon.0) 376 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:40.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:39 smithi149 bash[18736]: audit 2024-03-11T23:09:39.114137+0000 mon.smithi149 (mon.0) 377 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:40.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:39 smithi149 bash[18736]: cluster 2024-03-11T23:09:39.247281+0000 mgr.smithi149.leptec (mgr.14197) 91 : cluster 0 pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:40.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:39 smithi165 bash[22892]: audit 2024-03-11T23:09:39.105005+0000 mon.smithi149 (mon.0) 373 : audit 1 from='client.? 172.21.15.149:0/253818293' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "db423266-c251-4d43-bea5-c6aef2a08256"}]: dispatch 2024-03-11T23:09:40.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:39 smithi165 bash[22892]: audit 2024-03-11T23:09:39.108013+0000 mon.smithi149 (mon.0) 374 : audit 1 from='client.? 172.21.15.149:0/253818293' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "db423266-c251-4d43-bea5-c6aef2a08256"}]': finished 2024-03-11T23:09:40.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:39 smithi165 bash[22892]: cluster 2024-03-11T23:09:39.113295+0000 mon.smithi149 (mon.0) 375 : cluster 0 osdmap e7: 2 total, 0 up, 2 in 2024-03-11T23:09:40.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:39 smithi165 bash[22892]: audit 2024-03-11T23:09:39.113787+0000 mon.smithi149 (mon.0) 376 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:40.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:39 smithi165 bash[22892]: audit 2024-03-11T23:09:39.114137+0000 mon.smithi149 (mon.0) 377 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:40.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:39 smithi165 bash[22892]: cluster 2024-03-11T23:09:39.247281+0000 mgr.smithi149.leptec (mgr.14197) 91 : cluster 0 pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:41.222 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:09:41.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:41 smithi149 bash[18736]: audit 2024-03-11T23:09:40.297286+0000 mon.smithi149 (mon.0) 378 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:09:41.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:41 smithi149 bash[18736]: audit 2024-03-11T23:09:40.352197+0000 mon.smithi165 (mon.1) 3 : audit 0 from='client.? 172.21.15.165:0/825823980' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:41.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:41 smithi149 bash[18736]: audit 2024-03-11T23:09:40.775299+0000 mon.smithi149 (mon.0) 379 : audit 0 from='client.? 172.21.15.149:0/1704412790' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:41.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:41 smithi165 bash[22892]: audit 2024-03-11T23:09:40.297286+0000 mon.smithi149 (mon.0) 378 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:09:41.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:41 smithi165 bash[22892]: audit 2024-03-11T23:09:40.352197+0000 mon.smithi165 (mon.1) 3 : audit 0 from='client.? 172.21.15.165:0/825823980' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:41.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:41 smithi165 bash[22892]: audit 2024-03-11T23:09:40.775299+0000 mon.smithi149 (mon.0) 379 : audit 0 from='client.? 172.21.15.149:0/1704412790' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:42.472 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:42 smithi149 bash[18736]: cluster 2024-03-11T23:09:41.247625+0000 mgr.smithi149.leptec (mgr.14197) 92 : cluster 0 pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:42.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:42 smithi165 bash[22892]: cluster 2024-03-11T23:09:41.247625+0000 mgr.smithi149.leptec (mgr.14197) 92 : cluster 0 pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:43.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:43 smithi149 bash[18736]: audit 2024-03-11T23:09:43.171556+0000 mon.smithi149 (mon.0) 380 : audit 1 from='client.? 172.21.15.165:0/252038452' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "de605cfb-685e-44d1-8066-7a103d123ad9"}]: dispatch 2024-03-11T23:09:43.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:43 smithi149 bash[18736]: audit 2024-03-11T23:09:43.174756+0000 mon.smithi149 (mon.0) 381 : audit 1 from='client.? 172.21.15.165:0/252038452' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "de605cfb-685e-44d1-8066-7a103d123ad9"}]': finished 2024-03-11T23:09:43.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:43 smithi149 bash[18736]: cluster 2024-03-11T23:09:43.180017+0000 mon.smithi149 (mon.0) 382 : cluster 0 osdmap e8: 3 total, 0 up, 3 in 2024-03-11T23:09:43.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:43 smithi149 bash[18736]: audit 2024-03-11T23:09:43.180537+0000 mon.smithi149 (mon.0) 383 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:43.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:43 smithi149 bash[18736]: audit 2024-03-11T23:09:43.180921+0000 mon.smithi149 (mon.0) 384 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:43.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:43 smithi149 bash[18736]: audit 2024-03-11T23:09:43.181346+0000 mon.smithi149 (mon.0) 385 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:43 smithi165 bash[22892]: audit 2024-03-11T23:09:43.171556+0000 mon.smithi149 (mon.0) 380 : audit 1 from='client.? 172.21.15.165:0/252038452' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "de605cfb-685e-44d1-8066-7a103d123ad9"}]: dispatch 2024-03-11T23:09:43.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:43 smithi165 bash[22892]: audit 2024-03-11T23:09:43.174756+0000 mon.smithi149 (mon.0) 381 : audit 1 from='client.? 172.21.15.165:0/252038452' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "de605cfb-685e-44d1-8066-7a103d123ad9"}]': finished 2024-03-11T23:09:43.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:43 smithi165 bash[22892]: cluster 2024-03-11T23:09:43.180017+0000 mon.smithi149 (mon.0) 382 : cluster 0 osdmap e8: 3 total, 0 up, 3 in 2024-03-11T23:09:43.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:43 smithi165 bash[22892]: audit 2024-03-11T23:09:43.180537+0000 mon.smithi149 (mon.0) 383 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:43.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:43 smithi165 bash[22892]: audit 2024-03-11T23:09:43.180921+0000 mon.smithi149 (mon.0) 384 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:43.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:43 smithi165 bash[22892]: audit 2024-03-11T23:09:43.181346+0000 mon.smithi149 (mon.0) 385 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:43.953 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:09:44.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:44 smithi149 bash[18736]: cluster 2024-03-11T23:09:43.247943+0000 mgr.smithi149.leptec (mgr.14197) 93 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:44.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:44 smithi149 bash[18736]: audit 2024-03-11T23:09:43.632692+0000 mon.smithi149 (mon.0) 386 : audit 1 from='client.? 172.21.15.149:0/2449432820' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9e5e665e-05b6-42b5-b846-72306b135760"}]: dispatch 2024-03-11T23:09:44.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:44 smithi149 bash[18736]: audit 2024-03-11T23:09:43.635168+0000 mon.smithi149 (mon.0) 387 : audit 1 from='client.? 172.21.15.149:0/2449432820' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9e5e665e-05b6-42b5-b846-72306b135760"}]': finished 2024-03-11T23:09:44.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:44 smithi149 bash[18736]: cluster 2024-03-11T23:09:43.638700+0000 mon.smithi149 (mon.0) 388 : cluster 0 osdmap e9: 4 total, 0 up, 4 in 2024-03-11T23:09:44.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:44 smithi149 bash[18736]: audit 2024-03-11T23:09:43.638918+0000 mon.smithi149 (mon.0) 389 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:44.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:44 smithi149 bash[18736]: audit 2024-03-11T23:09:43.639124+0000 mon.smithi149 (mon.0) 390 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:44.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:44 smithi149 bash[18736]: audit 2024-03-11T23:09:43.639350+0000 mon.smithi149 (mon.0) 391 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:44.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:44 smithi149 bash[18736]: audit 2024-03-11T23:09:43.639524+0000 mon.smithi149 (mon.0) 392 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:09:44.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:44 smithi149 bash[18736]: audit 2024-03-11T23:09:43.950912+0000 mon.smithi149 (mon.0) 393 : audit 0 from='client.? 172.21.15.149:0/1971751613' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:09:44.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:44 smithi165 bash[22892]: cluster 2024-03-11T23:09:43.247943+0000 mgr.smithi149.leptec (mgr.14197) 93 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:44.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:44 smithi165 bash[22892]: audit 2024-03-11T23:09:43.632692+0000 mon.smithi149 (mon.0) 386 : audit 1 from='client.? 172.21.15.149:0/2449432820' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9e5e665e-05b6-42b5-b846-72306b135760"}]: dispatch 2024-03-11T23:09:44.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:44 smithi165 bash[22892]: audit 2024-03-11T23:09:43.635168+0000 mon.smithi149 (mon.0) 387 : audit 1 from='client.? 172.21.15.149:0/2449432820' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9e5e665e-05b6-42b5-b846-72306b135760"}]': finished 2024-03-11T23:09:44.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:44 smithi165 bash[22892]: cluster 2024-03-11T23:09:43.638700+0000 mon.smithi149 (mon.0) 388 : cluster 0 osdmap e9: 4 total, 0 up, 4 in 2024-03-11T23:09:44.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:44 smithi165 bash[22892]: audit 2024-03-11T23:09:43.638918+0000 mon.smithi149 (mon.0) 389 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:44.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:44 smithi165 bash[22892]: audit 2024-03-11T23:09:43.639124+0000 mon.smithi149 (mon.0) 390 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:44.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:44 smithi165 bash[22892]: audit 2024-03-11T23:09:43.639350+0000 mon.smithi149 (mon.0) 391 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:44.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:44 smithi165 bash[22892]: audit 2024-03-11T23:09:43.639524+0000 mon.smithi149 (mon.0) 392 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:09:44.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:44 smithi165 bash[22892]: audit 2024-03-11T23:09:43.950912+0000 mon.smithi149 (mon.0) 393 : audit 0 from='client.? 172.21.15.149:0/1971751613' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:09:44.784 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1710198583,"num_remapped_pgs":0} 2024-03-11T23:09:45.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:45 smithi149 bash[18736]: audit 2024-03-11T23:09:44.758291+0000 mon.smithi165 (mon.1) 4 : audit 0 from='client.? 172.21.15.165:0/2718795258' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:45.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:45 smithi165 bash[22892]: audit 2024-03-11T23:09:44.758291+0000 mon.smithi165 (mon.1) 4 : audit 0 from='client.? 172.21.15.165:0/2718795258' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:45.785 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd stat -f json 2024-03-11T23:09:46.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:46 smithi165 bash[22892]: cluster 2024-03-11T23:09:45.248224+0000 mgr.smithi149.leptec (mgr.14197) 94 : cluster 0 pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:46.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:46 smithi165 bash[22892]: audit 2024-03-11T23:09:45.525815+0000 mon.smithi149 (mon.0) 394 : audit 0 from='client.? 172.21.15.149:0/4045374855' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:46.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:46 smithi149 bash[18736]: cluster 2024-03-11T23:09:45.248224+0000 mgr.smithi149.leptec (mgr.14197) 94 : cluster 0 pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:46.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:46 smithi149 bash[18736]: audit 2024-03-11T23:09:45.525815+0000 mon.smithi149 (mon.0) 394 : audit 0 from='client.? 172.21.15.149:0/4045374855' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:48.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:48 smithi165 bash[22892]: cluster 2024-03-11T23:09:47.248547+0000 mgr.smithi149.leptec (mgr.14197) 95 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:48.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:48 smithi165 bash[22892]: audit 2024-03-11T23:09:47.577606+0000 mon.smithi165 (mon.1) 5 : audit 1 from='client.? 172.21.15.165:0/2840459012' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e88a5cfd-c503-4d06-b806-d2d7406d6677"}]: dispatch 2024-03-11T23:09:48.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:48 smithi165 bash[22892]: audit 2024-03-11T23:09:47.579229+0000 mon.smithi149 (mon.0) 395 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e88a5cfd-c503-4d06-b806-d2d7406d6677"}]: dispatch 2024-03-11T23:09:48.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:48 smithi165 bash[22892]: audit 2024-03-11T23:09:47.582450+0000 mon.smithi149 (mon.0) 396 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e88a5cfd-c503-4d06-b806-d2d7406d6677"}]': finished 2024-03-11T23:09:48.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:48 smithi165 bash[22892]: cluster 2024-03-11T23:09:47.585858+0000 mon.smithi149 (mon.0) 397 : cluster 0 osdmap e10: 5 total, 0 up, 5 in 2024-03-11T23:09:48.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:48 smithi165 bash[22892]: audit 2024-03-11T23:09:47.586352+0000 mon.smithi149 (mon.0) 398 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:48.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:48 smithi165 bash[22892]: audit 2024-03-11T23:09:47.586835+0000 mon.smithi149 (mon.0) 399 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:48.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:48 smithi165 bash[22892]: audit 2024-03-11T23:09:47.587345+0000 mon.smithi149 (mon.0) 400 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:48.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:48 smithi165 bash[22892]: audit 2024-03-11T23:09:47.587853+0000 mon.smithi149 (mon.0) 401 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:09:48.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:48 smithi165 bash[22892]: audit 2024-03-11T23:09:47.588401+0000 mon.smithi149 (mon.0) 402 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:09:48.612 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:48 smithi149 bash[18736]: cluster 2024-03-11T23:09:47.248547+0000 mgr.smithi149.leptec (mgr.14197) 95 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:48.612 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:48 smithi149 bash[18736]: audit 2024-03-11T23:09:47.577606+0000 mon.smithi165 (mon.1) 5 : audit 1 from='client.? 172.21.15.165:0/2840459012' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e88a5cfd-c503-4d06-b806-d2d7406d6677"}]: dispatch 2024-03-11T23:09:48.612 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:48 smithi149 bash[18736]: audit 2024-03-11T23:09:47.579229+0000 mon.smithi149 (mon.0) 395 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e88a5cfd-c503-4d06-b806-d2d7406d6677"}]: dispatch 2024-03-11T23:09:48.612 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:48 smithi149 bash[18736]: audit 2024-03-11T23:09:47.582450+0000 mon.smithi149 (mon.0) 396 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e88a5cfd-c503-4d06-b806-d2d7406d6677"}]': finished 2024-03-11T23:09:48.612 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:48 smithi149 bash[18736]: cluster 2024-03-11T23:09:47.585858+0000 mon.smithi149 (mon.0) 397 : cluster 0 osdmap e10: 5 total, 0 up, 5 in 2024-03-11T23:09:48.612 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:48 smithi149 bash[18736]: audit 2024-03-11T23:09:47.586352+0000 mon.smithi149 (mon.0) 398 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:48.612 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:48 smithi149 bash[18736]: audit 2024-03-11T23:09:47.586835+0000 mon.smithi149 (mon.0) 399 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:48.612 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:48 smithi149 bash[18736]: audit 2024-03-11T23:09:47.587345+0000 mon.smithi149 (mon.0) 400 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:48.612 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:48 smithi149 bash[18736]: audit 2024-03-11T23:09:47.587853+0000 mon.smithi149 (mon.0) 401 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:09:48.612 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:48 smithi149 bash[18736]: audit 2024-03-11T23:09:47.588401+0000 mon.smithi149 (mon.0) 402 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:09:49.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:49 smithi165 bash[22892]: audit 2024-03-11T23:09:48.357868+0000 mon.smithi149 (mon.0) 403 : audit 1 from='client.? 172.21.15.149:0/3828852835' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44a3522c-d9ae-40b5-b67c-d08409d56bd6"}]: dispatch 2024-03-11T23:09:49.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:49 smithi165 bash[22892]: audit 2024-03-11T23:09:48.360786+0000 mon.smithi149 (mon.0) 404 : audit 1 from='client.? 172.21.15.149:0/3828852835' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44a3522c-d9ae-40b5-b67c-d08409d56bd6"}]': finished 2024-03-11T23:09:49.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:49 smithi165 bash[22892]: cluster 2024-03-11T23:09:48.365650+0000 mon.smithi149 (mon.0) 405 : cluster 0 osdmap e11: 6 total, 0 up, 6 in 2024-03-11T23:09:49.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:49 smithi165 bash[22892]: audit 2024-03-11T23:09:48.365940+0000 mon.smithi149 (mon.0) 406 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:49.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:49 smithi165 bash[22892]: audit 2024-03-11T23:09:48.366211+0000 mon.smithi149 (mon.0) 407 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:49.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:49 smithi165 bash[22892]: audit 2024-03-11T23:09:48.366425+0000 mon.smithi149 (mon.0) 408 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:49.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:49 smithi165 bash[22892]: audit 2024-03-11T23:09:48.366639+0000 mon.smithi149 (mon.0) 409 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:09:49.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:49 smithi165 bash[22892]: audit 2024-03-11T23:09:48.366842+0000 mon.smithi149 (mon.0) 410 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:09:49.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:49 smithi165 bash[22892]: audit 2024-03-11T23:09:48.367057+0000 mon.smithi149 (mon.0) 411 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:09:49.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:49 smithi165 bash[22892]: audit 2024-03-11T23:09:49.183164+0000 mon.smithi165 (mon.1) 6 : audit 0 from='client.? 172.21.15.165:0/888011861' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:49.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:49 smithi149 bash[18736]: audit 2024-03-11T23:09:48.357868+0000 mon.smithi149 (mon.0) 403 : audit 1 from='client.? 172.21.15.149:0/3828852835' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44a3522c-d9ae-40b5-b67c-d08409d56bd6"}]: dispatch 2024-03-11T23:09:49.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:49 smithi149 bash[18736]: audit 2024-03-11T23:09:48.360786+0000 mon.smithi149 (mon.0) 404 : audit 1 from='client.? 172.21.15.149:0/3828852835' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44a3522c-d9ae-40b5-b67c-d08409d56bd6"}]': finished 2024-03-11T23:09:49.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:49 smithi149 bash[18736]: cluster 2024-03-11T23:09:48.365650+0000 mon.smithi149 (mon.0) 405 : cluster 0 osdmap e11: 6 total, 0 up, 6 in 2024-03-11T23:09:49.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:49 smithi149 bash[18736]: audit 2024-03-11T23:09:48.365940+0000 mon.smithi149 (mon.0) 406 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:49.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:49 smithi149 bash[18736]: audit 2024-03-11T23:09:48.366211+0000 mon.smithi149 (mon.0) 407 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:49.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:49 smithi149 bash[18736]: audit 2024-03-11T23:09:48.366425+0000 mon.smithi149 (mon.0) 408 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:49.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:49 smithi149 bash[18736]: audit 2024-03-11T23:09:48.366639+0000 mon.smithi149 (mon.0) 409 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:09:49.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:49 smithi149 bash[18736]: audit 2024-03-11T23:09:48.366842+0000 mon.smithi149 (mon.0) 410 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:09:49.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:49 smithi149 bash[18736]: audit 2024-03-11T23:09:48.367057+0000 mon.smithi149 (mon.0) 411 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:09:49.769 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:49 smithi149 bash[18736]: audit 2024-03-11T23:09:49.183164+0000 mon.smithi165 (mon.1) 6 : audit 0 from='client.? 172.21.15.165:0/888011861' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:50.532 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:09:50.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:50 smithi149 bash[18736]: cluster 2024-03-11T23:09:49.248966+0000 mgr.smithi149.leptec (mgr.14197) 96 : cluster 0 pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:50.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:50 smithi149 bash[18736]: audit 2024-03-11T23:09:49.999328+0000 mon.smithi149 (mon.0) 412 : audit 0 from='client.? 172.21.15.149:0/2594269612' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:50.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:50 smithi165 bash[22892]: cluster 2024-03-11T23:09:49.248966+0000 mgr.smithi149.leptec (mgr.14197) 96 : cluster 0 pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:50.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:50 smithi165 bash[22892]: audit 2024-03-11T23:09:49.999328+0000 mon.smithi149 (mon.0) 412 : audit 0 from='client.? 172.21.15.149:0/2594269612' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:52.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: cluster 2024-03-11T23:09:51.249294+0000 mgr.smithi149.leptec (mgr.14197) 97 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:52.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: audit 2024-03-11T23:09:52.029479+0000 mon.smithi165 (mon.1) 7 : audit 1 from='client.? 172.21.15.165:0/717607730' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "14ac30cb-836e-424b-a4fc-7018b5b5ad6c"}]: dispatch 2024-03-11T23:09:52.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: audit 2024-03-11T23:09:52.031035+0000 mon.smithi149 (mon.0) 413 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "14ac30cb-836e-424b-a4fc-7018b5b5ad6c"}]: dispatch 2024-03-11T23:09:52.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: audit 2024-03-11T23:09:52.033665+0000 mon.smithi149 (mon.0) 414 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "14ac30cb-836e-424b-a4fc-7018b5b5ad6c"}]': finished 2024-03-11T23:09:52.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: cluster 2024-03-11T23:09:52.036386+0000 mon.smithi149 (mon.0) 415 : cluster 0 osdmap e12: 7 total, 0 up, 7 in 2024-03-11T23:09:52.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: audit 2024-03-11T23:09:52.036706+0000 mon.smithi149 (mon.0) 416 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:52.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: audit 2024-03-11T23:09:52.037059+0000 mon.smithi149 (mon.0) 417 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:52.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: audit 2024-03-11T23:09:52.037521+0000 mon.smithi149 (mon.0) 418 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:52.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: audit 2024-03-11T23:09:52.037874+0000 mon.smithi149 (mon.0) 419 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:09:52.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: audit 2024-03-11T23:09:52.038206+0000 mon.smithi149 (mon.0) 420 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:09:52.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: audit 2024-03-11T23:09:52.038488+0000 mon.smithi149 (mon.0) 421 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:09:52.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:52 smithi165 bash[22892]: audit 2024-03-11T23:09:52.038837+0000 mon.smithi149 (mon.0) 422 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: cluster 2024-03-11T23:09:51.249294+0000 mgr.smithi149.leptec (mgr.14197) 97 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: audit 2024-03-11T23:09:52.029479+0000 mon.smithi165 (mon.1) 7 : audit 1 from='client.? 172.21.15.165:0/717607730' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "14ac30cb-836e-424b-a4fc-7018b5b5ad6c"}]: dispatch 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: audit 2024-03-11T23:09:52.031035+0000 mon.smithi149 (mon.0) 413 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "14ac30cb-836e-424b-a4fc-7018b5b5ad6c"}]: dispatch 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: audit 2024-03-11T23:09:52.033665+0000 mon.smithi149 (mon.0) 414 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "14ac30cb-836e-424b-a4fc-7018b5b5ad6c"}]': finished 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: cluster 2024-03-11T23:09:52.036386+0000 mon.smithi149 (mon.0) 415 : cluster 0 osdmap e12: 7 total, 0 up, 7 in 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: audit 2024-03-11T23:09:52.036706+0000 mon.smithi149 (mon.0) 416 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: audit 2024-03-11T23:09:52.037059+0000 mon.smithi149 (mon.0) 417 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: audit 2024-03-11T23:09:52.037521+0000 mon.smithi149 (mon.0) 418 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: audit 2024-03-11T23:09:52.037874+0000 mon.smithi149 (mon.0) 419 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: audit 2024-03-11T23:09:52.038206+0000 mon.smithi149 (mon.0) 420 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: audit 2024-03-11T23:09:52.038488+0000 mon.smithi149 (mon.0) 421 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:09:52.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:52 smithi149 bash[18736]: audit 2024-03-11T23:09:52.038837+0000 mon.smithi149 (mon.0) 422 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:09:53.491 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:09:53.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: audit 2024-03-11T23:09:52.835560+0000 mon.smithi149 (mon.0) 423 : audit 1 from='client.? 172.21.15.149:0/2753317370' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d0a80bdc-8cb7-46d6-84b1-2eb27001775b"}]: dispatch 2024-03-11T23:09:53.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: audit 2024-03-11T23:09:52.838281+0000 mon.smithi149 (mon.0) 424 : audit 1 from='client.? 172.21.15.149:0/2753317370' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d0a80bdc-8cb7-46d6-84b1-2eb27001775b"}]': finished 2024-03-11T23:09:53.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: cluster 2024-03-11T23:09:52.841077+0000 mon.smithi149 (mon.0) 425 : cluster 0 osdmap e13: 8 total, 0 up, 8 in 2024-03-11T23:09:53.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: audit 2024-03-11T23:09:52.841459+0000 mon.smithi149 (mon.0) 426 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:53.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: audit 2024-03-11T23:09:52.841806+0000 mon.smithi149 (mon.0) 427 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:53.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: audit 2024-03-11T23:09:52.842106+0000 mon.smithi149 (mon.0) 428 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:53.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: audit 2024-03-11T23:09:52.842408+0000 mon.smithi149 (mon.0) 429 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:09:53.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: audit 2024-03-11T23:09:52.842714+0000 mon.smithi149 (mon.0) 430 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:09:53.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: audit 2024-03-11T23:09:52.843012+0000 mon.smithi149 (mon.0) 431 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:09:53.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: audit 2024-03-11T23:09:52.843308+0000 mon.smithi149 (mon.0) 432 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:09:53.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:53 smithi149 bash[18736]: audit 2024-03-11T23:09:52.843600+0000 mon.smithi149 (mon.0) 433 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:09:53.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: audit 2024-03-11T23:09:52.835560+0000 mon.smithi149 (mon.0) 423 : audit 1 from='client.? 172.21.15.149:0/2753317370' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d0a80bdc-8cb7-46d6-84b1-2eb27001775b"}]: dispatch 2024-03-11T23:09:53.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: audit 2024-03-11T23:09:52.838281+0000 mon.smithi149 (mon.0) 424 : audit 1 from='client.? 172.21.15.149:0/2753317370' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d0a80bdc-8cb7-46d6-84b1-2eb27001775b"}]': finished 2024-03-11T23:09:53.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: cluster 2024-03-11T23:09:52.841077+0000 mon.smithi149 (mon.0) 425 : cluster 0 osdmap e13: 8 total, 0 up, 8 in 2024-03-11T23:09:53.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: audit 2024-03-11T23:09:52.841459+0000 mon.smithi149 (mon.0) 426 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:09:53.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: audit 2024-03-11T23:09:52.841806+0000 mon.smithi149 (mon.0) 427 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:09:53.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: audit 2024-03-11T23:09:52.842106+0000 mon.smithi149 (mon.0) 428 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:09:53.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: audit 2024-03-11T23:09:52.842408+0000 mon.smithi149 (mon.0) 429 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:09:53.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: audit 2024-03-11T23:09:52.842714+0000 mon.smithi149 (mon.0) 430 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:09:53.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: audit 2024-03-11T23:09:52.843012+0000 mon.smithi149 (mon.0) 431 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:09:53.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: audit 2024-03-11T23:09:52.843308+0000 mon.smithi149 (mon.0) 432 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:09:53.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:53 smithi165 bash[22892]: audit 2024-03-11T23:09:52.843600+0000 mon.smithi149 (mon.0) 433 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:09:54.329 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1710198592,"num_remapped_pgs":0} 2024-03-11T23:09:54.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:54 smithi149 bash[18736]: cluster 2024-03-11T23:09:53.249633+0000 mgr.smithi149.leptec (mgr.14197) 98 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:54.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:54 smithi149 bash[18736]: audit 2024-03-11T23:09:53.489010+0000 mon.smithi149 (mon.0) 434 : audit 0 from='client.? 172.21.15.149:0/2239356572' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:09:54.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:54 smithi149 bash[18736]: audit 2024-03-11T23:09:53.854744+0000 mon.smithi165 (mon.1) 8 : audit 0 from='client.? 172.21.15.165:0/35906907' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:54 smithi165 bash[22892]: cluster 2024-03-11T23:09:53.249633+0000 mgr.smithi149.leptec (mgr.14197) 98 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:54 smithi165 bash[22892]: audit 2024-03-11T23:09:53.489010+0000 mon.smithi149 (mon.0) 434 : audit 0 from='client.? 172.21.15.149:0/2239356572' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:09:54.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:54 smithi165 bash[22892]: audit 2024-03-11T23:09:53.854744+0000 mon.smithi165 (mon.1) 8 : audit 0 from='client.? 172.21.15.165:0/35906907' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:55.331 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd stat -f json 2024-03-11T23:09:55.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:55 smithi149 bash[18736]: audit 2024-03-11T23:09:54.742805+0000 mon.smithi149 (mon.0) 435 : audit 0 from='client.? 172.21.15.149:0/3477948510' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:55.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:55 smithi149 bash[18736]: audit 2024-03-11T23:09:55.297727+0000 mon.smithi149 (mon.0) 436 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:09:55.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:55 smithi165 bash[22892]: audit 2024-03-11T23:09:54.742805+0000 mon.smithi149 (mon.0) 435 : audit 0 from='client.? 172.21.15.149:0/3477948510' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-11T23:09:55.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:55 smithi165 bash[22892]: audit 2024-03-11T23:09:55.297727+0000 mon.smithi149 (mon.0) 436 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:09:56.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:56 smithi149 bash[18736]: cluster 2024-03-11T23:09:55.250100+0000 mgr.smithi149.leptec (mgr.14197) 99 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:56.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:56 smithi165 bash[22892]: cluster 2024-03-11T23:09:55.250100+0000 mgr.smithi149.leptec (mgr.14197) 99 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:58.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:09:58 smithi149 bash[18736]: cluster 2024-03-11T23:09:57.250606+0000 mgr.smithi149.leptec (mgr.14197) 100 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:09:58.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:09:58 smithi165 bash[22892]: cluster 2024-03-11T23:09:57.250606+0000 mgr.smithi149.leptec (mgr.14197) 100 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:00.418 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:10:00.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:00 smithi149 bash[18736]: cluster 2024-03-11T23:09:59.250956+0000 mgr.smithi149.leptec (mgr.14197) 101 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:00.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:00 smithi149 bash[18736]: cluster 2024-03-11T23:10:00.000158+0000 mon.smithi149 (mon.0) 437 : cluster 1 overall HEALTH_OK 2024-03-11T23:10:00.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:00 smithi165 bash[22892]: cluster 2024-03-11T23:09:59.250956+0000 mgr.smithi149.leptec (mgr.14197) 101 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:00.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:00 smithi165 bash[22892]: cluster 2024-03-11T23:10:00.000158+0000 mon.smithi149 (mon.0) 437 : cluster 1 overall HEALTH_OK 2024-03-11T23:10:02.675 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:02 smithi165 bash[22892]: cluster 2024-03-11T23:10:01.251280+0000 mgr.smithi149.leptec (mgr.14197) 102 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:02.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:02 smithi149 bash[18736]: cluster 2024-03-11T23:10:01.251280+0000 mgr.smithi149.leptec (mgr.14197) 102 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:03.555 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:10:04.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:04 smithi149 bash[18736]: cluster 2024-03-11T23:10:03.251551+0000 mgr.smithi149.leptec (mgr.14197) 103 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:04.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:04 smithi149 bash[18736]: audit 2024-03-11T23:10:03.553431+0000 mon.smithi149 (mon.0) 438 : audit 0 from='client.? 172.21.15.149:0/520803301' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:10:04.559 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1710198592,"num_remapped_pgs":0} 2024-03-11T23:10:04.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:04 smithi165 bash[22892]: cluster 2024-03-11T23:10:03.251551+0000 mgr.smithi149.leptec (mgr.14197) 103 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:04.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:04 smithi165 bash[22892]: audit 2024-03-11T23:10:03.553431+0000 mon.smithi149 (mon.0) 438 : audit 0 from='client.? 172.21.15.149:0/520803301' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:10:05.560 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd stat -f json 2024-03-11T23:10:06.703 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:06 smithi165 bash[22892]: cluster 2024-03-11T23:10:05.251888+0000 mgr.smithi149.leptec (mgr.14197) 104 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:06.703 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:06 smithi165 bash[22892]: audit 2024-03-11T23:10:05.412448+0000 mon.smithi149 (mon.0) 439 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-03-11T23:10:06.703 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:06 smithi165 bash[22892]: audit 2024-03-11T23:10:05.413351+0000 mon.smithi149 (mon.0) 440 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:06.703 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:06 smithi165 bash[22892]: cephadm 2024-03-11T23:10:05.414136+0000 mgr.smithi149.leptec (mgr.14197) 105 : cephadm 1 Deploying daemon osd.0 on smithi165 2024-03-11T23:10:06.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:06 smithi149 bash[18736]: cluster 2024-03-11T23:10:05.251888+0000 mgr.smithi149.leptec (mgr.14197) 104 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:06.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:06 smithi149 bash[18736]: audit 2024-03-11T23:10:05.412448+0000 mon.smithi149 (mon.0) 439 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-03-11T23:10:06.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:06 smithi149 bash[18736]: audit 2024-03-11T23:10:05.413351+0000 mon.smithi149 (mon.0) 440 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:06.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:06 smithi149 bash[18736]: cephadm 2024-03-11T23:10:05.414136+0000 mgr.smithi149.leptec (mgr.14197) 105 : cephadm 1 Deploying daemon osd.0 on smithi165 2024-03-11T23:10:07.694 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:07 smithi165 bash[22892]: audit 2024-03-11T23:10:06.580023+0000 mon.smithi149 (mon.0) 441 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-03-11T23:10:07.695 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:07 smithi165 bash[22892]: audit 2024-03-11T23:10:06.581530+0000 mon.smithi149 (mon.0) 442 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:07.695 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:07 smithi165 bash[22892]: cephadm 2024-03-11T23:10:06.582957+0000 mgr.smithi149.leptec (mgr.14197) 106 : cephadm 1 Deploying daemon osd.1 on smithi149 2024-03-11T23:10:07.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:07 smithi149 bash[18736]: audit 2024-03-11T23:10:06.580023+0000 mon.smithi149 (mon.0) 441 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-03-11T23:10:07.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:07 smithi149 bash[18736]: audit 2024-03-11T23:10:06.581530+0000 mon.smithi149 (mon.0) 442 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:07.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:07 smithi149 bash[18736]: cephadm 2024-03-11T23:10:06.582957+0000 mgr.smithi149.leptec (mgr.14197) 106 : cephadm 1 Deploying daemon osd.1 on smithi149 2024-03-11T23:10:08.676 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:08 smithi149 bash[18736]: cluster 2024-03-11T23:10:07.252302+0000 mgr.smithi149.leptec (mgr.14197) 107 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:08.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:08 smithi165 bash[22892]: cluster 2024-03-11T23:10:07.252302+0000 mgr.smithi149.leptec (mgr.14197) 107 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:09.542 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:09 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:09.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:09 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:10.863 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:10:10.902 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:10 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:10.902 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:10 smithi149 bash[18736]: cluster 2024-03-11T23:10:09.252664+0000 mgr.smithi149.leptec (mgr.14197) 108 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:10.902 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:10 smithi149 bash[18736]: audit 2024-03-11T23:10:09.808994+0000 mon.smithi149 (mon.0) 443 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:10.902 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:10 smithi149 bash[18736]: audit 2024-03-11T23:10:09.813009+0000 mon.smithi149 (mon.0) 444 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:10.902 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:10 smithi149 bash[18736]: audit 2024-03-11T23:10:09.813731+0000 mon.smithi149 (mon.0) 445 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-03-11T23:10:10.902 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:10 smithi149 bash[18736]: audit 2024-03-11T23:10:09.814383+0000 mon.smithi149 (mon.0) 446 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:10.902 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:10 smithi149 bash[18736]: cephadm 2024-03-11T23:10:09.814985+0000 mgr.smithi149.leptec (mgr.14197) 109 : cephadm 1 Deploying daemon osd.2 on smithi165 2024-03-11T23:10:10.902 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:10 smithi149 bash[18736]: audit 2024-03-11T23:10:10.297959+0000 mon.smithi149 (mon.0) 447 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:10:11.169 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:11 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:11.172 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:10 smithi165 bash[22892]: cluster 2024-03-11T23:10:09.252664+0000 mgr.smithi149.leptec (mgr.14197) 108 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:11.172 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:10 smithi165 bash[22892]: audit 2024-03-11T23:10:09.808994+0000 mon.smithi149 (mon.0) 443 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:11.172 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:10 smithi165 bash[22892]: audit 2024-03-11T23:10:09.813009+0000 mon.smithi149 (mon.0) 444 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:11.173 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:10 smithi165 bash[22892]: audit 2024-03-11T23:10:09.813731+0000 mon.smithi149 (mon.0) 445 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-03-11T23:10:11.173 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:10 smithi165 bash[22892]: audit 2024-03-11T23:10:09.814383+0000 mon.smithi149 (mon.0) 446 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:11.173 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:10 smithi165 bash[22892]: cephadm 2024-03-11T23:10:09.814985+0000 mgr.smithi149.leptec (mgr.14197) 109 : cephadm 1 Deploying daemon osd.2 on smithi165 2024-03-11T23:10:11.173 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:10 smithi165 bash[22892]: audit 2024-03-11T23:10:10.297959+0000 mon.smithi149 (mon.0) 447 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:10:12.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:12 smithi149 bash[18736]: audit 2024-03-11T23:10:11.214961+0000 mon.smithi149 (mon.0) 448 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:12.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:12 smithi149 bash[18736]: audit 2024-03-11T23:10:11.220385+0000 mon.smithi149 (mon.0) 449 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:12.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:12 smithi149 bash[18736]: audit 2024-03-11T23:10:11.229437+0000 mon.smithi149 (mon.0) 450 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-03-11T23:10:12.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:12 smithi149 bash[18736]: audit 2024-03-11T23:10:11.230154+0000 mon.smithi149 (mon.0) 451 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:12.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:12 smithi149 bash[18736]: cephadm 2024-03-11T23:10:11.230790+0000 mgr.smithi149.leptec (mgr.14197) 110 : cephadm 1 Deploying daemon osd.3 on smithi149 2024-03-11T23:10:12.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:12 smithi149 bash[18736]: cluster 2024-03-11T23:10:11.252917+0000 mgr.smithi149.leptec (mgr.14197) 111 : cluster 0 pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:12.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:12 smithi165 bash[22892]: audit 2024-03-11T23:10:11.214961+0000 mon.smithi149 (mon.0) 448 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:12.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:12 smithi165 bash[22892]: audit 2024-03-11T23:10:11.220385+0000 mon.smithi149 (mon.0) 449 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:12.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:12 smithi165 bash[22892]: audit 2024-03-11T23:10:11.229437+0000 mon.smithi149 (mon.0) 450 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-03-11T23:10:12.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:12 smithi165 bash[22892]: audit 2024-03-11T23:10:11.230154+0000 mon.smithi149 (mon.0) 451 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:12.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:12 smithi165 bash[22892]: cephadm 2024-03-11T23:10:11.230790+0000 mgr.smithi149.leptec (mgr.14197) 110 : cephadm 1 Deploying daemon osd.3 on smithi149 2024-03-11T23:10:12.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:12 smithi165 bash[22892]: cluster 2024-03-11T23:10:11.252917+0000 mgr.smithi149.leptec (mgr.14197) 111 : cluster 0 pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:14.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:14 smithi149 bash[18736]: cluster 2024-03-11T23:10:13.253265+0000 mgr.smithi149.leptec (mgr.14197) 112 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:14.663 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:14 smithi165 bash[22892]: cluster 2024-03-11T23:10:13.253265+0000 mgr.smithi149.leptec (mgr.14197) 112 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:15.259 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:15 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:15.259 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:15 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:16.495 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:10:16.675 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:16 smithi165 bash[22892]: cluster 2024-03-11T23:10:15.253611+0000 mgr.smithi149.leptec (mgr.14197) 113 : cluster 0 pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:16.676 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:16 smithi165 bash[22892]: audit 2024-03-11T23:10:15.415589+0000 mon.smithi149 (mon.0) 452 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:16.676 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:16 smithi165 bash[22892]: audit 2024-03-11T23:10:15.425079+0000 mon.smithi149 (mon.0) 453 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:16.676 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:16 smithi165 bash[22892]: audit 2024-03-11T23:10:15.427008+0000 mon.smithi149 (mon.0) 454 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-03-11T23:10:16.676 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:16 smithi165 bash[22892]: audit 2024-03-11T23:10:15.428793+0000 mon.smithi149 (mon.0) 455 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:16.676 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:16 smithi165 bash[22892]: cephadm 2024-03-11T23:10:15.430344+0000 mgr.smithi149.leptec (mgr.14197) 114 : cephadm 1 Deploying daemon osd.4 on smithi165 2024-03-11T23:10:16.733 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:16 smithi149 bash[18736]: cluster 2024-03-11T23:10:15.253611+0000 mgr.smithi149.leptec (mgr.14197) 113 : cluster 0 pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:16.734 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:16 smithi149 bash[18736]: audit 2024-03-11T23:10:15.415589+0000 mon.smithi149 (mon.0) 452 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:16.734 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:16 smithi149 bash[18736]: audit 2024-03-11T23:10:15.425079+0000 mon.smithi149 (mon.0) 453 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:16.734 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:16 smithi149 bash[18736]: audit 2024-03-11T23:10:15.427008+0000 mon.smithi149 (mon.0) 454 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-03-11T23:10:16.734 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:16 smithi149 bash[18736]: audit 2024-03-11T23:10:15.428793+0000 mon.smithi149 (mon.0) 455 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:16.734 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:16 smithi149 bash[18736]: cephadm 2024-03-11T23:10:15.430344+0000 mgr.smithi149.leptec (mgr.14197) 114 : cephadm 1 Deploying daemon osd.4 on smithi165 2024-03-11T23:10:17.517 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:17 smithi165 bash[22892]: audit 2024-03-11T23:10:16.493109+0000 mon.smithi149 (mon.0) 456 : audit 0 from='client.? 172.21.15.149:0/3126616980' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:10:17.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:17 smithi149 bash[18736]: audit 2024-03-11T23:10:16.493109+0000 mon.smithi149 (mon.0) 456 : audit 0 from='client.? 172.21.15.149:0/3126616980' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:10:17.930 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1710198592,"num_remapped_pgs":0} 2024-03-11T23:10:18.653 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:18 smithi149 bash[18736]: cluster 2024-03-11T23:10:17.254022+0000 mgr.smithi149.leptec (mgr.14197) 115 : cluster 0 pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:18.653 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:18 smithi149 bash[18736]: audit 2024-03-11T23:10:17.736838+0000 mon.smithi165 (mon.1) 9 : audit 1 from='osd.0 [v2:172.21.15.165:6800/3784371564,v1:172.21.15.165:6801/3784371564]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-11T23:10:18.653 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:18 smithi149 bash[18736]: audit 2024-03-11T23:10:17.738584+0000 mon.smithi149 (mon.0) 457 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-11T23:10:18.653 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:18 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:18.814 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:18 smithi165 bash[22892]: cluster 2024-03-11T23:10:17.254022+0000 mgr.smithi149.leptec (mgr.14197) 115 : cluster 0 pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:18.815 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:18 smithi165 bash[22892]: audit 2024-03-11T23:10:17.736838+0000 mon.smithi165 (mon.1) 9 : audit 1 from='osd.0 [v2:172.21.15.165:6800/3784371564,v1:172.21.15.165:6801/3784371564]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-11T23:10:18.815 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:18 smithi165 bash[22892]: audit 2024-03-11T23:10:17.738584+0000 mon.smithi149 (mon.0) 457 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-11T23:10:18.932 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd stat -f json 2024-03-11T23:10:18.933 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:18 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:19.526 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.423257+0000 mon.smithi149 (mon.0) 458 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-03-11T23:10:19.526 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: cluster 2024-03-11T23:10:18.425871+0000 mon.smithi149 (mon.0) 459 : cluster 0 osdmap e14: 8 total, 0 up, 8 in 2024-03-11T23:10:19.526 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.426340+0000 mon.smithi149 (mon.0) 460 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:10:19.526 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.426652+0000 mon.smithi149 (mon.0) 461 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:19.526 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.426864+0000 mon.smithi149 (mon.0) 462 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:19.526 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.427094+0000 mon.smithi149 (mon.0) 463 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:19.526 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.427285+0000 mon.smithi149 (mon.0) 464 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:19.527 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.427486+0000 mon.smithi149 (mon.0) 465 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:19.527 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.427697+0000 mon.smithi149 (mon.0) 466 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:19.527 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.427876+0000 mon.smithi149 (mon.0) 467 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:19.527 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.430507+0000 mon.smithi165 (mon.1) 10 : audit 1 from='osd.0 [v2:172.21.15.165:6800/3784371564,v1:172.21.15.165:6801/3784371564]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:19.527 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.437083+0000 mon.smithi149 (mon.0) 468 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:19.527 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.981352+0000 mon.smithi149 (mon.0) 469 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:19.527 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.986757+0000 mon.smithi149 (mon.0) 470 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:19.527 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.987849+0000 mon.smithi149 (mon.0) 471 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-03-11T23:10:19.527 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:19 smithi165 bash[22892]: audit 2024-03-11T23:10:18.988615+0000 mon.smithi149 (mon.0) 472 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:19.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.423257+0000 mon.smithi149 (mon.0) 458 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: cluster 2024-03-11T23:10:18.425871+0000 mon.smithi149 (mon.0) 459 : cluster 0 osdmap e14: 8 total, 0 up, 8 in 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.426340+0000 mon.smithi149 (mon.0) 460 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.426652+0000 mon.smithi149 (mon.0) 461 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.426864+0000 mon.smithi149 (mon.0) 462 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.427094+0000 mon.smithi149 (mon.0) 463 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.427285+0000 mon.smithi149 (mon.0) 464 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.427486+0000 mon.smithi149 (mon.0) 465 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.427697+0000 mon.smithi149 (mon.0) 466 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.427876+0000 mon.smithi149 (mon.0) 467 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.430507+0000 mon.smithi165 (mon.1) 10 : audit 1 from='osd.0 [v2:172.21.15.165:6800/3784371564,v1:172.21.15.165:6801/3784371564]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.437083+0000 mon.smithi149 (mon.0) 468 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.981352+0000 mon.smithi149 (mon.0) 469 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.986757+0000 mon.smithi149 (mon.0) 470 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:19.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.987849+0000 mon.smithi149 (mon.0) 471 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-03-11T23:10:19.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:19 smithi149 bash[18736]: audit 2024-03-11T23:10:18.988615+0000 mon.smithi149 (mon.0) 472 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:20.738 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: cephadm 2024-03-11T23:10:18.989251+0000 mgr.smithi149.leptec (mgr.14197) 116 : cephadm 1 Deploying daemon osd.5 on smithi149 2024-03-11T23:10:20.738 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: cluster 2024-03-11T23:10:19.254414+0000 mgr.smithi149.leptec (mgr.14197) 117 : cluster 0 pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:20.738 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: audit 2024-03-11T23:10:19.432784+0000 mon.smithi149 (mon.0) 473 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-03-11T23:10:20.738 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: cluster 2024-03-11T23:10:19.435702+0000 mon.smithi149 (mon.0) 474 : cluster 0 osdmap e15: 8 total, 0 up, 8 in 2024-03-11T23:10:20.738 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: audit 2024-03-11T23:10:19.436103+0000 mon.smithi149 (mon.0) 475 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:10:20.738 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: audit 2024-03-11T23:10:19.436272+0000 mon.smithi149 (mon.0) 476 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:20.738 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: audit 2024-03-11T23:10:19.436426+0000 mon.smithi149 (mon.0) 477 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:20.738 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: audit 2024-03-11T23:10:19.436587+0000 mon.smithi149 (mon.0) 478 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:20.739 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: audit 2024-03-11T23:10:19.436725+0000 mon.smithi149 (mon.0) 479 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:20.739 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: audit 2024-03-11T23:10:19.440296+0000 mon.smithi149 (mon.0) 480 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:20.739 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: audit 2024-03-11T23:10:19.440480+0000 mon.smithi149 (mon.0) 481 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:20.739 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: audit 2024-03-11T23:10:19.440631+0000 mon.smithi149 (mon.0) 482 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:20.739 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 bash[22892]: audit 2024-03-11T23:10:19.441198+0000 mon.smithi149 (mon.0) 483 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:10:20.739 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:20.739 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: cephadm 2024-03-11T23:10:18.989251+0000 mgr.smithi149.leptec (mgr.14197) 116 : cephadm 1 Deploying daemon osd.5 on smithi149 2024-03-11T23:10:20.739 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: cluster 2024-03-11T23:10:19.254414+0000 mgr.smithi149.leptec (mgr.14197) 117 : cluster 0 pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:20.739 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: audit 2024-03-11T23:10:19.432784+0000 mon.smithi149 (mon.0) 473 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-03-11T23:10:20.739 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: cluster 2024-03-11T23:10:19.435702+0000 mon.smithi149 (mon.0) 474 : cluster 0 osdmap e15: 8 total, 0 up, 8 in 2024-03-11T23:10:20.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: audit 2024-03-11T23:10:19.436103+0000 mon.smithi149 (mon.0) 475 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:10:20.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: audit 2024-03-11T23:10:19.436272+0000 mon.smithi149 (mon.0) 476 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:20.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: audit 2024-03-11T23:10:19.436426+0000 mon.smithi149 (mon.0) 477 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:20.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: audit 2024-03-11T23:10:19.436587+0000 mon.smithi149 (mon.0) 478 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:20.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: audit 2024-03-11T23:10:19.436725+0000 mon.smithi149 (mon.0) 479 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:20.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: audit 2024-03-11T23:10:19.440296+0000 mon.smithi149 (mon.0) 480 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:20.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: audit 2024-03-11T23:10:19.440480+0000 mon.smithi149 (mon.0) 481 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:20.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: audit 2024-03-11T23:10:19.440631+0000 mon.smithi149 (mon.0) 482 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:20.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:20 smithi149 bash[18736]: audit 2024-03-11T23:10:19.441198+0000 mon.smithi149 (mon.0) 483 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:10:21.001 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:20 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:21.538 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: cluster 2024-03-11T23:10:18.709401+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:21.538 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: cluster 2024-03-11T23:10:18.709496+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:21.538 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:20.447853+0000 mon.smithi149 (mon.0) 484 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:10:21.538 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: cluster 2024-03-11T23:10:20.453089+0000 mon.smithi149 (mon.0) 485 : cluster 1 osd.0 [v2:172.21.15.165:6800/3784371564,v1:172.21.15.165:6801/3784371564] boot 2024-03-11T23:10:21.538 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: cluster 2024-03-11T23:10:20.453199+0000 mon.smithi149 (mon.0) 486 : cluster 0 osdmap e16: 8 total, 1 up, 8 in 2024-03-11T23:10:21.538 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:20.453729+0000 mon.smithi149 (mon.0) 487 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:10:21.538 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:20.454342+0000 mon.smithi149 (mon.0) 488 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:21.538 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:20.454931+0000 mon.smithi149 (mon.0) 489 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:21.539 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:20.455508+0000 mon.smithi149 (mon.0) 490 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:21.539 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:20.456092+0000 mon.smithi149 (mon.0) 491 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:21.539 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:20.456696+0000 mon.smithi149 (mon.0) 492 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:21.539 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:20.457255+0000 mon.smithi149 (mon.0) 493 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:21.539 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:20.457655+0000 mon.smithi149 (mon.0) 494 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:21.539 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:20.590828+0000 mon.smithi149 (mon.0) 495 : audit 1 from='osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-03-11T23:10:21.539 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:21.052461+0000 mon.smithi149 (mon.0) 496 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:21.539 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:21.060462+0000 mon.smithi149 (mon.0) 497 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:21.539 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:21.062170+0000 mon.smithi149 (mon.0) 498 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-03-11T23:10:21.539 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:21 smithi149 bash[18736]: audit 2024-03-11T23:10:21.063124+0000 mon.smithi149 (mon.0) 499 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:21.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: cluster 2024-03-11T23:10:18.709401+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:21.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: cluster 2024-03-11T23:10:18.709496+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:21.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:20.447853+0000 mon.smithi149 (mon.0) 484 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:10:21.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: cluster 2024-03-11T23:10:20.453089+0000 mon.smithi149 (mon.0) 485 : cluster 1 osd.0 [v2:172.21.15.165:6800/3784371564,v1:172.21.15.165:6801/3784371564] boot 2024-03-11T23:10:21.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: cluster 2024-03-11T23:10:20.453199+0000 mon.smithi149 (mon.0) 486 : cluster 0 osdmap e16: 8 total, 1 up, 8 in 2024-03-11T23:10:21.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:20.453729+0000 mon.smithi149 (mon.0) 487 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-11T23:10:21.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:20.454342+0000 mon.smithi149 (mon.0) 488 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:21.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:20.454931+0000 mon.smithi149 (mon.0) 489 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:21.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:20.455508+0000 mon.smithi149 (mon.0) 490 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:21.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:20.456092+0000 mon.smithi149 (mon.0) 491 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:21.813 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:20.456696+0000 mon.smithi149 (mon.0) 492 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:21.813 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:20.457255+0000 mon.smithi149 (mon.0) 493 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:21.813 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:20.457655+0000 mon.smithi149 (mon.0) 494 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:21.813 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:20.590828+0000 mon.smithi149 (mon.0) 495 : audit 1 from='osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-03-11T23:10:21.813 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:21.052461+0000 mon.smithi149 (mon.0) 496 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:21.813 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:21.060462+0000 mon.smithi149 (mon.0) 497 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:21.814 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:21.062170+0000 mon.smithi149 (mon.0) 498 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-03-11T23:10:21.814 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:21 smithi165 bash[22892]: audit 2024-03-11T23:10:21.063124+0000 mon.smithi149 (mon.0) 499 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:22.743 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: cephadm 2024-03-11T23:10:21.063961+0000 mgr.smithi149.leptec (mgr.14197) 118 : cephadm 1 Deploying daemon osd.6 on smithi165 2024-03-11T23:10:22.743 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: cluster 2024-03-11T23:10:21.254726+0000 mgr.smithi149.leptec (mgr.14197) 119 : cluster 0 pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:22.743 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: audit 2024-03-11T23:10:21.449947+0000 mon.smithi149 (mon.0) 500 : audit 1 from='osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-03-11T23:10:22.744 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: cluster 2024-03-11T23:10:21.452283+0000 mon.smithi149 (mon.0) 501 : cluster 0 osdmap e17: 8 total, 1 up, 8 in 2024-03-11T23:10:22.744 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: audit 2024-03-11T23:10:21.452521+0000 mon.smithi149 (mon.0) 502 : audit 1 from='osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2024-03-11T23:10:22.744 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: audit 2024-03-11T23:10:21.452770+0000 mon.smithi149 (mon.0) 503 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:22.744 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: audit 2024-03-11T23:10:21.452935+0000 mon.smithi149 (mon.0) 504 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:22.744 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: audit 2024-03-11T23:10:21.453092+0000 mon.smithi149 (mon.0) 505 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:22.744 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: audit 2024-03-11T23:10:21.453279+0000 mon.smithi149 (mon.0) 506 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:22.744 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: audit 2024-03-11T23:10:21.453433+0000 mon.smithi149 (mon.0) 507 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:22.744 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: audit 2024-03-11T23:10:21.453629+0000 mon.smithi149 (mon.0) 508 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:22.744 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:22 smithi165 bash[22892]: audit 2024-03-11T23:10:21.453807+0000 mon.smithi149 (mon.0) 509 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:22.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: cephadm 2024-03-11T23:10:21.063961+0000 mgr.smithi149.leptec (mgr.14197) 118 : cephadm 1 Deploying daemon osd.6 on smithi165 2024-03-11T23:10:22.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: cluster 2024-03-11T23:10:21.254726+0000 mgr.smithi149.leptec (mgr.14197) 119 : cluster 0 pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-11T23:10:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: audit 2024-03-11T23:10:21.449947+0000 mon.smithi149 (mon.0) 500 : audit 1 from='osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-03-11T23:10:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: cluster 2024-03-11T23:10:21.452283+0000 mon.smithi149 (mon.0) 501 : cluster 0 osdmap e17: 8 total, 1 up, 8 in 2024-03-11T23:10:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: audit 2024-03-11T23:10:21.452521+0000 mon.smithi149 (mon.0) 502 : audit 1 from='osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2024-03-11T23:10:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: audit 2024-03-11T23:10:21.452770+0000 mon.smithi149 (mon.0) 503 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: audit 2024-03-11T23:10:21.452935+0000 mon.smithi149 (mon.0) 504 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: audit 2024-03-11T23:10:21.453092+0000 mon.smithi149 (mon.0) 505 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: audit 2024-03-11T23:10:21.453279+0000 mon.smithi149 (mon.0) 506 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: audit 2024-03-11T23:10:21.453433+0000 mon.smithi149 (mon.0) 507 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:22.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: audit 2024-03-11T23:10:21.453629+0000 mon.smithi149 (mon.0) 508 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:22.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:22 smithi149 bash[18736]: audit 2024-03-11T23:10:21.453807+0000 mon.smithi149 (mon.0) 509 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:23.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:22.452309+0000 mon.smithi149 (mon.0) 510 : audit 1 from='osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: cluster 2024-03-11T23:10:22.456087+0000 mon.smithi149 (mon.0) 511 : cluster 0 osdmap e18: 8 total, 1 up, 8 in 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:22.457736+0000 mon.smithi149 (mon.0) 512 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:22.458158+0000 mon.smithi149 (mon.0) 513 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:22.458439+0000 mon.smithi149 (mon.0) 514 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:22.458707+0000 mon.smithi149 (mon.0) 515 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:22.459026+0000 mon.smithi149 (mon.0) 516 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:22.459300+0000 mon.smithi149 (mon.0) 517 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:22.459606+0000 mon.smithi149 (mon.0) 518 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:22.462026+0000 mon.smithi149 (mon.0) 519 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:22.983881+0000 mon.smithi149 (mon.0) 520 : audit 1 from='osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692]' entity='osd.1' 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:23.249932+0000 mon.smithi165 (mon.1) 11 : audit 1 from='osd.2 [v2:172.21.15.165:6808/4211583200,v1:172.21.15.165:6809/4211583200]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:23.251315+0000 mon.smithi149 (mon.0) 521 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-11T23:10:23.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:23 smithi149 bash[18736]: audit 2024-03-11T23:10:23.462290+0000 mon.smithi149 (mon.0) 522 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:22.452309+0000 mon.smithi149 (mon.0) 510 : audit 1 from='osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: cluster 2024-03-11T23:10:22.456087+0000 mon.smithi149 (mon.0) 511 : cluster 0 osdmap e18: 8 total, 1 up, 8 in 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:22.457736+0000 mon.smithi149 (mon.0) 512 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:22.458158+0000 mon.smithi149 (mon.0) 513 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:22.458439+0000 mon.smithi149 (mon.0) 514 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:22.458707+0000 mon.smithi149 (mon.0) 515 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:22.459026+0000 mon.smithi149 (mon.0) 516 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:22.459300+0000 mon.smithi149 (mon.0) 517 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:22.459606+0000 mon.smithi149 (mon.0) 518 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:22.462026+0000 mon.smithi149 (mon.0) 519 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:22.983881+0000 mon.smithi149 (mon.0) 520 : audit 1 from='osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692]' entity='osd.1' 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:23.249932+0000 mon.smithi165 (mon.1) 11 : audit 1 from='osd.2 [v2:172.21.15.165:6808/4211583200,v1:172.21.15.165:6809/4211583200]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-11T23:10:23.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:23.251315+0000 mon.smithi149 (mon.0) 521 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-11T23:10:23.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:23 smithi165 bash[22892]: audit 2024-03-11T23:10:23.462290+0000 mon.smithi149 (mon.0) 522 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:24.441 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:24.728 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: cluster 2024-03-11T23:10:21.541258+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:24.728 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: cluster 2024-03-11T23:10:21.541329+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:24.728 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: cluster 2024-03-11T23:10:23.255142+0000 mgr.smithi149.leptec (mgr.14197) 120 : cluster 0 pgmap v72: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-03-11T23:10:24.728 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: audit 2024-03-11T23:10:23.984540+0000 mon.smithi149 (mon.0) 523 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-03-11T23:10:24.728 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: cluster 2024-03-11T23:10:23.989212+0000 mon.smithi149 (mon.0) 524 : cluster 1 osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692] boot 2024-03-11T23:10:24.728 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: cluster 2024-03-11T23:10:23.989251+0000 mon.smithi149 (mon.0) 525 : cluster 0 osdmap e19: 8 total, 2 up, 8 in 2024-03-11T23:10:24.728 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: audit 2024-03-11T23:10:23.989753+0000 mon.smithi149 (mon.0) 526 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:24.728 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: audit 2024-03-11T23:10:23.990046+0000 mon.smithi149 (mon.0) 527 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:24.729 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: audit 2024-03-11T23:10:23.990378+0000 mon.smithi149 (mon.0) 528 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:24.729 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: audit 2024-03-11T23:10:23.990617+0000 mon.smithi149 (mon.0) 529 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:24.729 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: audit 2024-03-11T23:10:23.990872+0000 mon.smithi149 (mon.0) 530 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:24.729 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: audit 2024-03-11T23:10:23.991139+0000 mon.smithi149 (mon.0) 531 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:24.729 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: audit 2024-03-11T23:10:23.991425+0000 mon.smithi149 (mon.0) 532 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:24.729 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: audit 2024-03-11T23:10:23.993305+0000 mon.smithi165 (mon.1) 12 : audit 1 from='osd.2 [v2:172.21.15.165:6808/4211583200,v1:172.21.15.165:6809/4211583200]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:24.729 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 bash[18736]: audit 2024-03-11T23:10:23.999029+0000 mon.smithi149 (mon.0) 533 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:24.729 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:24 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: cluster 2024-03-11T23:10:21.541258+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: cluster 2024-03-11T23:10:21.541329+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: cluster 2024-03-11T23:10:23.255142+0000 mgr.smithi149.leptec (mgr.14197) 120 : cluster 0 pgmap v72: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: audit 2024-03-11T23:10:23.984540+0000 mon.smithi149 (mon.0) 523 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: cluster 2024-03-11T23:10:23.989212+0000 mon.smithi149 (mon.0) 524 : cluster 1 osd.1 [v2:172.21.15.149:6802/2303175692,v1:172.21.15.149:6803/2303175692] boot 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: cluster 2024-03-11T23:10:23.989251+0000 mon.smithi149 (mon.0) 525 : cluster 0 osdmap e19: 8 total, 2 up, 8 in 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: audit 2024-03-11T23:10:23.989753+0000 mon.smithi149 (mon.0) 526 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: audit 2024-03-11T23:10:23.990046+0000 mon.smithi149 (mon.0) 527 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: audit 2024-03-11T23:10:23.990378+0000 mon.smithi149 (mon.0) 528 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: audit 2024-03-11T23:10:23.990617+0000 mon.smithi149 (mon.0) 529 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: audit 2024-03-11T23:10:23.990872+0000 mon.smithi149 (mon.0) 530 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:24.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: audit 2024-03-11T23:10:23.991139+0000 mon.smithi149 (mon.0) 531 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:24.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: audit 2024-03-11T23:10:23.991425+0000 mon.smithi149 (mon.0) 532 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:24.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: audit 2024-03-11T23:10:23.993305+0000 mon.smithi165 (mon.1) 12 : audit 1 from='osd.2 [v2:172.21.15.165:6808/4211583200,v1:172.21.15.165:6809/4211583200]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:24.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:24 smithi165 bash[22892]: audit 2024-03-11T23:10:23.999029+0000 mon.smithi149 (mon.0) 533 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:25.507 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:10:25.968 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:24.765159+0000 mon.smithi149 (mon.0) 534 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:25.968 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:24.771886+0000 mon.smithi149 (mon.0) 535 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:24.773052+0000 mon.smithi149 (mon.0) 536 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:24.773905+0000 mon.smithi149 (mon.0) 537 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: cephadm 2024-03-11T23:10:24.774684+0000 mgr.smithi149.leptec (mgr.14197) 121 : cephadm 1 Deploying daemon osd.7 on smithi149 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:24.996599+0000 mon.smithi149 (mon.0) 538 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: cluster 2024-03-11T23:10:25.000968+0000 mon.smithi149 (mon.0) 539 : cluster 0 osdmap e20: 8 total, 2 up, 8 in 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:25.001583+0000 mon.smithi149 (mon.0) 540 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:25.002152+0000 mon.smithi149 (mon.0) 541 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:25.002789+0000 mon.smithi149 (mon.0) 542 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:25.003322+0000 mon.smithi149 (mon.0) 543 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:25.003851+0000 mon.smithi149 (mon.0) 544 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:25.004412+0000 mon.smithi149 (mon.0) 545 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:25.008334+0000 mon.smithi149 (mon.0) 546 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:25.969 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:25 smithi165 bash[22892]: audit 2024-03-11T23:10:25.298265+0000 mon.smithi149 (mon.0) 547 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:10:26.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:24.765159+0000 mon.smithi149 (mon.0) 534 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:26.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:24.771886+0000 mon.smithi149 (mon.0) 535 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:26.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:24.773052+0000 mon.smithi149 (mon.0) 536 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-03-11T23:10:26.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:24.773905+0000 mon.smithi149 (mon.0) 537 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:10:26.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: cephadm 2024-03-11T23:10:24.774684+0000 mgr.smithi149.leptec (mgr.14197) 121 : cephadm 1 Deploying daemon osd.7 on smithi149 2024-03-11T23:10:26.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:24.996599+0000 mon.smithi149 (mon.0) 538 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-03-11T23:10:26.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: cluster 2024-03-11T23:10:25.000968+0000 mon.smithi149 (mon.0) 539 : cluster 0 osdmap e20: 8 total, 2 up, 8 in 2024-03-11T23:10:26.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:25.001583+0000 mon.smithi149 (mon.0) 540 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:26.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:25.002152+0000 mon.smithi149 (mon.0) 541 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:26.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:25.002789+0000 mon.smithi149 (mon.0) 542 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:26.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:25.003322+0000 mon.smithi149 (mon.0) 543 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:26.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:25.003851+0000 mon.smithi149 (mon.0) 544 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:26.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:25.004412+0000 mon.smithi149 (mon.0) 545 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:26.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:25.008334+0000 mon.smithi149 (mon.0) 546 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:26.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:25 smithi149 bash[18736]: audit 2024-03-11T23:10:25.298265+0000 mon.smithi149 (mon.0) 547 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:10:26.739 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: cluster 2024-03-11T23:10:24.202783+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: cluster 2024-03-11T23:10:24.202877+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: cluster 2024-03-11T23:10:25.255589+0000 mgr.smithi149.leptec (mgr.14197) 122 : cluster 0 pgmap v75: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: cluster 2024-03-11T23:10:26.007307+0000 mon.smithi149 (mon.0) 548 : cluster 1 osd.2 [v2:172.21.15.165:6808/4211583200,v1:172.21.15.165:6809/4211583200] boot 2024-03-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: cluster 2024-03-11T23:10:26.007348+0000 mon.smithi149 (mon.0) 549 : cluster 0 osdmap e21: 8 total, 3 up, 8 in 2024-03-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: audit 2024-03-11T23:10:26.007493+0000 mon.smithi149 (mon.0) 550 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: audit 2024-03-11T23:10:26.007872+0000 mon.smithi149 (mon.0) 551 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: audit 2024-03-11T23:10:26.008071+0000 mon.smithi149 (mon.0) 552 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: audit 2024-03-11T23:10:26.008267+0000 mon.smithi149 (mon.0) 553 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: audit 2024-03-11T23:10:26.008484+0000 mon.smithi149 (mon.0) 554 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:26.990 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 bash[22892]: audit 2024-03-11T23:10:26.008710+0000 mon.smithi149 (mon.0) 555 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:26.991 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:26 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: cluster 2024-03-11T23:10:24.202783+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: cluster 2024-03-11T23:10:24.202877+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: cluster 2024-03-11T23:10:25.255589+0000 mgr.smithi149.leptec (mgr.14197) 122 : cluster 0 pgmap v75: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-03-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: cluster 2024-03-11T23:10:26.007307+0000 mon.smithi149 (mon.0) 548 : cluster 1 osd.2 [v2:172.21.15.165:6808/4211583200,v1:172.21.15.165:6809/4211583200] boot 2024-03-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: cluster 2024-03-11T23:10:26.007348+0000 mon.smithi149 (mon.0) 549 : cluster 0 osdmap e21: 8 total, 3 up, 8 in 2024-03-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: audit 2024-03-11T23:10:26.007493+0000 mon.smithi149 (mon.0) 550 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: audit 2024-03-11T23:10:26.007872+0000 mon.smithi149 (mon.0) 551 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: audit 2024-03-11T23:10:26.008071+0000 mon.smithi149 (mon.0) 552 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: audit 2024-03-11T23:10:26.008267+0000 mon.smithi149 (mon.0) 553 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: audit 2024-03-11T23:10:26.008484+0000 mon.smithi149 (mon.0) 554 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:26.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:26 smithi149 bash[18736]: audit 2024-03-11T23:10:26.008710+0000 mon.smithi149 (mon.0) 555 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:27.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:26.362327+0000 mon.smithi149 (mon.0) 556 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 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-11T23:10:27.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:26.870524+0000 mon.smithi149 (mon.0) 557 : audit 1 from='osd.3 [v2:172.21.15.149:6810/2846333642,v1:172.21.15.149:6811/2846333642]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-03-11T23:10:27.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.003388+0000 mon.smithi149 (mon.0) 558 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 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-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.003488+0000 mon.smithi149 (mon.0) 559 : audit 1 from='osd.3 [v2:172.21.15.149:6810/2846333642,v1:172.21.15.149:6811/2846333642]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-03-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: cluster 2024-03-11T23:10:27.007948+0000 mon.smithi149 (mon.0) 560 : cluster 0 osdmap e22: 8 total, 3 up, 8 in 2024-03-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.008321+0000 mon.smithi149 (mon.0) 561 : audit 1 from='osd.3 [v2:172.21.15.149:6810/2846333642,v1:172.21.15.149:6811/2846333642]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2024-03-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.008602+0000 mon.smithi149 (mon.0) 562 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.008834+0000 mon.smithi149 (mon.0) 563 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.008993+0000 mon.smithi149 (mon.0) 564 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.009190+0000 mon.smithi149 (mon.0) 565 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.009330+0000 mon.smithi149 (mon.0) 566 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.009524+0000 mon.smithi149 (mon.0) 567 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-03-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.026500+0000 mon.smithi149 (mon.0) 568 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:27.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:27 smithi149 bash[18736]: audit 2024-03-11T23:10:27.033449+0000 mon.smithi149 (mon.0) 569 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:28.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:26.362327+0000 mon.smithi149 (mon.0) 556 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 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-11T23:10:28.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:26.870524+0000 mon.smithi149 (mon.0) 557 : audit 1 from='osd.3 [v2:172.21.15.149:6810/2846333642,v1:172.21.15.149:6811/2846333642]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-03-11T23:10:28.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.003388+0000 mon.smithi149 (mon.0) 558 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 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-11T23:10:28.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.003488+0000 mon.smithi149 (mon.0) 559 : audit 1 from='osd.3 [v2:172.21.15.149:6810/2846333642,v1:172.21.15.149:6811/2846333642]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-03-11T23:10:28.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: cluster 2024-03-11T23:10:27.007948+0000 mon.smithi149 (mon.0) 560 : cluster 0 osdmap e22: 8 total, 3 up, 8 in 2024-03-11T23:10:28.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.008321+0000 mon.smithi149 (mon.0) 561 : audit 1 from='osd.3 [v2:172.21.15.149:6810/2846333642,v1:172.21.15.149:6811/2846333642]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2024-03-11T23:10:28.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.008602+0000 mon.smithi149 (mon.0) 562 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:28.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.008834+0000 mon.smithi149 (mon.0) 563 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:28.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.008993+0000 mon.smithi149 (mon.0) 564 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:28.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.009190+0000 mon.smithi149 (mon.0) 565 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:28.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.009330+0000 mon.smithi149 (mon.0) 566 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:28.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.009524+0000 mon.smithi149 (mon.0) 567 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-03-11T23:10:28.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.026500+0000 mon.smithi149 (mon.0) 568 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:28.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:27 smithi165 bash[22892]: audit 2024-03-11T23:10:27.033449+0000 mon.smithi149 (mon.0) 569 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:29.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: cluster 2024-03-11T23:10:27.256005+0000 mgr.smithi149.leptec (mgr.14197) 123 : cluster 0 pgmap v78: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-03-11T23:10:29.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: audit 2024-03-11T23:10:28.007265+0000 mon.smithi149 (mon.0) 570 : audit 1 from='osd.3 [v2:172.21.15.149:6810/2846333642,v1:172.21.15.149:6811/2846333642]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2024-03-11T23:10:29.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: audit 2024-03-11T23:10:28.007408+0000 mon.smithi149 (mon.0) 571 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-03-11T23:10:29.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: cluster 2024-03-11T23:10:28.012726+0000 mon.smithi149 (mon.0) 572 : cluster 0 osdmap e23: 8 total, 3 up, 8 in 2024-03-11T23:10:29.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: audit 2024-03-11T23:10:28.013810+0000 mon.smithi149 (mon.0) 573 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:29.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: audit 2024-03-11T23:10:28.014201+0000 mon.smithi149 (mon.0) 574 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:29.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: audit 2024-03-11T23:10:28.014459+0000 mon.smithi149 (mon.0) 575 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:29.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: audit 2024-03-11T23:10:28.014806+0000 mon.smithi149 (mon.0) 576 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:29.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: audit 2024-03-11T23:10:28.015064+0000 mon.smithi149 (mon.0) 577 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:29.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: audit 2024-03-11T23:10:28.020936+0000 mon.smithi149 (mon.0) 578 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:29.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:28 smithi165 bash[22892]: cluster 2024-03-11T23:10:28.031577+0000 mon.smithi149 (mon.0) 579 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-11T23:10:29.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: cluster 2024-03-11T23:10:27.256005+0000 mgr.smithi149.leptec (mgr.14197) 123 : cluster 0 pgmap v78: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-03-11T23:10:29.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: audit 2024-03-11T23:10:28.007265+0000 mon.smithi149 (mon.0) 570 : audit 1 from='osd.3 [v2:172.21.15.149:6810/2846333642,v1:172.21.15.149:6811/2846333642]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2024-03-11T23:10:29.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: audit 2024-03-11T23:10:28.007408+0000 mon.smithi149 (mon.0) 571 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-03-11T23:10:29.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: cluster 2024-03-11T23:10:28.012726+0000 mon.smithi149 (mon.0) 572 : cluster 0 osdmap e23: 8 total, 3 up, 8 in 2024-03-11T23:10:29.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: audit 2024-03-11T23:10:28.013810+0000 mon.smithi149 (mon.0) 573 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:29.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: audit 2024-03-11T23:10:28.014201+0000 mon.smithi149 (mon.0) 574 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:29.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: audit 2024-03-11T23:10:28.014459+0000 mon.smithi149 (mon.0) 575 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:29.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: audit 2024-03-11T23:10:28.014806+0000 mon.smithi149 (mon.0) 576 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:29.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: audit 2024-03-11T23:10:28.015064+0000 mon.smithi149 (mon.0) 577 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:29.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: audit 2024-03-11T23:10:28.020936+0000 mon.smithi149 (mon.0) 578 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:29.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:28 smithi149 bash[18736]: cluster 2024-03-11T23:10:28.031577+0000 mon.smithi149 (mon.0) 579 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-11T23:10:30.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: cluster 2024-03-11T23:10:27.881065+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:30.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: cluster 2024-03-11T23:10:27.881169+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:30.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: cluster 2024-03-11T23:10:29.011929+0000 mon.smithi149 (mon.0) 580 : cluster 1 osd.3 [v2:172.21.15.149:6810/2846333642,v1:172.21.15.149:6811/2846333642] boot 2024-03-11T23:10:30.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: cluster 2024-03-11T23:10:29.011971+0000 mon.smithi149 (mon.0) 581 : cluster 0 osdmap e24: 8 total, 4 up, 8 in 2024-03-11T23:10:30.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: audit 2024-03-11T23:10:29.012294+0000 mon.smithi149 (mon.0) 582 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:30.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: audit 2024-03-11T23:10:29.012616+0000 mon.smithi149 (mon.0) 583 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:30.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: audit 2024-03-11T23:10:29.012847+0000 mon.smithi149 (mon.0) 584 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:30.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: audit 2024-03-11T23:10:29.013062+0000 mon.smithi149 (mon.0) 585 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:30.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: audit 2024-03-11T23:10:29.013377+0000 mon.smithi149 (mon.0) 586 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:30.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: audit 2024-03-11T23:10:29.076197+0000 mon.smithi165 (mon.1) 13 : audit 1 from='osd.4 [v2:172.21.15.165:6816/2258854930,v1:172.21.15.165:6817/2258854930]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-11T23:10:30.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: audit 2024-03-11T23:10:29.077749+0000 mon.smithi149 (mon.0) 587 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-11T23:10:30.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:30 smithi165 bash[22892]: cluster 2024-03-11T23:10:29.256628+0000 mgr.smithi149.leptec (mgr.14197) 124 : cluster 0 pgmap v81: 1 pgs: 1 unknown; 0 B data, 110 MiB used, 357 GiB / 358 GiB avail 2024-03-11T23:10:30.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: cluster 2024-03-11T23:10:27.881065+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:30.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: cluster 2024-03-11T23:10:27.881169+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:30.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: cluster 2024-03-11T23:10:29.011929+0000 mon.smithi149 (mon.0) 580 : cluster 1 osd.3 [v2:172.21.15.149:6810/2846333642,v1:172.21.15.149:6811/2846333642] boot 2024-03-11T23:10:30.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: cluster 2024-03-11T23:10:29.011971+0000 mon.smithi149 (mon.0) 581 : cluster 0 osdmap e24: 8 total, 4 up, 8 in 2024-03-11T23:10:30.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: audit 2024-03-11T23:10:29.012294+0000 mon.smithi149 (mon.0) 582 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-11T23:10:30.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: audit 2024-03-11T23:10:29.012616+0000 mon.smithi149 (mon.0) 583 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:30.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: audit 2024-03-11T23:10:29.012847+0000 mon.smithi149 (mon.0) 584 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:30.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: audit 2024-03-11T23:10:29.013062+0000 mon.smithi149 (mon.0) 585 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:30.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: audit 2024-03-11T23:10:29.013377+0000 mon.smithi149 (mon.0) 586 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:30.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: audit 2024-03-11T23:10:29.076197+0000 mon.smithi165 (mon.1) 13 : audit 1 from='osd.4 [v2:172.21.15.165:6816/2258854930,v1:172.21.15.165:6817/2258854930]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-11T23:10:30.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: audit 2024-03-11T23:10:29.077749+0000 mon.smithi149 (mon.0) 587 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-11T23:10:30.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:30 smithi149 bash[18736]: cluster 2024-03-11T23:10:29.256628+0000 mgr.smithi149.leptec (mgr.14197) 124 : cluster 0 pgmap v81: 1 pgs: 1 unknown; 0 B data, 110 MiB used, 357 GiB / 358 GiB avail 2024-03-11T23:10:30.993 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:10:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: cluster 2024-03-11T23:10:30.010426+0000 mon.smithi149 (mon.0) 588 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-11T23:10:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: cluster 2024-03-11T23:10:30.010502+0000 mon.smithi149 (mon.0) 589 : cluster 1 Cluster is now healthy 2024-03-11T23:10:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:30.011765+0000 mon.smithi149 (mon.0) 590 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-03-11T23:10:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:30.016699+0000 mon.smithi165 (mon.1) 14 : audit 1 from='osd.4 [v2:172.21.15.165:6816/2258854930,v1:172.21.15.165:6817/2258854930]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: cluster 2024-03-11T23:10:30.017539+0000 mon.smithi149 (mon.0) 591 : cluster 0 osdmap e25: 8 total, 4 up, 8 in 2024-03-11T23:10:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:30.018590+0000 mon.smithi149 (mon.0) 592 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:30.019185+0000 mon.smithi149 (mon.0) 593 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:30.020018+0000 mon.smithi149 (mon.0) 594 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:31.247 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:30.027175+0000 mon.smithi149 (mon.0) 595 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:30.027591+0000 mon.smithi149 (mon.0) 596 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:30.991876+0000 mon.smithi149 (mon.0) 597 : audit 0 from='client.? 172.21.15.149:0/1681019820' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:10:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:31.013459+0000 mon.smithi149 (mon.0) 598 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-03-11T23:10:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: cluster 2024-03-11T23:10:31.016233+0000 mon.smithi149 (mon.0) 599 : cluster 0 osdmap e26: 8 total, 4 up, 8 in 2024-03-11T23:10:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:31.016460+0000 mon.smithi149 (mon.0) 600 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:31.016634+0000 mon.smithi149 (mon.0) 601 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:31.016799+0000 mon.smithi149 (mon.0) 602 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:31.248 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:31 smithi149 bash[18736]: audit 2024-03-11T23:10:31.017006+0000 mon.smithi149 (mon.0) 603 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: cluster 2024-03-11T23:10:30.010426+0000 mon.smithi149 (mon.0) 588 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: cluster 2024-03-11T23:10:30.010502+0000 mon.smithi149 (mon.0) 589 : cluster 1 Cluster is now healthy 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:30.011765+0000 mon.smithi149 (mon.0) 590 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:30.016699+0000 mon.smithi165 (mon.1) 14 : audit 1 from='osd.4 [v2:172.21.15.165:6816/2258854930,v1:172.21.15.165:6817/2258854930]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: cluster 2024-03-11T23:10:30.017539+0000 mon.smithi149 (mon.0) 591 : cluster 0 osdmap e25: 8 total, 4 up, 8 in 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:30.018590+0000 mon.smithi149 (mon.0) 592 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:30.019185+0000 mon.smithi149 (mon.0) 593 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:30.020018+0000 mon.smithi149 (mon.0) 594 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:30.027175+0000 mon.smithi149 (mon.0) 595 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:30.027591+0000 mon.smithi149 (mon.0) 596 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:31.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:30.991876+0000 mon.smithi149 (mon.0) 597 : audit 0 from='client.? 172.21.15.149:0/1681019820' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:10:31.312 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:31.013459+0000 mon.smithi149 (mon.0) 598 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-03-11T23:10:31.312 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: cluster 2024-03-11T23:10:31.016233+0000 mon.smithi149 (mon.0) 599 : cluster 0 osdmap e26: 8 total, 4 up, 8 in 2024-03-11T23:10:31.312 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:31.016460+0000 mon.smithi149 (mon.0) 600 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:31.312 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:31.016634+0000 mon.smithi149 (mon.0) 601 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:31.312 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:31.016799+0000 mon.smithi149 (mon.0) 602 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:31.312 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:31 smithi165 bash[22892]: audit 2024-03-11T23:10:31.017006+0000 mon.smithi149 (mon.0) 603 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:32.078 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":25,"num_osds":8,"num_up_osds":4,"osd_up_since":1710198629,"num_in_osds":8,"osd_in_since":1710198592,"num_remapped_pgs":0} 2024-03-11T23:10:32.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:32 smithi165 bash[22892]: audit 2024-03-11T23:10:31.027852+0000 mon.smithi149 (mon.0) 604 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:32.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:32 smithi165 bash[22892]: cluster 2024-03-11T23:10:31.257272+0000 mgr.smithi149.leptec (mgr.14197) 125 : cluster 0 pgmap v84: 1 pgs: 1 creating+remapped; 0 B data, 110 MiB used, 357 GiB / 358 GiB avail 2024-03-11T23:10:32.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:32 smithi165 bash[22892]: audit 2024-03-11T23:10:31.536759+0000 mon.smithi149 (mon.0) 605 : audit 1 from='osd.4 ' entity='osd.4' 2024-03-11T23:10:32.402 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:32 smithi149 bash[18736]: audit 2024-03-11T23:10:31.027852+0000 mon.smithi149 (mon.0) 604 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:32.402 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:32 smithi149 bash[18736]: cluster 2024-03-11T23:10:31.257272+0000 mgr.smithi149.leptec (mgr.14197) 125 : cluster 0 pgmap v84: 1 pgs: 1 creating+remapped; 0 B data, 110 MiB used, 357 GiB / 358 GiB avail 2024-03-11T23:10:32.402 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:32 smithi149 bash[18736]: audit 2024-03-11T23:10:31.536759+0000 mon.smithi149 (mon.0) 605 : audit 1 from='osd.4 ' entity='osd.4' 2024-03-11T23:10:32.683 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:32 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:32.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:32 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:10:33.080 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd stat -f json 2024-03-11T23:10:33.133 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: cluster 2024-03-11T23:10:30.076733+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: cluster 2024-03-11T23:10:30.076831+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: audit 2024-03-11T23:10:32.027584+0000 mon.smithi149 (mon.0) 606 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: cluster 2024-03-11T23:10:32.537829+0000 mon.smithi149 (mon.0) 607 : cluster 1 osd.4 [v2:172.21.15.165:6816/2258854930,v1:172.21.15.165:6817/2258854930] boot 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: cluster 2024-03-11T23:10:32.537886+0000 mon.smithi149 (mon.0) 608 : cluster 0 osdmap e27: 8 total, 5 up, 8 in 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: audit 2024-03-11T23:10:32.538080+0000 mon.smithi149 (mon.0) 609 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: audit 2024-03-11T23:10:32.538549+0000 mon.smithi149 (mon.0) 610 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: audit 2024-03-11T23:10:32.538836+0000 mon.smithi149 (mon.0) 611 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: audit 2024-03-11T23:10:32.539114+0000 mon.smithi149 (mon.0) 612 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: audit 2024-03-11T23:10:32.864553+0000 mon.smithi149 (mon.0) 613 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: audit 2024-03-11T23:10:32.869727+0000 mon.smithi149 (mon.0) 614 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:33.134 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:33 smithi165 bash[22892]: audit 2024-03-11T23:10:32.925078+0000 mon.smithi149 (mon.0) 615 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:33.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: cluster 2024-03-11T23:10:30.076733+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:33.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: cluster 2024-03-11T23:10:30.076831+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:33.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: audit 2024-03-11T23:10:32.027584+0000 mon.smithi149 (mon.0) 606 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:33.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: cluster 2024-03-11T23:10:32.537829+0000 mon.smithi149 (mon.0) 607 : cluster 1 osd.4 [v2:172.21.15.165:6816/2258854930,v1:172.21.15.165:6817/2258854930] boot 2024-03-11T23:10:33.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: cluster 2024-03-11T23:10:32.537886+0000 mon.smithi149 (mon.0) 608 : cluster 0 osdmap e27: 8 total, 5 up, 8 in 2024-03-11T23:10:33.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: audit 2024-03-11T23:10:32.538080+0000 mon.smithi149 (mon.0) 609 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-11T23:10:33.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: audit 2024-03-11T23:10:32.538549+0000 mon.smithi149 (mon.0) 610 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:33.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: audit 2024-03-11T23:10:32.538836+0000 mon.smithi149 (mon.0) 611 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:33.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: audit 2024-03-11T23:10:32.539114+0000 mon.smithi149 (mon.0) 612 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:33.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: audit 2024-03-11T23:10:32.864553+0000 mon.smithi149 (mon.0) 613 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:33.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: audit 2024-03-11T23:10:32.869727+0000 mon.smithi149 (mon.0) 614 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:33.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:33 smithi149 bash[18736]: audit 2024-03-11T23:10:32.925078+0000 mon.smithi149 (mon.0) 615 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:34.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:34 smithi165 bash[22892]: cluster 2024-03-11T23:10:33.257631+0000 mgr.smithi149.leptec (mgr.14197) 126 : cluster 0 pgmap v86: 1 pgs: 1 creating+remapped; 0 B data, 137 MiB used, 447 GiB / 447 GiB avail 2024-03-11T23:10:34.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:34 smithi165 bash[22892]: audit 2024-03-11T23:10:33.809050+0000 mon.smithi165 (mon.1) 15 : audit 1 from='osd.6 [v2:172.21.15.165:6824/2971794566,v1:172.21.15.165:6825/2971794566]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-03-11T23:10:34.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:34 smithi165 bash[22892]: audit 2024-03-11T23:10:33.810413+0000 mon.smithi149 (mon.0) 616 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-03-11T23:10:34.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:34 smithi165 bash[22892]: audit 2024-03-11T23:10:33.827281+0000 mon.smithi149 (mon.0) 617 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:34.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:34 smithi149 bash[18736]: cluster 2024-03-11T23:10:33.257631+0000 mgr.smithi149.leptec (mgr.14197) 126 : cluster 0 pgmap v86: 1 pgs: 1 creating+remapped; 0 B data, 137 MiB used, 447 GiB / 447 GiB avail 2024-03-11T23:10:34.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:34 smithi149 bash[18736]: audit 2024-03-11T23:10:33.809050+0000 mon.smithi165 (mon.1) 15 : audit 1 from='osd.6 [v2:172.21.15.165:6824/2971794566,v1:172.21.15.165:6825/2971794566]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-03-11T23:10:34.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:34 smithi149 bash[18736]: audit 2024-03-11T23:10:33.810413+0000 mon.smithi149 (mon.0) 616 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-03-11T23:10:34.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:34 smithi149 bash[18736]: audit 2024-03-11T23:10:33.827281+0000 mon.smithi149 (mon.0) 617 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:35.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:35 smithi165 bash[22892]: audit 2024-03-11T23:10:34.036155+0000 mon.smithi149 (mon.0) 618 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-03-11T23:10:35.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:35 smithi165 bash[22892]: cluster 2024-03-11T23:10:34.043667+0000 mon.smithi149 (mon.0) 619 : cluster 0 mgrmap e19: smithi149.leptec(active, since 2m), standbys: smithi165.tfkohn 2024-03-11T23:10:35.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:35 smithi165 bash[22892]: cluster 2024-03-11T23:10:34.043720+0000 mon.smithi149 (mon.0) 620 : cluster 0 osdmap e28: 8 total, 5 up, 8 in 2024-03-11T23:10:35.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:35 smithi165 bash[22892]: audit 2024-03-11T23:10:34.043973+0000 mon.smithi149 (mon.0) 621 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:35.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:35 smithi165 bash[22892]: audit 2024-03-11T23:10:34.044133+0000 mon.smithi149 (mon.0) 622 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:35.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:35 smithi165 bash[22892]: audit 2024-03-11T23:10:34.044275+0000 mon.smithi149 (mon.0) 623 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:35.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:35 smithi165 bash[22892]: audit 2024-03-11T23:10:34.046790+0000 mon.smithi165 (mon.1) 16 : audit 1 from='osd.6 [v2:172.21.15.165:6824/2971794566,v1:172.21.15.165:6825/2971794566]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:35.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:35 smithi165 bash[22892]: audit 2024-03-11T23:10:34.048316+0000 mon.smithi149 (mon.0) 624 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:35.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:35 smithi165 bash[22892]: audit 2024-03-11T23:10:34.358148+0000 mon.smithi149 (mon.0) 625 : audit 1 from='osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-03-11T23:10:35.311 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:35 smithi165 bash[22892]: audit 2024-03-11T23:10:34.736448+0000 mon.smithi149 (mon.0) 626 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:35.333 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:35 smithi149 bash[18736]: audit 2024-03-11T23:10:34.036155+0000 mon.smithi149 (mon.0) 618 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-03-11T23:10:35.333 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:35 smithi149 bash[18736]: cluster 2024-03-11T23:10:34.043667+0000 mon.smithi149 (mon.0) 619 : cluster 0 mgrmap e19: smithi149.leptec(active, since 2m), standbys: smithi165.tfkohn 2024-03-11T23:10:35.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:35 smithi149 bash[18736]: cluster 2024-03-11T23:10:34.043720+0000 mon.smithi149 (mon.0) 620 : cluster 0 osdmap e28: 8 total, 5 up, 8 in 2024-03-11T23:10:35.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:35 smithi149 bash[18736]: audit 2024-03-11T23:10:34.043973+0000 mon.smithi149 (mon.0) 621 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:35.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:35 smithi149 bash[18736]: audit 2024-03-11T23:10:34.044133+0000 mon.smithi149 (mon.0) 622 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:35.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:35 smithi149 bash[18736]: audit 2024-03-11T23:10:34.044275+0000 mon.smithi149 (mon.0) 623 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:35.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:35 smithi149 bash[18736]: audit 2024-03-11T23:10:34.046790+0000 mon.smithi165 (mon.1) 16 : audit 1 from='osd.6 [v2:172.21.15.165:6824/2971794566,v1:172.21.15.165:6825/2971794566]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:35.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:35 smithi149 bash[18736]: audit 2024-03-11T23:10:34.048316+0000 mon.smithi149 (mon.0) 624 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]: dispatch 2024-03-11T23:10:35.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:35 smithi149 bash[18736]: audit 2024-03-11T23:10:34.358148+0000 mon.smithi149 (mon.0) 625 : audit 1 from='osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-03-11T23:10:35.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:35 smithi149 bash[18736]: audit 2024-03-11T23:10:34.736448+0000 mon.smithi149 (mon.0) 626 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:36.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:35.040252+0000 mon.smithi149 (mon.0) 627 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-03-11T23:10:36.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:35.040525+0000 mon.smithi149 (mon.0) 628 : audit 1 from='osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-03-11T23:10:36.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: cluster 2024-03-11T23:10:35.047440+0000 mon.smithi149 (mon.0) 629 : cluster 0 osdmap e29: 8 total, 5 up, 8 in 2024-03-11T23:10:36.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:35.048412+0000 mon.smithi149 (mon.0) 630 : audit 1 from='osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2024-03-11T23:10:36.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:35.048892+0000 mon.smithi149 (mon.0) 631 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:36.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:35.049174+0000 mon.smithi149 (mon.0) 632 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:36.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:35.049603+0000 mon.smithi149 (mon.0) 633 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:36.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:35.056758+0000 mon.smithi149 (mon.0) 634 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:36.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: cluster 2024-03-11T23:10:35.258076+0000 mgr.smithi149.leptec (mgr.14197) 127 : cluster 0 pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-03-11T23:10:36.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:35.671607+0000 mon.smithi149 (mon.0) 635 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:36.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:36.022832+0000 mon.smithi149 (mon.0) 636 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:36.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:36.033408+0000 mon.smithi149 (mon.0) 637 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:36.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:36.042742+0000 mon.smithi149 (mon.0) 638 : audit 1 from='osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2024-03-11T23:10:36.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: cluster 2024-03-11T23:10:36.048675+0000 mon.smithi149 (mon.0) 639 : cluster 1 osd.6 [v2:172.21.15.165:6824/2971794566,v1:172.21.15.165:6825/2971794566] boot 2024-03-11T23:10:36.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: cluster 2024-03-11T23:10:36.048795+0000 mon.smithi149 (mon.0) 640 : cluster 0 osdmap e30: 8 total, 6 up, 8 in 2024-03-11T23:10:36.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:36 smithi149 bash[18736]: audit 2024-03-11T23:10:36.050048+0000 mon.smithi149 (mon.0) 641 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:36.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:35.040252+0000 mon.smithi149 (mon.0) 627 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi165", "root=default"]}]': finished 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:35.040525+0000 mon.smithi149 (mon.0) 628 : audit 1 from='osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: cluster 2024-03-11T23:10:35.047440+0000 mon.smithi149 (mon.0) 629 : cluster 0 osdmap e29: 8 total, 5 up, 8 in 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:35.048412+0000 mon.smithi149 (mon.0) 630 : audit 1 from='osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:35.048892+0000 mon.smithi149 (mon.0) 631 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:35.049174+0000 mon.smithi149 (mon.0) 632 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:35.049603+0000 mon.smithi149 (mon.0) 633 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:35.056758+0000 mon.smithi149 (mon.0) 634 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: cluster 2024-03-11T23:10:35.258076+0000 mgr.smithi149.leptec (mgr.14197) 127 : cluster 0 pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:35.671607+0000 mon.smithi149 (mon.0) 635 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:36.022832+0000 mon.smithi149 (mon.0) 636 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:36.033408+0000 mon.smithi149 (mon.0) 637 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:36.042742+0000 mon.smithi149 (mon.0) 638 : audit 1 from='osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2024-03-11T23:10:36.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: cluster 2024-03-11T23:10:36.048675+0000 mon.smithi149 (mon.0) 639 : cluster 1 osd.6 [v2:172.21.15.165:6824/2971794566,v1:172.21.15.165:6825/2971794566] boot 2024-03-11T23:10:36.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: cluster 2024-03-11T23:10:36.048795+0000 mon.smithi149 (mon.0) 640 : cluster 0 osdmap e30: 8 total, 6 up, 8 in 2024-03-11T23:10:36.562 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:36 smithi165 bash[22892]: audit 2024-03-11T23:10:36.050048+0000 mon.smithi149 (mon.0) 641 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:37.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:37 smithi149 bash[18736]: cluster 2024-03-11T23:10:34.769452+0000 osd.6 (osd.6) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:37.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:37 smithi149 bash[18736]: cluster 2024-03-11T23:10:34.769564+0000 osd.6 (osd.6) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:37.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:37 smithi149 bash[18736]: audit 2024-03-11T23:10:36.064922+0000 mon.smithi149 (mon.0) 642 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:37.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:37 smithi149 bash[18736]: audit 2024-03-11T23:10:36.065555+0000 mon.smithi149 (mon.0) 643 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:37.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:37 smithi149 bash[18736]: audit 2024-03-11T23:10:36.066004+0000 mon.smithi149 (mon.0) 644 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:37.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:37 smithi149 bash[18736]: audit 2024-03-11T23:10:36.553455+0000 mon.smithi149 (mon.0) 645 : audit 1 from='osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275]' entity='osd.5' 2024-03-11T23:10:37.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:37 smithi149 bash[18736]: audit 2024-03-11T23:10:36.578158+0000 mon.smithi149 (mon.0) 646 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:37.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:37 smithi149 bash[18736]: audit 2024-03-11T23:10:37.055667+0000 mon.smithi149 (mon.0) 647 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:37 smithi165 bash[22892]: cluster 2024-03-11T23:10:34.769452+0000 osd.6 (osd.6) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:37.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:37 smithi165 bash[22892]: cluster 2024-03-11T23:10:34.769564+0000 osd.6 (osd.6) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:37 smithi165 bash[22892]: audit 2024-03-11T23:10:36.064922+0000 mon.smithi149 (mon.0) 642 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-11T23:10:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:37 smithi165 bash[22892]: audit 2024-03-11T23:10:36.065555+0000 mon.smithi149 (mon.0) 643 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:37 smithi165 bash[22892]: audit 2024-03-11T23:10:36.066004+0000 mon.smithi149 (mon.0) 644 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:37 smithi165 bash[22892]: audit 2024-03-11T23:10:36.553455+0000 mon.smithi149 (mon.0) 645 : audit 1 from='osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275]' entity='osd.5' 2024-03-11T23:10:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:37 smithi165 bash[22892]: audit 2024-03-11T23:10:36.578158+0000 mon.smithi149 (mon.0) 646 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:37.561 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:37 smithi165 bash[22892]: audit 2024-03-11T23:10:37.055667+0000 mon.smithi149 (mon.0) 647 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:37.846 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:10:38.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:38 smithi149 bash[18736]: cluster 2024-03-11T23:10:35.354283+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:38.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:38 smithi149 bash[18736]: cluster 2024-03-11T23:10:35.354350+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:38.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:38 smithi149 bash[18736]: audit 2024-03-11T23:10:37.506494+0000 mon.smithi149 (mon.0) 648 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:38.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:38 smithi149 bash[18736]: audit 2024-03-11T23:10:37.510114+0000 mon.smithi149 (mon.0) 649 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-11T23:10:38.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:38 smithi165 bash[22892]: cluster 2024-03-11T23:10:35.354283+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:38.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:38 smithi165 bash[22892]: cluster 2024-03-11T23:10:35.354350+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:38.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:38 smithi165 bash[22892]: audit 2024-03-11T23:10:37.506494+0000 mon.smithi149 (mon.0) 648 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:38.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:38 smithi165 bash[22892]: audit 2024-03-11T23:10:37.510114+0000 mon.smithi149 (mon.0) 649 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-11T23:10:39.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: cluster 2024-03-11T23:10:37.258751+0000 mgr.smithi149.leptec (mgr.14197) 128 : cluster 0 pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-03-11T23:10:39.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:38.410304+0000 mon.smithi149 (mon.0) 650 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-11T23:10:39.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:38.411628+0000 mon.smithi149 (mon.0) 651 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2024-03-11T23:10:39.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:38.411874+0000 mon.smithi149 (mon.0) 652 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:10:39.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:38.412119+0000 mon.smithi149 (mon.0) 653 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:39.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: cluster 2024-03-11T23:10:38.417374+0000 mon.smithi149 (mon.0) 654 : cluster 1 osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275] boot 2024-03-11T23:10:39.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: cluster 2024-03-11T23:10:38.417420+0000 mon.smithi149 (mon.0) 655 : cluster 0 osdmap e31: 8 total, 7 up, 8 in 2024-03-11T23:10:39.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:38.417990+0000 mon.smithi149 (mon.0) 656 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:39.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:38.418289+0000 mon.smithi149 (mon.0) 657 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:39.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:38.441249+0000 mon.smithi149 (mon.0) 658 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:39.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:38.442689+0000 mon.smithi165 (mon.1) 17 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-11T23:10:39.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:38.443756+0000 mon.smithi149 (mon.0) 659 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2024-03-11T23:10:39.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:38.443937+0000 mon.smithi149 (mon.0) 660 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:10:39.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:39.327787+0000 mon.smithi165 (mon.1) 18 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-11T23:10:39.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:39 smithi149 bash[18736]: audit 2024-03-11T23:10:39.375662+0000 mon.smithi149 (mon.0) 661 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: cluster 2024-03-11T23:10:37.258751+0000 mgr.smithi149.leptec (mgr.14197) 128 : cluster 0 pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:38.410304+0000 mon.smithi149 (mon.0) 650 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:38.411628+0000 mon.smithi149 (mon.0) 651 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:38.411874+0000 mon.smithi149 (mon.0) 652 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:38.412119+0000 mon.smithi149 (mon.0) 653 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: cluster 2024-03-11T23:10:38.417374+0000 mon.smithi149 (mon.0) 654 : cluster 1 osd.5 [v2:172.21.15.149:6818/4070828275,v1:172.21.15.149:6819/4070828275] boot 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: cluster 2024-03-11T23:10:38.417420+0000 mon.smithi149 (mon.0) 655 : cluster 0 osdmap e31: 8 total, 7 up, 8 in 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:38.417990+0000 mon.smithi149 (mon.0) 656 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:38.418289+0000 mon.smithi149 (mon.0) 657 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:38.441249+0000 mon.smithi149 (mon.0) 658 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:39.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:38.442689+0000 mon.smithi165 (mon.1) 17 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-11T23:10:39.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:38.443756+0000 mon.smithi149 (mon.0) 659 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2024-03-11T23:10:39.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:38.443937+0000 mon.smithi149 (mon.0) 660 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "mon metadata", "id": "smithi165"}]: dispatch 2024-03-11T23:10:39.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:39.327787+0000 mon.smithi165 (mon.1) 18 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-11T23:10:39.812 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:39 smithi165 bash[22892]: audit 2024-03-11T23:10:39.375662+0000 mon.smithi149 (mon.0) 661 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:40.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:40 smithi149 bash[18736]: cluster 2024-03-11T23:10:39.259184+0000 mgr.smithi149.leptec (mgr.14197) 129 : cluster 0 pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-03-11T23:10:40.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:40 smithi149 bash[18736]: cluster 2024-03-11T23:10:39.447156+0000 mon.smithi149 (mon.0) 662 : cluster 0 osdmap e32: 8 total, 7 up, 8 in 2024-03-11T23:10:40.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:40 smithi149 bash[18736]: audit 2024-03-11T23:10:39.447285+0000 mon.smithi149 (mon.0) 663 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:40.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:40 smithi149 bash[18736]: audit 2024-03-11T23:10:39.757410+0000 mon.smithi149 (mon.0) 664 : audit 1 from='osd.7 [v2:172.21.15.149:6826/3663551269,v1:172.21.15.149:6827/3663551269]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-03-11T23:10:40.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:40 smithi149 bash[18736]: audit 2024-03-11T23:10:40.298444+0000 mon.smithi149 (mon.0) 665 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:10:40.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:40 smithi165 bash[22892]: cluster 2024-03-11T23:10:39.259184+0000 mgr.smithi149.leptec (mgr.14197) 129 : cluster 0 pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-03-11T23:10:40.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:40 smithi165 bash[22892]: cluster 2024-03-11T23:10:39.447156+0000 mon.smithi149 (mon.0) 662 : cluster 0 osdmap e32: 8 total, 7 up, 8 in 2024-03-11T23:10:40.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:40 smithi165 bash[22892]: audit 2024-03-11T23:10:39.447285+0000 mon.smithi149 (mon.0) 663 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:40.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:40 smithi165 bash[22892]: audit 2024-03-11T23:10:39.757410+0000 mon.smithi149 (mon.0) 664 : audit 1 from='osd.7 [v2:172.21.15.149:6826/3663551269,v1:172.21.15.149:6827/3663551269]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-03-11T23:10:40.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:40 smithi165 bash[22892]: audit 2024-03-11T23:10:40.298444+0000 mon.smithi149 (mon.0) 665 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:10:41.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:41 smithi149 bash[18736]: audit 2024-03-11T23:10:40.454239+0000 mon.smithi149 (mon.0) 666 : audit 1 from='osd.7 [v2:172.21.15.149:6826/3663551269,v1:172.21.15.149:6827/3663551269]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-03-11T23:10:41.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:41 smithi149 bash[18736]: cluster 2024-03-11T23:10:40.458986+0000 mon.smithi149 (mon.0) 667 : cluster 0 osdmap e33: 8 total, 7 up, 8 in 2024-03-11T23:10:41.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:41 smithi149 bash[18736]: audit 2024-03-11T23:10:40.459465+0000 mon.smithi149 (mon.0) 668 : audit 1 from='osd.7 [v2:172.21.15.149:6826/3663551269,v1:172.21.15.149:6827/3663551269]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2024-03-11T23:10:41.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:41 smithi149 bash[18736]: audit 2024-03-11T23:10:40.460048+0000 mon.smithi149 (mon.0) 669 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:41.810 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:10:41.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:41 smithi165 bash[22892]: audit 2024-03-11T23:10:40.454239+0000 mon.smithi149 (mon.0) 666 : audit 1 from='osd.7 [v2:172.21.15.149:6826/3663551269,v1:172.21.15.149:6827/3663551269]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-03-11T23:10:41.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:41 smithi165 bash[22892]: cluster 2024-03-11T23:10:40.458986+0000 mon.smithi149 (mon.0) 667 : cluster 0 osdmap e33: 8 total, 7 up, 8 in 2024-03-11T23:10:41.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:41 smithi165 bash[22892]: audit 2024-03-11T23:10:40.459465+0000 mon.smithi149 (mon.0) 668 : audit 1 from='osd.7 [v2:172.21.15.149:6826/3663551269,v1:172.21.15.149:6827/3663551269]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2024-03-11T23:10:41.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:41 smithi165 bash[22892]: audit 2024-03-11T23:10:40.460048+0000 mon.smithi149 (mon.0) 669 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:42.715 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":34,"num_osds":8,"num_up_osds":7,"osd_up_since":1710198638,"num_in_osds":8,"osd_in_since":1710198592,"num_remapped_pgs":0} 2024-03-11T23:10:42.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:42 smithi149 bash[18736]: cluster 2024-03-11T23:10:41.259718+0000 mgr.smithi149.leptec (mgr.14197) 130 : cluster 0 pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail; 12 KiB/s rd, 651 KiB/s wr, 41 op/s 2024-03-11T23:10:42.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:42 smithi149 bash[18736]: audit 2024-03-11T23:10:41.455965+0000 mon.smithi149 (mon.0) 670 : audit 1 from='osd.7 [v2:172.21.15.149:6826/3663551269,v1:172.21.15.149:6827/3663551269]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2024-03-11T23:10:42.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:42 smithi149 bash[18736]: cluster 2024-03-11T23:10:41.459149+0000 mon.smithi149 (mon.0) 671 : cluster 0 osdmap e34: 8 total, 7 up, 8 in 2024-03-11T23:10:42.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:42 smithi149 bash[18736]: audit 2024-03-11T23:10:41.459691+0000 mon.smithi149 (mon.0) 672 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:42.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:42 smithi149 bash[18736]: audit 2024-03-11T23:10:41.489608+0000 mon.smithi149 (mon.0) 673 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:42.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:42 smithi149 bash[18736]: audit 2024-03-11T23:10:41.808201+0000 mon.smithi149 (mon.0) 674 : audit 0 from='client.? 172.21.15.149:0/474311466' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:10:42.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:42 smithi165 bash[22892]: cluster 2024-03-11T23:10:41.259718+0000 mgr.smithi149.leptec (mgr.14197) 130 : cluster 0 pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail; 12 KiB/s rd, 651 KiB/s wr, 41 op/s 2024-03-11T23:10:42.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:42 smithi165 bash[22892]: audit 2024-03-11T23:10:41.455965+0000 mon.smithi149 (mon.0) 670 : audit 1 from='osd.7 [v2:172.21.15.149:6826/3663551269,v1:172.21.15.149:6827/3663551269]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2024-03-11T23:10:42.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:42 smithi165 bash[22892]: cluster 2024-03-11T23:10:41.459149+0000 mon.smithi149 (mon.0) 671 : cluster 0 osdmap e34: 8 total, 7 up, 8 in 2024-03-11T23:10:42.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:42 smithi165 bash[22892]: audit 2024-03-11T23:10:41.459691+0000 mon.smithi149 (mon.0) 672 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:42.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:42 smithi165 bash[22892]: audit 2024-03-11T23:10:41.489608+0000 mon.smithi149 (mon.0) 673 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:42.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:42 smithi165 bash[22892]: audit 2024-03-11T23:10:41.808201+0000 mon.smithi149 (mon.0) 674 : audit 0 from='client.? 172.21.15.149:0/474311466' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:10:43.717 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd stat -f json 2024-03-11T23:10:43.725 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:43 smithi149 bash[18736]: cluster 2024-03-11T23:10:40.749326+0000 osd.7 (osd.7) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:43.725 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:43 smithi149 bash[18736]: cluster 2024-03-11T23:10:40.749446+0000 osd.7 (osd.7) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:43.725 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:43 smithi149 bash[18736]: audit 2024-03-11T23:10:42.470312+0000 mon.smithi149 (mon.0) 675 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:43.726 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:43 smithi149 bash[18736]: cluster 2024-03-11T23:10:42.480021+0000 mon.smithi149 (mon.0) 676 : cluster 1 osd.7 [v2:172.21.15.149:6826/3663551269,v1:172.21.15.149:6827/3663551269] boot 2024-03-11T23:10:43.726 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:43 smithi149 bash[18736]: cluster 2024-03-11T23:10:42.480098+0000 mon.smithi149 (mon.0) 677 : cluster 0 osdmap e35: 8 total, 8 up, 8 in 2024-03-11T23:10:43.726 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:43 smithi149 bash[18736]: audit 2024-03-11T23:10:42.480808+0000 mon.smithi149 (mon.0) 678 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:43.726 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:43 smithi149 bash[18736]: audit 2024-03-11T23:10:43.102994+0000 mon.smithi149 (mon.0) 679 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:43.726 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:43 smithi149 bash[18736]: audit 2024-03-11T23:10:43.115033+0000 mon.smithi149 (mon.0) 680 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:43.726 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:43 smithi149 bash[18736]: audit 2024-03-11T23:10:43.235051+0000 mon.smithi149 (mon.0) 681 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:10:43.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:43 smithi165 bash[22892]: cluster 2024-03-11T23:10:40.749326+0000 osd.7 (osd.7) 1 : cluster 0 purged_snaps scrub starts 2024-03-11T23:10:43.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:43 smithi165 bash[22892]: cluster 2024-03-11T23:10:40.749446+0000 osd.7 (osd.7) 2 : cluster 0 purged_snaps scrub ok 2024-03-11T23:10:43.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:43 smithi165 bash[22892]: audit 2024-03-11T23:10:42.470312+0000 mon.smithi149 (mon.0) 675 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:43.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:43 smithi165 bash[22892]: cluster 2024-03-11T23:10:42.480021+0000 mon.smithi149 (mon.0) 676 : cluster 1 osd.7 [v2:172.21.15.149:6826/3663551269,v1:172.21.15.149:6827/3663551269] boot 2024-03-11T23:10:43.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:43 smithi165 bash[22892]: cluster 2024-03-11T23:10:42.480098+0000 mon.smithi149 (mon.0) 677 : cluster 0 osdmap e35: 8 total, 8 up, 8 in 2024-03-11T23:10:43.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:43 smithi165 bash[22892]: audit 2024-03-11T23:10:42.480808+0000 mon.smithi149 (mon.0) 678 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-11T23:10:43.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:43 smithi165 bash[22892]: audit 2024-03-11T23:10:43.102994+0000 mon.smithi149 (mon.0) 679 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:43.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:43 smithi165 bash[22892]: audit 2024-03-11T23:10:43.115033+0000 mon.smithi149 (mon.0) 680 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:43.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:43 smithi165 bash[22892]: audit 2024-03-11T23:10:43.235051+0000 mon.smithi149 (mon.0) 681 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:10:44.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:44 smithi149 bash[18736]: cluster 2024-03-11T23:10:43.260164+0000 mgr.smithi149.leptec (mgr.14197) 131 : cluster 0 pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail; 16 KiB/s rd, 848 KiB/s wr, 53 op/s 2024-03-11T23:10:44.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:44 smithi149 bash[18736]: cluster 2024-03-11T23:10:43.480729+0000 mon.smithi149 (mon.0) 682 : cluster 0 osdmap e36: 8 total, 8 up, 8 in 2024-03-11T23:10:44.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:44 smithi165 bash[22892]: cluster 2024-03-11T23:10:43.260164+0000 mgr.smithi149.leptec (mgr.14197) 131 : cluster 0 pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail; 16 KiB/s rd, 848 KiB/s wr, 53 op/s 2024-03-11T23:10:44.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:44 smithi165 bash[22892]: cluster 2024-03-11T23:10:43.480729+0000 mon.smithi149 (mon.0) 682 : cluster 0 osdmap e36: 8 total, 8 up, 8 in 2024-03-11T23:10:45.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:45 smithi149 bash[18736]: cluster 2024-03-11T23:10:44.482872+0000 mon.smithi149 (mon.0) 683 : cluster 0 osdmap e37: 8 total, 8 up, 8 in 2024-03-11T23:10:45.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:45 smithi165 bash[22892]: cluster 2024-03-11T23:10:44.482872+0000 mon.smithi149 (mon.0) 683 : cluster 0 osdmap e37: 8 total, 8 up, 8 in 2024-03-11T23:10:46.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:46 smithi149 bash[18736]: cluster 2024-03-11T23:10:45.260676+0000 mgr.smithi149.leptec (mgr.14197) 132 : cluster 0 pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:10:46.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:46 smithi149 bash[18736]: cluster 2024-03-11T23:10:45.502329+0000 mon.smithi149 (mon.0) 684 : cluster 0 osdmap e38: 8 total, 8 up, 8 in 2024-03-11T23:10:46.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:46 smithi165 bash[22892]: cluster 2024-03-11T23:10:45.260676+0000 mgr.smithi149.leptec (mgr.14197) 132 : cluster 0 pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:10:46.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:46 smithi165 bash[22892]: cluster 2024-03-11T23:10:45.502329+0000 mon.smithi149 (mon.0) 684 : cluster 0 osdmap e38: 8 total, 8 up, 8 in 2024-03-11T23:10:47.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:47 smithi165 bash[22892]: cluster 2024-03-11T23:10:46.508039+0000 mon.smithi149 (mon.0) 685 : cluster 0 osdmap e39: 8 total, 8 up, 8 in 2024-03-11T23:10:47.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:47 smithi149 bash[18736]: cluster 2024-03-11T23:10:46.508039+0000 mon.smithi149 (mon.0) 685 : cluster 0 osdmap e39: 8 total, 8 up, 8 in 2024-03-11T23:10:48.314 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:10:48.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:48 smithi165 bash[22892]: cluster 2024-03-11T23:10:47.261238+0000 mgr.smithi149.leptec (mgr.14197) 133 : cluster 0 pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:10:48.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:48 smithi149 bash[18736]: cluster 2024-03-11T23:10:47.261238+0000 mgr.smithi149.leptec (mgr.14197) 133 : cluster 0 pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:10:50.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:49 smithi149 bash[18736]: audit 2024-03-11T23:10:48.830638+0000 mon.smithi149 (mon.0) 686 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:50.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:49 smithi149 bash[18736]: audit 2024-03-11T23:10:48.835109+0000 mon.smithi149 (mon.0) 687 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:50.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:49 smithi149 bash[18736]: audit 2024-03-11T23:10:49.281587+0000 mon.smithi149 (mon.0) 688 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:50.246 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:49 smithi149 bash[18736]: audit 2024-03-11T23:10:49.287091+0000 mon.smithi149 (mon.0) 689 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:50.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:49 smithi165 bash[22892]: audit 2024-03-11T23:10:48.830638+0000 mon.smithi149 (mon.0) 686 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:50.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:49 smithi165 bash[22892]: audit 2024-03-11T23:10:48.835109+0000 mon.smithi149 (mon.0) 687 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:50.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:49 smithi165 bash[22892]: audit 2024-03-11T23:10:49.281587+0000 mon.smithi149 (mon.0) 688 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:50.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:49 smithi165 bash[22892]: audit 2024-03-11T23:10:49.287091+0000 mon.smithi149 (mon.0) 689 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:10:51.178 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:10:51.191 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:50 smithi149 bash[18736]: cluster 2024-03-11T23:10:49.261651+0000 mgr.smithi149.leptec (mgr.14197) 134 : cluster 0 pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 100 KiB/s, 0 objects/s recovering 2024-03-11T23:10:51.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:50 smithi165 bash[22892]: cluster 2024-03-11T23:10:49.261651+0000 mgr.smithi149.leptec (mgr.14197) 134 : cluster 0 pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 100 KiB/s, 0 objects/s recovering 2024-03-11T23:10:51.777 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":39,"num_osds":8,"num_up_osds":8,"osd_up_since":1710198642,"num_in_osds":8,"osd_in_since":1710198592,"num_remapped_pgs":0} 2024-03-11T23:10:51.778 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd dump --format=json 2024-03-11T23:10:51.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:51 smithi149 bash[18736]: audit 2024-03-11T23:10:51.176089+0000 mon.smithi149 (mon.0) 690 : audit 0 from='client.? 172.21.15.149:0/1637921188' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:10:52.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:51 smithi165 bash[22892]: audit 2024-03-11T23:10:51.176089+0000 mon.smithi149 (mon.0) 690 : audit 0 from='client.? 172.21.15.149:0/1637921188' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-11T23:10:53.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:52 smithi149 bash[18736]: cluster 2024-03-11T23:10:51.261957+0000 mgr.smithi149.leptec (mgr.14197) 135 : cluster 0 pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-03-11T23:10:53.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:52 smithi165 bash[22892]: cluster 2024-03-11T23:10:51.261957+0000 mgr.smithi149.leptec (mgr.14197) 135 : cluster 0 pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-03-11T23:10:55.200 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:54 smithi165 bash[22892]: cluster 2024-03-11T23:10:53.262550+0000 mgr.smithi149.leptec (mgr.14197) 136 : cluster 0 pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-03-11T23:10:55.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:54 smithi149 bash[18736]: cluster 2024-03-11T23:10:53.262550+0000 mgr.smithi149.leptec (mgr.14197) 136 : cluster 0 pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-03-11T23:10:56.128 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:55 smithi149 bash[18736]: audit 2024-03-11T23:10:55.299356+0000 mon.smithi149 (mon.0) 691 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:10:56.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:55 smithi165 bash[22892]: audit 2024-03-11T23:10:55.299356+0000 mon.smithi149 (mon.0) 691 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:10:56.339 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:10:56.998 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:56 smithi149 bash[18736]: cluster 2024-03-11T23:10:55.263163+0000 mgr.smithi149.leptec (mgr.14197) 137 : cluster 0 pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-03-11T23:10:57.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:56 smithi165 bash[22892]: cluster 2024-03-11T23:10:55.263163+0000 mgr.smithi149.leptec (mgr.14197) 137 : cluster 0 pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-03-11T23:10:58.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:10:58 smithi149 bash[18736]: cluster 2024-03-11T23:10:57.263584+0000 mgr.smithi149.leptec (mgr.14197) 138 : cluster 0 pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-03-11T23:10:59.197 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:10:58 smithi165 bash[22892]: cluster 2024-03-11T23:10:57.263584+0000 mgr.smithi149.leptec (mgr.14197) 138 : cluster 0 pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-03-11T23:11:00.351 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:11:00.351 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":39,"fsid":"ad95ae2e-dffb-11ee-95c8-87774f69a715","created":"2024-03-11T23:05:25.095452+0000","modified":"2024-03-11T23:10:46.495255+0000","last_up_change":"2024-03-11T23:10:42.463191+0000","last_in_change":"2024-03-11T23:09:52.836458+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"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-11T23:10:26.807888+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":"27","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":"a5546c90-302f-4276-a11c-b591130d89f5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6800","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6801","nonce":3784371564}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6802","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6803","nonce":3784371564}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6806","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6807","nonce":3784371564}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6804","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6805","nonce":3784371564}]},"public_addr":"172.21.15.165:6801/3784371564","cluster_addr":"172.21.15.165:6803/3784371564","heartbeat_back_addr":"172.21.15.165:6807/3784371564","heartbeat_front_addr":"172.21.15.165:6805/3784371564","state":["exists","up"]},{"osd":1,"uuid":"db423266-c251-4d43-bea5-c6aef2a08256","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6802","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6803","nonce":2303175692}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6804","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6805","nonce":2303175692}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6808","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6809","nonce":2303175692}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6806","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6807","nonce":2303175692}]},"public_addr":"172.21.15.149:6803/2303175692","cluster_addr":"172.21.15.149:6805/2303175692","heartbeat_back_addr":"172.21.15.149:6809/2303175692","heartbeat_front_addr":"172.21.15.149:6807/2303175692","state":["exists","up"]},{"osd":2,"uuid":"de605cfb-685e-44d1-8066-7a103d123ad9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6808","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6809","nonce":4211583200}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6810","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6811","nonce":4211583200}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6814","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6815","nonce":4211583200}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6812","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6813","nonce":4211583200}]},"public_addr":"172.21.15.165:6809/4211583200","cluster_addr":"172.21.15.165:6811/4211583200","heartbeat_back_addr":"172.21.15.165:6815/4211583200","heartbeat_front_addr":"172.21.15.165:6813/4211583200","state":["exists","up"]},{"osd":3,"uuid":"9e5e665e-05b6-42b5-b846-72306b135760","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6810","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6811","nonce":2846333642}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6812","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6813","nonce":2846333642}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6816","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6817","nonce":2846333642}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6814","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6815","nonce":2846333642}]},"public_addr":"172.21.15.149:6811/2846333642","cluster_addr":"172.21.15.149:6813/2846333642","heartbeat_back_addr":"172.21.15.149:6817/2846333642","heartbeat_front_addr":"172.21.15.149:6815/2846333642","state":["exists","up"]},{"osd":4,"uuid":"e88a5cfd-c503-4d06-b806-d2d7406d6677","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6816","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6817","nonce":2258854930}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6818","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6819","nonce":2258854930}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6822","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6823","nonce":2258854930}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6820","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6821","nonce":2258854930}]},"public_addr":"172.21.15.165:6817/2258854930","cluster_addr":"172.21.15.165:6819/2258854930","heartbeat_back_addr":"172.21.15.165:6823/2258854930","heartbeat_front_addr":"172.21.15.165:6821/2258854930","state":["exists","up"]},{"osd":5,"uuid":"44a3522c-d9ae-40b5-b67c-d08409d56bd6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6818","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6819","nonce":4070828275}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6820","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6821","nonce":4070828275}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6824","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6825","nonce":4070828275}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6822","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6823","nonce":4070828275}]},"public_addr":"172.21.15.149:6819/4070828275","cluster_addr":"172.21.15.149:6821/4070828275","heartbeat_back_addr":"172.21.15.149:6825/4070828275","heartbeat_front_addr":"172.21.15.149:6823/4070828275","state":["exists","up"]},{"osd":6,"uuid":"14ac30cb-836e-424b-a4fc-7018b5b5ad6c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6824","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6825","nonce":2971794566}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6826","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6827","nonce":2971794566}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6830","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6831","nonce":2971794566}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6828","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6829","nonce":2971794566}]},"public_addr":"172.21.15.165:6825/2971794566","cluster_addr":"172.21.15.165:6827/2971794566","heartbeat_back_addr":"172.21.15.165:6831/2971794566","heartbeat_front_addr":"172.21.15.165:6829/2971794566","state":["exists","up"]},{"osd":7,"uuid":"d0a80bdc-8cb7-46d6-84b1-2eb27001775b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6826","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6827","nonce":3663551269}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6828","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6829","nonce":3663551269}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6832","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6833","nonce":3663551269}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6830","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6831","nonce":3663551269}]},"public_addr":"172.21.15.149:6827/3663551269","cluster_addr":"172.21.15.149:6829/3663551269","heartbeat_back_addr":"172.21.15.149:6833/3663551269","heartbeat_front_addr":"172.21.15.149:6831/3663551269","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-11T23:10:18.709502+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-11T23:10:21.541332+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-11T23:10:24.202882+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-11T23:10:27.881175+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-11T23:10:30.076836+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-11T23:10:35.354352+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-11T23:10:34.769569+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-11T23:10:40.749452+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.149:6801/2737527500":"2024-03-12T23:08:10.202498+0000","172.21.15.149:0/592983958":"2024-03-12T23:08:10.202498+0000","172.21.15.149:0/3052054584":"2024-03-12T23:08:10.202498+0000","172.21.15.149:6801/1940315287":"2024-03-12T23:06:42.498548+0000","172.21.15.149:0/584521825":"2024-03-12T23:06:42.498548+0000","172.21.15.149:6800/2737527500":"2024-03-12T23:08:10.202498+0000","172.21.15.149:0/2792424578":"2024-03-12T23:05:56.477903+0000","172.21.15.149:6800/1940315287":"2024-03-12T23:06:42.498548+0000","172.21.15.149:0/1763140869":"2024-03-12T23:05:56.477903+0000","172.21.15.149:0/365379005":"2024-03-12T23:08:10.202498+0000","172.21.15.149:6801/678602403":"2024-03-12T23:05:56.477903+0000","172.21.15.149:0/380292094":"2024-03-12T23:06:42.498548+0000","172.21.15.149:0/537486097":"2024-03-12T23:06:42.498548+0000","172.21.15.149:6800/678602403":"2024-03-12T23:05:56.477903+0000","172.21.15.149:0/15903223":"2024-03-12T23:05:56.477903+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-11T23:11:00.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: cluster 2024-03-11T23:10:59.264111+0000 mgr.smithi149.leptec (mgr.14197) 139 : cluster 0 pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-03-11T23:11:00.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: cephadm 2024-03-11T23:10:59.699393+0000 mgr.smithi149.leptec (mgr.14197) 140 : cephadm 1 Detected new or changed devices on smithi165 2024-03-11T23:11:00.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: audit 2024-03-11T23:10:59.708948+0000 mon.smithi149 (mon.0) 692 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:00.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: audit 2024-03-11T23:10:59.718482+0000 mon.smithi149 (mon.0) 693 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:00.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: audit 2024-03-11T23:10:59.720748+0000 mon.smithi149 (mon.0) 694 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:00.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: audit 2024-03-11T23:10:59.721951+0000 mon.smithi149 (mon.0) 695 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:00.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: audit 2024-03-11T23:10:59.723147+0000 mon.smithi149 (mon.0) 696 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:00.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: audit 2024-03-11T23:10:59.724200+0000 mon.smithi149 (mon.0) 697 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:00.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: cephadm 2024-03-11T23:10:59.724999+0000 mgr.smithi149.leptec (mgr.14197) 141 : cephadm 1 Adjusting osd_memory_target on smithi165 to 3772M 2024-03-11T23:11:00.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: audit 2024-03-11T23:10:59.731029+0000 mon.smithi149 (mon.0) 698 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:00.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:00 smithi149 bash[18736]: audit 2024-03-11T23:11:00.348864+0000 mon.smithi149 (mon.0) 699 : audit 0 from='client.? 172.21.15.149:0/3357754914' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-11T23:11:01.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: cluster 2024-03-11T23:10:59.264111+0000 mgr.smithi149.leptec (mgr.14197) 139 : cluster 0 pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-03-11T23:11:01.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: cephadm 2024-03-11T23:10:59.699393+0000 mgr.smithi149.leptec (mgr.14197) 140 : cephadm 1 Detected new or changed devices on smithi165 2024-03-11T23:11:01.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: audit 2024-03-11T23:10:59.708948+0000 mon.smithi149 (mon.0) 692 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:01.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: audit 2024-03-11T23:10:59.718482+0000 mon.smithi149 (mon.0) 693 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:01.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: audit 2024-03-11T23:10:59.720748+0000 mon.smithi149 (mon.0) 694 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:01.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: audit 2024-03-11T23:10:59.721951+0000 mon.smithi149 (mon.0) 695 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:01.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: audit 2024-03-11T23:10:59.723147+0000 mon.smithi149 (mon.0) 696 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:01.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: audit 2024-03-11T23:10:59.724200+0000 mon.smithi149 (mon.0) 697 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:01.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: cephadm 2024-03-11T23:10:59.724999+0000 mgr.smithi149.leptec (mgr.14197) 141 : cephadm 1 Adjusting osd_memory_target on smithi165 to 3772M 2024-03-11T23:11:01.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: audit 2024-03-11T23:10:59.731029+0000 mon.smithi149 (mon.0) 698 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:01.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:00 smithi165 bash[22892]: audit 2024-03-11T23:11:00.348864+0000 mon.smithi149 (mon.0) 699 : audit 0 from='client.? 172.21.15.149:0/3357754914' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-11T23:11:01.098 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-03-11T23:10:26.807888+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': '27', '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-11T23:11:01.099 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd pool get .mgr pg_num 2024-03-11T23:11:02.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: cluster 2024-03-11T23:11:01.264564+0000 mgr.smithi149.leptec (mgr.14197) 142 : cluster 0 pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:02.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: cephadm 2024-03-11T23:11:01.553552+0000 mgr.smithi149.leptec (mgr.14197) 143 : cephadm 1 Detected new or changed devices on smithi149 2024-03-11T23:11:02.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.565260+0000 mon.smithi149 (mon.0) 700 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:02.996 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.577718+0000 mon.smithi149 (mon.0) 701 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.581009+0000 mon.smithi149 (mon.0) 702 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.582779+0000 mon.smithi149 (mon.0) 703 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.584539+0000 mon.smithi149 (mon.0) 704 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.586159+0000 mon.smithi149 (mon.0) 705 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: cephadm 2024-03-11T23:11:01.587427+0000 mgr.smithi149.leptec (mgr.14197) 144 : cephadm 1 Adjusting osd_memory_target on smithi149 to 186.2M 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: cephadm 2024-03-11T23:11:01.589196+0000 mgr.smithi149.leptec (mgr.14197) 145 : cephadm 3 Unable to set osd_memory_target on smithi149 to 195247923: error parsing value: Value '195247923' is below minimum 939524096 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.589968+0000 mon.smithi149 (mon.0) 706 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.591659+0000 mon.smithi149 (mon.0) 707 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.601558+0000 mon.smithi149 (mon.0) 708 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.609681+0000 mon.smithi149 (mon.0) 709 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.620379+0000 mon.smithi149 (mon.0) 710 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.622051+0000 mon.smithi149 (mon.0) 711 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.630117+0000 mon.smithi149 (mon.0) 712 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-11T23:11:02.997 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:02 smithi149 bash[18736]: audit 2024-03-11T23:11:01.631821+0000 mon.smithi149 (mon.0) 713 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:11:03.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: cluster 2024-03-11T23:11:01.264564+0000 mgr.smithi149.leptec (mgr.14197) 142 : cluster 0 pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: cephadm 2024-03-11T23:11:01.553552+0000 mgr.smithi149.leptec (mgr.14197) 143 : cephadm 1 Detected new or changed devices on smithi149 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.565260+0000 mon.smithi149 (mon.0) 700 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.577718+0000 mon.smithi149 (mon.0) 701 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.581009+0000 mon.smithi149 (mon.0) 702 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.582779+0000 mon.smithi149 (mon.0) 703 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.584539+0000 mon.smithi149 (mon.0) 704 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.586159+0000 mon.smithi149 (mon.0) 705 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: cephadm 2024-03-11T23:11:01.587427+0000 mgr.smithi149.leptec (mgr.14197) 144 : cephadm 1 Adjusting osd_memory_target on smithi149 to 186.2M 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: cephadm 2024-03-11T23:11:01.589196+0000 mgr.smithi149.leptec (mgr.14197) 145 : cephadm 3 Unable to set osd_memory_target on smithi149 to 195247923: error parsing value: Value '195247923' is below minimum 939524096 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.589968+0000 mon.smithi149 (mon.0) 706 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.591659+0000 mon.smithi149 (mon.0) 707 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.601558+0000 mon.smithi149 (mon.0) 708 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:03.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.609681+0000 mon.smithi149 (mon.0) 709 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:11:03.062 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.620379+0000 mon.smithi149 (mon.0) 710 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-11T23:11:03.062 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.622051+0000 mon.smithi149 (mon.0) 711 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:11:03.062 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.630117+0000 mon.smithi149 (mon.0) 712 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-11T23:11:03.062 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:02 smithi165 bash[22892]: audit 2024-03-11T23:11:01.631821+0000 mon.smithi149 (mon.0) 713 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:11:04.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:04 smithi149 bash[18736]: cluster 2024-03-11T23:11:03.265076+0000 mgr.smithi149.leptec (mgr.14197) 146 : cluster 0 pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:05.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:04 smithi165 bash[22892]: cluster 2024-03-11T23:11:03.265076+0000 mgr.smithi149.leptec (mgr.14197) 146 : cluster 0 pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:05.896 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:06.860 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:06 smithi149 bash[18736]: cluster 2024-03-11T23:11:05.265629+0000 mgr.smithi149.leptec (mgr.14197) 147 : cluster 0 pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:07.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:06 smithi165 bash[22892]: cluster 2024-03-11T23:11:05.265629+0000 mgr.smithi149.leptec (mgr.14197) 147 : cluster 0 pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:08.731 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:08 smithi165 bash[22892]: cluster 2024-03-11T23:11:07.266173+0000 mgr.smithi149.leptec (mgr.14197) 148 : cluster 0 pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:08.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:08 smithi149 bash[18736]: cluster 2024-03-11T23:11:07.266173+0000 mgr.smithi149.leptec (mgr.14197) 148 : cluster 0 pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:09.868 INFO:teuthology.orchestra.run.smithi149.stdout:pg_num: 1 2024-03-11T23:11:10.500 INFO:tasks.cephadm:Setting up client nodes... 2024-03-11T23:11:10.501 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-03-11T23:11:10.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:10 smithi149 bash[18736]: cluster 2024-03-11T23:11:09.266600+0000 mgr.smithi149.leptec (mgr.14197) 149 : cluster 0 pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:10.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:10 smithi149 bash[18736]: audit 2024-03-11T23:11:09.866553+0000 mon.smithi149 (mon.0) 714 : audit 0 from='client.? 172.21.15.149:0/1741016022' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-03-11T23:11:10.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:10 smithi149 bash[18736]: audit 2024-03-11T23:11:10.299162+0000 mon.smithi149 (mon.0) 715 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:11:11.004 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:10 smithi165 bash[22892]: cluster 2024-03-11T23:11:09.266600+0000 mgr.smithi149.leptec (mgr.14197) 149 : cluster 0 pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:11.004 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:10 smithi165 bash[22892]: audit 2024-03-11T23:11:09.866553+0000 mon.smithi149 (mon.0) 714 : audit 0 from='client.? 172.21.15.149:0/1741016022' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-03-11T23:11:11.004 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:10 smithi165 bash[22892]: audit 2024-03-11T23:11:10.299162+0000 mon.smithi149 (mon.0) 715 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:11:12.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:12 smithi149 bash[18736]: cluster 2024-03-11T23:11:11.267016+0000 mgr.smithi149.leptec (mgr.14197) 150 : cluster 0 pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:13.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:12 smithi165 bash[22892]: cluster 2024-03-11T23:11:11.267016+0000 mgr.smithi149.leptec (mgr.14197) 150 : cluster 0 pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:14.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:14 smithi149 bash[18736]: cluster 2024-03-11T23:11:13.267690+0000 mgr.smithi149.leptec (mgr.14197) 151 : cluster 0 pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:15.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:14 smithi165 bash[22892]: cluster 2024-03-11T23:11:13.267690+0000 mgr.smithi149.leptec (mgr.14197) 151 : cluster 0 pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:15.501 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:16.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:16 smithi165 bash[22892]: cluster 2024-03-11T23:11:15.268411+0000 mgr.smithi149.leptec (mgr.14197) 152 : cluster 0 pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:16.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:16 smithi149 bash[18736]: cluster 2024-03-11T23:11:15.268411+0000 mgr.smithi149.leptec (mgr.14197) 152 : cluster 0 pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:18.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:18 smithi149 bash[18736]: cluster 2024-03-11T23:11:17.268979+0000 mgr.smithi149.leptec (mgr.14197) 153 : cluster 0 pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:18.904 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:18 smithi165 bash[22892]: cluster 2024-03-11T23:11:17.268979+0000 mgr.smithi149.leptec (mgr.14197) 153 : cluster 0 pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:18.940 INFO:teuthology.orchestra.run.smithi149.stdout:[client.0] 2024-03-11T23:11:18.940 INFO:teuthology.orchestra.run.smithi149.stdout: key = AQCWj+9lWTLRNxAAMpsKwlhTPkscZ36E/K7I8g== 2024-03-11T23:11:19.703 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:19 smithi165 bash[22892]: audit 2024-03-11T23:11:18.936297+0000 mon.smithi149 (mon.0) 716 : audit 1 from='client.? 172.21.15.149:0/1794817568' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-03-11T23:11:19.703 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:19 smithi165 bash[22892]: audit 2024-03-11T23:11:18.938316+0000 mon.smithi149 (mon.0) 717 : audit 1 from='client.? 172.21.15.149:0/1794817568' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-03-11T23:11:19.901 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:19 smithi149 bash[18736]: audit 2024-03-11T23:11:18.936297+0000 mon.smithi149 (mon.0) 716 : audit 1 from='client.? 172.21.15.149:0/1794817568' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-03-11T23:11:19.901 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:19 smithi149 bash[18736]: audit 2024-03-11T23:11:18.938316+0000 mon.smithi149 (mon.0) 717 : audit 1 from='client.? 172.21.15.149:0/1794817568' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-03-11T23:11:19.902 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:11:19.902 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-03-11T23:11:19.902 DEBUG:teuthology.orchestra.run.smithi149:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-03-11T23:11:19.923 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-03-11T23:11:21.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:20 smithi149 bash[18736]: cluster 2024-03-11T23:11:19.269541+0000 mgr.smithi149.leptec (mgr.14197) 154 : cluster 0 pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:21.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:20 smithi165 bash[22892]: cluster 2024-03-11T23:11:19.269541+0000 mgr.smithi149.leptec (mgr.14197) 154 : cluster 0 pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:23.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:22 smithi149 bash[18736]: cluster 2024-03-11T23:11:21.270170+0000 mgr.smithi149.leptec (mgr.14197) 155 : cluster 0 pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:23.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:22 smithi165 bash[22892]: cluster 2024-03-11T23:11:21.270170+0000 mgr.smithi149.leptec (mgr.14197) 155 : cluster 0 pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:24.695 INFO:teuthology.orchestra.run.smithi165.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi165/config 2024-03-11T23:11:25.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:24 smithi165 bash[22892]: cluster 2024-03-11T23:11:23.270729+0000 mgr.smithi149.leptec (mgr.14197) 156 : cluster 0 pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:25.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:24 smithi149 bash[18736]: cluster 2024-03-11T23:11:23.270729+0000 mgr.smithi149.leptec (mgr.14197) 156 : cluster 0 pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:26.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:25 smithi149 bash[18736]: audit 2024-03-11T23:11:25.300125+0000 mon.smithi149 (mon.0) 718 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:11:26.267 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:25 smithi165 bash[22892]: audit 2024-03-11T23:11:25.300125+0000 mon.smithi149 (mon.0) 718 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:11:27.177 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:26 smithi149 bash[18736]: cluster 2024-03-11T23:11:25.271343+0000 mgr.smithi149.leptec (mgr.14197) 157 : cluster 0 pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:27.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:26 smithi165 bash[22892]: cluster 2024-03-11T23:11:25.271343+0000 mgr.smithi149.leptec (mgr.14197) 157 : cluster 0 pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:28.228 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:27 smithi165 bash[22892]: cluster 2024-03-11T23:11:27.271890+0000 mgr.smithi149.leptec (mgr.14197) 158 : cluster 0 pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:28.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:27 smithi149 bash[18736]: cluster 2024-03-11T23:11:27.271890+0000 mgr.smithi149.leptec (mgr.14197) 158 : cluster 0 pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:28.724 INFO:teuthology.orchestra.run.smithi165.stdout:[client.1] 2024-03-11T23:11:28.725 INFO:teuthology.orchestra.run.smithi165.stdout: key = AQCgj+9lrXXVKhAA2CCQzyrr7kmA/QJv/FaUHA== 2024-03-11T23:11:29.009 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:28 smithi165 bash[22892]: audit 2024-03-11T23:11:28.716173+0000 mon.smithi165 (mon.1) 19 : audit 1 from='client.? 172.21.15.165:0/3333632745' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-03-11T23:11:29.009 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:28 smithi165 bash[22892]: audit 2024-03-11T23:11:28.718288+0000 mon.smithi149 (mon.0) 719 : 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-11T23:11:29.009 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:28 smithi165 bash[22892]: audit 2024-03-11T23:11:28.721552+0000 mon.smithi149 (mon.0) 720 : 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-11T23:11:29.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:28 smithi149 bash[18736]: audit 2024-03-11T23:11:28.716173+0000 mon.smithi165 (mon.1) 19 : audit 1 from='client.? 172.21.15.165:0/3333632745' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-03-11T23:11:29.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:28 smithi149 bash[18736]: audit 2024-03-11T23:11:28.718288+0000 mon.smithi149 (mon.0) 719 : 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-11T23:11:29.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:28 smithi149 bash[18736]: audit 2024-03-11T23:11:28.721552+0000 mon.smithi149 (mon.0) 720 : 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-11T23:11:29.578 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T23:11:29.578 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-03-11T23:11:29.578 DEBUG:teuthology.orchestra.run.smithi165:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-03-11T23:11:29.601 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-03-11T23:11:29.601 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-03-11T23:11:29.602 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph mgr dump --format=json 2024-03-11T23:11:30.245 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:29 smithi149 bash[18736]: cluster 2024-03-11T23:11:29.272508+0000 mgr.smithi149.leptec (mgr.14197) 159 : cluster 0 pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:30.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:29 smithi165 bash[22892]: cluster 2024-03-11T23:11:29.272508+0000 mgr.smithi149.leptec (mgr.14197) 159 : cluster 0 pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:31.495 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:31 smithi149 bash[18736]: audit 2024-03-11T23:11:30.104614+0000 mon.smithi149 (mon.0) 721 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:31.495 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:31 smithi149 bash[18736]: audit 2024-03-11T23:11:30.116565+0000 mon.smithi149 (mon.0) 722 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:31.495 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:31 smithi149 bash[18736]: audit 2024-03-11T23:11:30.553628+0000 mon.smithi149 (mon.0) 723 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:31.496 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:31 smithi149 bash[18736]: audit 2024-03-11T23:11:30.563621+0000 mon.smithi149 (mon.0) 724 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:31.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:31 smithi165 bash[22892]: audit 2024-03-11T23:11:30.104614+0000 mon.smithi149 (mon.0) 721 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:31.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:31 smithi165 bash[22892]: audit 2024-03-11T23:11:30.116565+0000 mon.smithi149 (mon.0) 722 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:31.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:31 smithi165 bash[22892]: audit 2024-03-11T23:11:30.553628+0000 mon.smithi149 (mon.0) 723 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:31.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:31 smithi165 bash[22892]: audit 2024-03-11T23:11:30.563621+0000 mon.smithi149 (mon.0) 724 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:11:32.495 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:32 smithi149 bash[18736]: cluster 2024-03-11T23:11:31.273110+0000 mgr.smithi149.leptec (mgr.14197) 160 : cluster 0 pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:32.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:32 smithi165 bash[22892]: cluster 2024-03-11T23:11:31.273110+0000 mgr.smithi149.leptec (mgr.14197) 160 : cluster 0 pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:34.410 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:34.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:34 smithi149 bash[18736]: cluster 2024-03-11T23:11:33.273732+0000 mgr.smithi149.leptec (mgr.14197) 161 : cluster 0 pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:34.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:34 smithi165 bash[22892]: cluster 2024-03-11T23:11:33.273732+0000 mgr.smithi149.leptec (mgr.14197) 161 : cluster 0 pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:36.586 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:36 smithi149 bash[18736]: cluster 2024-03-11T23:11:35.274124+0000 mgr.smithi149.leptec (mgr.14197) 162 : cluster 0 pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:36.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:36 smithi165 bash[22892]: cluster 2024-03-11T23:11:35.274124+0000 mgr.smithi149.leptec (mgr.14197) 162 : cluster 0 pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:37.004 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:11:37.657 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:37 smithi149 bash[18736]: audit 2024-03-11T23:11:36.995889+0000 mon.smithi149 (mon.0) 725 : audit 0 from='client.? 172.21.15.149:0/3140277246' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-03-11T23:11:37.659 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":19,"flags":0,"active_gid":14197,"active_name":"smithi149.leptec","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6800","nonce":1239751713},{"type":"v1","addr":"172.21.15.149:6801","nonce":1239751713}]},"active_addr":"172.21.15.149:6801/1239751713","active_change":"2024-03-11T23:08:10.202735+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":14211,"name":"smithi165.tfkohn","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.149:8443/","prometheus":"http://172.21.15.149: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.149:0","nonce":234704210}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.149:0","nonce":3180137177}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.149:0","nonce":1715857111}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.149:0","nonce":1278697695}]}]} 2024-03-11T23:11:37.665 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-03-11T23:11:37.665 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-03-11T23:11:37.665 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd dump --format=json 2024-03-11T23:11:37.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:37 smithi165 bash[22892]: audit 2024-03-11T23:11:36.995889+0000 mon.smithi149 (mon.0) 725 : audit 0 from='client.? 172.21.15.149:0/3140277246' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-03-11T23:11:38.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:38 smithi149 bash[18736]: cluster 2024-03-11T23:11:37.274643+0000 mgr.smithi149.leptec (mgr.14197) 163 : cluster 0 pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:38.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:38 smithi165 bash[22892]: cluster 2024-03-11T23:11:37.274643+0000 mgr.smithi149.leptec (mgr.14197) 163 : cluster 0 pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:40.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:40 smithi149 bash[18736]: cluster 2024-03-11T23:11:39.275255+0000 mgr.smithi149.leptec (mgr.14197) 164 : cluster 0 pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:40.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:40 smithi149 bash[18736]: audit 2024-03-11T23:11:40.300474+0000 mon.smithi149 (mon.0) 726 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:11:40.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:40 smithi165 bash[22892]: cluster 2024-03-11T23:11:39.275255+0000 mgr.smithi149.leptec (mgr.14197) 164 : cluster 0 pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:40.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:40 smithi165 bash[22892]: audit 2024-03-11T23:11:40.300474+0000 mon.smithi149 (mon.0) 726 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:11:42.458 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:42.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:42 smithi149 bash[18736]: cluster 2024-03-11T23:11:41.275822+0000 mgr.smithi149.leptec (mgr.14197) 165 : cluster 0 pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:42.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:42 smithi165 bash[22892]: cluster 2024-03-11T23:11:41.275822+0000 mgr.smithi149.leptec (mgr.14197) 165 : cluster 0 pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:44.711 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:44 smithi165 bash[22892]: cluster 2024-03-11T23:11:43.276204+0000 mgr.smithi149.leptec (mgr.14197) 166 : cluster 0 pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:44.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:44 smithi149 bash[18736]: cluster 2024-03-11T23:11:43.276204+0000 mgr.smithi149.leptec (mgr.14197) 166 : cluster 0 pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:44.878 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:11:44.878 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":39,"fsid":"ad95ae2e-dffb-11ee-95c8-87774f69a715","created":"2024-03-11T23:05:25.095452+0000","modified":"2024-03-11T23:10:46.495255+0000","last_up_change":"2024-03-11T23:10:42.463191+0000","last_in_change":"2024-03-11T23:09:52.836458+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"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-11T23:10:26.807888+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":"27","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":"a5546c90-302f-4276-a11c-b591130d89f5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6800","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6801","nonce":3784371564}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6802","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6803","nonce":3784371564}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6806","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6807","nonce":3784371564}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6804","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6805","nonce":3784371564}]},"public_addr":"172.21.15.165:6801/3784371564","cluster_addr":"172.21.15.165:6803/3784371564","heartbeat_back_addr":"172.21.15.165:6807/3784371564","heartbeat_front_addr":"172.21.15.165:6805/3784371564","state":["exists","up"]},{"osd":1,"uuid":"db423266-c251-4d43-bea5-c6aef2a08256","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6802","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6803","nonce":2303175692}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6804","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6805","nonce":2303175692}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6808","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6809","nonce":2303175692}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6806","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6807","nonce":2303175692}]},"public_addr":"172.21.15.149:6803/2303175692","cluster_addr":"172.21.15.149:6805/2303175692","heartbeat_back_addr":"172.21.15.149:6809/2303175692","heartbeat_front_addr":"172.21.15.149:6807/2303175692","state":["exists","up"]},{"osd":2,"uuid":"de605cfb-685e-44d1-8066-7a103d123ad9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6808","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6809","nonce":4211583200}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6810","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6811","nonce":4211583200}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6814","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6815","nonce":4211583200}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6812","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6813","nonce":4211583200}]},"public_addr":"172.21.15.165:6809/4211583200","cluster_addr":"172.21.15.165:6811/4211583200","heartbeat_back_addr":"172.21.15.165:6815/4211583200","heartbeat_front_addr":"172.21.15.165:6813/4211583200","state":["exists","up"]},{"osd":3,"uuid":"9e5e665e-05b6-42b5-b846-72306b135760","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6810","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6811","nonce":2846333642}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6812","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6813","nonce":2846333642}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6816","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6817","nonce":2846333642}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6814","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6815","nonce":2846333642}]},"public_addr":"172.21.15.149:6811/2846333642","cluster_addr":"172.21.15.149:6813/2846333642","heartbeat_back_addr":"172.21.15.149:6817/2846333642","heartbeat_front_addr":"172.21.15.149:6815/2846333642","state":["exists","up"]},{"osd":4,"uuid":"e88a5cfd-c503-4d06-b806-d2d7406d6677","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6816","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6817","nonce":2258854930}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6818","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6819","nonce":2258854930}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6822","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6823","nonce":2258854930}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6820","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6821","nonce":2258854930}]},"public_addr":"172.21.15.165:6817/2258854930","cluster_addr":"172.21.15.165:6819/2258854930","heartbeat_back_addr":"172.21.15.165:6823/2258854930","heartbeat_front_addr":"172.21.15.165:6821/2258854930","state":["exists","up"]},{"osd":5,"uuid":"44a3522c-d9ae-40b5-b67c-d08409d56bd6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6818","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6819","nonce":4070828275}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6820","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6821","nonce":4070828275}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6824","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6825","nonce":4070828275}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6822","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6823","nonce":4070828275}]},"public_addr":"172.21.15.149:6819/4070828275","cluster_addr":"172.21.15.149:6821/4070828275","heartbeat_back_addr":"172.21.15.149:6825/4070828275","heartbeat_front_addr":"172.21.15.149:6823/4070828275","state":["exists","up"]},{"osd":6,"uuid":"14ac30cb-836e-424b-a4fc-7018b5b5ad6c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6824","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6825","nonce":2971794566}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6826","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6827","nonce":2971794566}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6830","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6831","nonce":2971794566}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6828","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6829","nonce":2971794566}]},"public_addr":"172.21.15.165:6825/2971794566","cluster_addr":"172.21.15.165:6827/2971794566","heartbeat_back_addr":"172.21.15.165:6831/2971794566","heartbeat_front_addr":"172.21.15.165:6829/2971794566","state":["exists","up"]},{"osd":7,"uuid":"d0a80bdc-8cb7-46d6-84b1-2eb27001775b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6826","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6827","nonce":3663551269}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6828","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6829","nonce":3663551269}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6832","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6833","nonce":3663551269}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6830","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6831","nonce":3663551269}]},"public_addr":"172.21.15.149:6827/3663551269","cluster_addr":"172.21.15.149:6829/3663551269","heartbeat_back_addr":"172.21.15.149:6833/3663551269","heartbeat_front_addr":"172.21.15.149:6831/3663551269","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-11T23:10:18.709502+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-11T23:10:21.541332+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-11T23:10:24.202882+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-11T23:10:27.881175+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-11T23:10:30.076836+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-11T23:10:35.354352+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-11T23:10:34.769569+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-11T23:10:40.749452+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.149:6801/2737527500":"2024-03-12T23:08:10.202498+0000","172.21.15.149:0/592983958":"2024-03-12T23:08:10.202498+0000","172.21.15.149:0/3052054584":"2024-03-12T23:08:10.202498+0000","172.21.15.149:6801/1940315287":"2024-03-12T23:06:42.498548+0000","172.21.15.149:0/584521825":"2024-03-12T23:06:42.498548+0000","172.21.15.149:6800/2737527500":"2024-03-12T23:08:10.202498+0000","172.21.15.149:0/2792424578":"2024-03-12T23:05:56.477903+0000","172.21.15.149:6800/1940315287":"2024-03-12T23:06:42.498548+0000","172.21.15.149:0/1763140869":"2024-03-12T23:05:56.477903+0000","172.21.15.149:0/365379005":"2024-03-12T23:08:10.202498+0000","172.21.15.149:6801/678602403":"2024-03-12T23:05:56.477903+0000","172.21.15.149:0/380292094":"2024-03-12T23:06:42.498548+0000","172.21.15.149:0/537486097":"2024-03-12T23:06:42.498548+0000","172.21.15.149:6800/678602403":"2024-03-12T23:05:56.477903+0000","172.21.15.149:0/15903223":"2024-03-12T23:05:56.477903+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-11T23:11:45.539 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-03-11T23:11:45.539 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd dump --format=json 2024-03-11T23:11:45.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:45 smithi149 bash[18736]: audit 2024-03-11T23:11:44.875928+0000 mon.smithi149 (mon.0) 727 : audit 0 from='client.? 172.21.15.149:0/4055762673' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-11T23:11:45.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:45 smithi165 bash[22892]: audit 2024-03-11T23:11:44.875928+0000 mon.smithi149 (mon.0) 727 : audit 0 from='client.? 172.21.15.149:0/4055762673' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-11T23:11:46.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:46 smithi149 bash[18736]: cluster 2024-03-11T23:11:45.276731+0000 mgr.smithi149.leptec (mgr.14197) 167 : cluster 0 pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:46.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:46 smithi165 bash[22892]: cluster 2024-03-11T23:11:45.276731+0000 mgr.smithi149.leptec (mgr.14197) 167 : cluster 0 pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:48.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:48 smithi149 bash[18736]: cluster 2024-03-11T23:11:47.277309+0000 mgr.smithi149.leptec (mgr.14197) 168 : cluster 0 pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:48.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:48 smithi165 bash[22892]: cluster 2024-03-11T23:11:47.277309+0000 mgr.smithi149.leptec (mgr.14197) 168 : cluster 0 pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:50.330 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:50.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:50 smithi149 bash[18736]: cluster 2024-03-11T23:11:49.277917+0000 mgr.smithi149.leptec (mgr.14197) 169 : cluster 0 pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:50.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:50 smithi165 bash[22892]: cluster 2024-03-11T23:11:49.277917+0000 mgr.smithi149.leptec (mgr.14197) 169 : cluster 0 pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:52.630 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:52 smithi149 bash[18736]: cluster 2024-03-11T23:11:51.278312+0000 mgr.smithi149.leptec (mgr.14197) 170 : cluster 0 pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:52.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:52 smithi165 bash[22892]: cluster 2024-03-11T23:11:51.278312+0000 mgr.smithi149.leptec (mgr.14197) 170 : cluster 0 pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:52.973 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:11:52.973 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":39,"fsid":"ad95ae2e-dffb-11ee-95c8-87774f69a715","created":"2024-03-11T23:05:25.095452+0000","modified":"2024-03-11T23:10:46.495255+0000","last_up_change":"2024-03-11T23:10:42.463191+0000","last_in_change":"2024-03-11T23:09:52.836458+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"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-11T23:10:26.807888+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":"27","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":"a5546c90-302f-4276-a11c-b591130d89f5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6800","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6801","nonce":3784371564}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6802","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6803","nonce":3784371564}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6806","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6807","nonce":3784371564}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6804","nonce":3784371564},{"type":"v1","addr":"172.21.15.165:6805","nonce":3784371564}]},"public_addr":"172.21.15.165:6801/3784371564","cluster_addr":"172.21.15.165:6803/3784371564","heartbeat_back_addr":"172.21.15.165:6807/3784371564","heartbeat_front_addr":"172.21.15.165:6805/3784371564","state":["exists","up"]},{"osd":1,"uuid":"db423266-c251-4d43-bea5-c6aef2a08256","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6802","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6803","nonce":2303175692}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6804","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6805","nonce":2303175692}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6808","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6809","nonce":2303175692}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6806","nonce":2303175692},{"type":"v1","addr":"172.21.15.149:6807","nonce":2303175692}]},"public_addr":"172.21.15.149:6803/2303175692","cluster_addr":"172.21.15.149:6805/2303175692","heartbeat_back_addr":"172.21.15.149:6809/2303175692","heartbeat_front_addr":"172.21.15.149:6807/2303175692","state":["exists","up"]},{"osd":2,"uuid":"de605cfb-685e-44d1-8066-7a103d123ad9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6808","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6809","nonce":4211583200}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6810","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6811","nonce":4211583200}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6814","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6815","nonce":4211583200}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6812","nonce":4211583200},{"type":"v1","addr":"172.21.15.165:6813","nonce":4211583200}]},"public_addr":"172.21.15.165:6809/4211583200","cluster_addr":"172.21.15.165:6811/4211583200","heartbeat_back_addr":"172.21.15.165:6815/4211583200","heartbeat_front_addr":"172.21.15.165:6813/4211583200","state":["exists","up"]},{"osd":3,"uuid":"9e5e665e-05b6-42b5-b846-72306b135760","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6810","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6811","nonce":2846333642}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6812","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6813","nonce":2846333642}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6816","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6817","nonce":2846333642}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6814","nonce":2846333642},{"type":"v1","addr":"172.21.15.149:6815","nonce":2846333642}]},"public_addr":"172.21.15.149:6811/2846333642","cluster_addr":"172.21.15.149:6813/2846333642","heartbeat_back_addr":"172.21.15.149:6817/2846333642","heartbeat_front_addr":"172.21.15.149:6815/2846333642","state":["exists","up"]},{"osd":4,"uuid":"e88a5cfd-c503-4d06-b806-d2d7406d6677","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6816","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6817","nonce":2258854930}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6818","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6819","nonce":2258854930}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6822","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6823","nonce":2258854930}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6820","nonce":2258854930},{"type":"v1","addr":"172.21.15.165:6821","nonce":2258854930}]},"public_addr":"172.21.15.165:6817/2258854930","cluster_addr":"172.21.15.165:6819/2258854930","heartbeat_back_addr":"172.21.15.165:6823/2258854930","heartbeat_front_addr":"172.21.15.165:6821/2258854930","state":["exists","up"]},{"osd":5,"uuid":"44a3522c-d9ae-40b5-b67c-d08409d56bd6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6818","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6819","nonce":4070828275}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6820","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6821","nonce":4070828275}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6824","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6825","nonce":4070828275}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6822","nonce":4070828275},{"type":"v1","addr":"172.21.15.149:6823","nonce":4070828275}]},"public_addr":"172.21.15.149:6819/4070828275","cluster_addr":"172.21.15.149:6821/4070828275","heartbeat_back_addr":"172.21.15.149:6825/4070828275","heartbeat_front_addr":"172.21.15.149:6823/4070828275","state":["exists","up"]},{"osd":6,"uuid":"14ac30cb-836e-424b-a4fc-7018b5b5ad6c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6824","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6825","nonce":2971794566}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6826","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6827","nonce":2971794566}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6830","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6831","nonce":2971794566}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.165:6828","nonce":2971794566},{"type":"v1","addr":"172.21.15.165:6829","nonce":2971794566}]},"public_addr":"172.21.15.165:6825/2971794566","cluster_addr":"172.21.15.165:6827/2971794566","heartbeat_back_addr":"172.21.15.165:6831/2971794566","heartbeat_front_addr":"172.21.15.165:6829/2971794566","state":["exists","up"]},{"osd":7,"uuid":"d0a80bdc-8cb7-46d6-84b1-2eb27001775b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6826","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6827","nonce":3663551269}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6828","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6829","nonce":3663551269}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6832","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6833","nonce":3663551269}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6830","nonce":3663551269},{"type":"v1","addr":"172.21.15.149:6831","nonce":3663551269}]},"public_addr":"172.21.15.149:6827/3663551269","cluster_addr":"172.21.15.149:6829/3663551269","heartbeat_back_addr":"172.21.15.149:6833/3663551269","heartbeat_front_addr":"172.21.15.149:6831/3663551269","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-11T23:10:18.709502+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-11T23:10:21.541332+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-11T23:10:24.202882+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-11T23:10:27.881175+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-11T23:10:30.076836+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-11T23:10:35.354352+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-11T23:10:34.769569+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-11T23:10:40.749452+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.149:6801/2737527500":"2024-03-12T23:08:10.202498+0000","172.21.15.149:0/592983958":"2024-03-12T23:08:10.202498+0000","172.21.15.149:0/3052054584":"2024-03-12T23:08:10.202498+0000","172.21.15.149:6801/1940315287":"2024-03-12T23:06:42.498548+0000","172.21.15.149:0/584521825":"2024-03-12T23:06:42.498548+0000","172.21.15.149:6800/2737527500":"2024-03-12T23:08:10.202498+0000","172.21.15.149:0/2792424578":"2024-03-12T23:05:56.477903+0000","172.21.15.149:6800/1940315287":"2024-03-12T23:06:42.498548+0000","172.21.15.149:0/1763140869":"2024-03-12T23:05:56.477903+0000","172.21.15.149:0/365379005":"2024-03-12T23:08:10.202498+0000","172.21.15.149:6801/678602403":"2024-03-12T23:05:56.477903+0000","172.21.15.149:0/380292094":"2024-03-12T23:06:42.498548+0000","172.21.15.149:0/537486097":"2024-03-12T23:06:42.498548+0000","172.21.15.149:6800/678602403":"2024-03-12T23:05:56.477903+0000","172.21.15.149:0/15903223":"2024-03-12T23:05:56.477903+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-11T23:11:53.585 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-03-11T23:11:53.585 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-03-11T23:11:53.586 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-03-11T23:11:53.586 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-03-11T23:11:53.586 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-03-11T23:11:53.587 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-03-11T23:11:53.587 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-03-11T23:11:53.588 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-03-11T23:11:53.601 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:53 smithi149 bash[18736]: audit 2024-03-11T23:11:52.971274+0000 mon.smithi149 (mon.0) 728 : audit 0 from='client.? 172.21.15.149:0/1995611324' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-11T23:11:53.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:53 smithi165 bash[22892]: audit 2024-03-11T23:11:52.971274+0000 mon.smithi149 (mon.0) 728 : audit 0 from='client.? 172.21.15.149:0/1995611324' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-11T23:11:54.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:54 smithi149 bash[18736]: cluster 2024-03-11T23:11:53.278847+0000 mgr.smithi149.leptec (mgr.14197) 171 : cluster 0 pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:54 smithi165 bash[22892]: cluster 2024-03-11T23:11:53.278847+0000 mgr.smithi149.leptec (mgr.14197) 171 : cluster 0 pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:55.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:55 smithi149 bash[18736]: audit 2024-03-11T23:11:55.301124+0000 mon.smithi149 (mon.0) 729 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:11:55.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:55 smithi165 bash[22892]: audit 2024-03-11T23:11:55.301124+0000 mon.smithi149 (mon.0) 729 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:11:56.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:56 smithi149 bash[18736]: cluster 2024-03-11T23:11:55.279487+0000 mgr.smithi149.leptec (mgr.14197) 172 : cluster 0 pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:56.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:56 smithi165 bash[22892]: cluster 2024-03-11T23:11:55.279487+0000 mgr.smithi149.leptec (mgr.14197) 172 : cluster 0 pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:58.498 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:58.500 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:58.500 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:58.500 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:58.501 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:58.501 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:58.503 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:58.506 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:11:58.703 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:11:58 smithi149 bash[18736]: cluster 2024-03-11T23:11:57.280086+0000 mgr.smithi149.leptec (mgr.14197) 173 : cluster 0 pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:11:58.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:11:58 smithi165 bash[22892]: cluster 2024-03-11T23:11:57.280086+0000 mgr.smithi149.leptec (mgr.14197) 173 : cluster 0 pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:00.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:00 smithi165 bash[22892]: cluster 2024-03-11T23:11:59.280495+0000 mgr.smithi149.leptec (mgr.14197) 174 : cluster 0 pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:00.620 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:00 smithi149 bash[18736]: cluster 2024-03-11T23:11:59.280495+0000 mgr.smithi149.leptec (mgr.14197) 174 : cluster 0 pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:02.750 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:02 smithi149 bash[18736]: cluster 2024-03-11T23:12:01.280962+0000 mgr.smithi149.leptec (mgr.14197) 175 : cluster 0 pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:02.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:02 smithi165 bash[22892]: cluster 2024-03-11T23:12:01.280962+0000 mgr.smithi149.leptec (mgr.14197) 175 : cluster 0 pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:04.631 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:04 smithi149 bash[18736]: cluster 2024-03-11T23:12:03.281542+0000 mgr.smithi149.leptec (mgr.14197) 176 : cluster 0 pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:04.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:04 smithi165 bash[22892]: cluster 2024-03-11T23:12:03.281542+0000 mgr.smithi149.leptec (mgr.14197) 176 : cluster 0 pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:06.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:06 smithi149 bash[18736]: cluster 2024-03-11T23:12:05.282100+0000 mgr.smithi149.leptec (mgr.14197) 177 : cluster 0 pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:06.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:06 smithi165 bash[22892]: cluster 2024-03-11T23:12:05.282100+0000 mgr.smithi149.leptec (mgr.14197) 177 : cluster 0 pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:08.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:08 smithi149 bash[18736]: cluster 2024-03-11T23:12:07.282618+0000 mgr.smithi149.leptec (mgr.14197) 178 : cluster 0 pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:08.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:08 smithi165 bash[22892]: cluster 2024-03-11T23:12:07.282618+0000 mgr.smithi149.leptec (mgr.14197) 178 : cluster 0 pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:09.845 INFO:teuthology.orchestra.run.smithi149.stdout:133143986197 2024-03-11T23:12:09.845 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-03-11T23:12:10.495 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:10 smithi149 bash[18736]: cluster 2024-03-11T23:12:09.283218+0000 mgr.smithi149.leptec (mgr.14197) 179 : cluster 0 pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:10.495 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:10 smithi149 bash[18736]: audit 2024-03-11T23:12:10.301494+0000 mon.smithi149 (mon.0) 730 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:12:10.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:10 smithi165 bash[22892]: cluster 2024-03-11T23:12:09.283218+0000 mgr.smithi149.leptec (mgr.14197) 179 : cluster 0 pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:10.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:10 smithi165 bash[22892]: audit 2024-03-11T23:12:10.301494+0000 mon.smithi149 (mon.0) 730 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:12:11.410 INFO:teuthology.orchestra.run.smithi149.stdout:90194313240 2024-03-11T23:12:11.411 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-03-11T23:12:11.530 INFO:teuthology.orchestra.run.smithi149.stdout:150323855381 2024-03-11T23:12:11.530 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-03-11T23:12:12.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:12 smithi149 bash[18736]: cluster 2024-03-11T23:12:11.283770+0000 mgr.smithi149.leptec (mgr.14197) 180 : cluster 0 pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:12.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:12 smithi165 bash[22892]: cluster 2024-03-11T23:12:11.283770+0000 mgr.smithi149.leptec (mgr.14197) 180 : cluster 0 pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:13.815 INFO:teuthology.orchestra.run.smithi149.stdout:103079215127 2024-03-11T23:12:13.815 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-03-11T23:12:13.831 INFO:teuthology.orchestra.run.smithi149.stdout:115964117014 2024-03-11T23:12:13.832 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-03-11T23:12:14.419 INFO:teuthology.orchestra.run.smithi149.stdout:68719476762 2024-03-11T23:12:14.419 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-03-11T23:12:14.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:14 smithi149 bash[18736]: cluster 2024-03-11T23:12:13.284404+0000 mgr.smithi149.leptec (mgr.14197) 181 : cluster 0 pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:14.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:14 smithi165 bash[22892]: cluster 2024-03-11T23:12:13.284404+0000 mgr.smithi149.leptec (mgr.14197) 181 : cluster 0 pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:15.037 INFO:teuthology.orchestra.run.smithi149.stdout:128849018903 2024-03-11T23:12:15.037 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-03-11T23:12:15.187 INFO:teuthology.orchestra.run.smithi149.stdout:81604378649 2024-03-11T23:12:15.187 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-03-11T23:12:16.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:16 smithi149 bash[18736]: cluster 2024-03-11T23:12:15.284849+0000 mgr.smithi149.leptec (mgr.14197) 182 : cluster 0 pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:16.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:16 smithi165 bash[22892]: cluster 2024-03-11T23:12:15.284849+0000 mgr.smithi149.leptec (mgr.14197) 182 : cluster 0 pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:17.371 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:18.396 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:18.396 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:18.397 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:18.397 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:18.399 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:18.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:18 smithi149 bash[18736]: cluster 2024-03-11T23:12:17.285398+0000 mgr.smithi149.leptec (mgr.14197) 183 : cluster 0 pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:18.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:18 smithi165 bash[22892]: cluster 2024-03-11T23:12:17.285398+0000 mgr.smithi149.leptec (mgr.14197) 183 : cluster 0 pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:20.244 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:20.244 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:20.768 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:20 smithi149 bash[18736]: cluster 2024-03-11T23:12:19.286021+0000 mgr.smithi149.leptec (mgr.14197) 184 : cluster 0 pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:20 smithi165 bash[22892]: cluster 2024-03-11T23:12:19.286021+0000 mgr.smithi149.leptec (mgr.14197) 184 : cluster 0 pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:22.132 INFO:teuthology.orchestra.run.smithi149.stdout:133143986200 2024-03-11T23:12:22.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:22 smithi149 bash[18736]: cluster 2024-03-11T23:12:21.286568+0000 mgr.smithi149.leptec (mgr.14197) 185 : cluster 0 pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:22.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:22 smithi149 bash[18736]: audit 2024-03-11T23:12:22.131790+0000 mon.smithi149 (mon.0) 731 : audit 0 from='client.? 172.21.15.149:0/2787755070' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-03-11T23:12:22.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:22 smithi165 bash[22892]: cluster 2024-03-11T23:12:21.286568+0000 mgr.smithi149.leptec (mgr.14197) 185 : cluster 0 pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:22.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:22 smithi165 bash[22892]: audit 2024-03-11T23:12:22.131790+0000 mon.smithi149 (mon.0) 731 : audit 0 from='client.? 172.21.15.149:0/2787755070' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-03-11T23:12:24.593 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:24 smithi149 bash[18736]: cluster 2024-03-11T23:12:23.287141+0000 mgr.smithi149.leptec (mgr.14197) 186 : cluster 0 pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:24.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:24 smithi165 bash[22892]: cluster 2024-03-11T23:12:23.287141+0000 mgr.smithi149.leptec (mgr.14197) 186 : cluster 0 pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:25.146 INFO:tasks.cephadm.ceph_manager.ceph:need seq 133143986197 got 133143986200 for osd.5 2024-03-11T23:12:25.146 DEBUG:teuthology.parallel:result is None 2024-03-11T23:12:25.495 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:25 smithi149 bash[18736]: audit 2024-03-11T23:12:25.302940+0000 mon.smithi149 (mon.0) 732 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:12:25.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:25 smithi165 bash[22892]: audit 2024-03-11T23:12:25.302940+0000 mon.smithi149 (mon.0) 732 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:12:26.677 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:26 smithi149 bash[18736]: cluster 2024-03-11T23:12:25.287752+0000 mgr.smithi149.leptec (mgr.14197) 187 : cluster 0 pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:26.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:26 smithi165 bash[22892]: cluster 2024-03-11T23:12:25.287752+0000 mgr.smithi149.leptec (mgr.14197) 187 : cluster 0 pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:28.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:28 smithi149 bash[18736]: cluster 2024-03-11T23:12:27.288254+0000 mgr.smithi149.leptec (mgr.14197) 188 : cluster 0 pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:28.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:28 smithi165 bash[22892]: cluster 2024-03-11T23:12:27.288254+0000 mgr.smithi149.leptec (mgr.14197) 188 : cluster 0 pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:29.539 INFO:teuthology.orchestra.run.smithi149.stdout:150323855385 2024-03-11T23:12:29.985 INFO:teuthology.orchestra.run.smithi149.stdout:68719476765 2024-03-11T23:12:30.125 INFO:teuthology.orchestra.run.smithi149.stdout:103079215131 2024-03-11T23:12:30.353 INFO:teuthology.orchestra.run.smithi149.stdout:115964117018 2024-03-11T23:12:30.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:30 smithi149 bash[18736]: cluster 2024-03-11T23:12:29.288601+0000 mgr.smithi149.leptec (mgr.14197) 189 : cluster 0 pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:30.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:30 smithi149 bash[18736]: audit 2024-03-11T23:12:29.538991+0000 mon.smithi149 (mon.0) 733 : audit 0 from='client.? 172.21.15.149:0/1826848226' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-03-11T23:12:30.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:30 smithi149 bash[18736]: audit 2024-03-11T23:12:29.984702+0000 mon.smithi149 (mon.0) 734 : audit 0 from='client.? 172.21.15.149:0/3364102737' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-03-11T23:12:30.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:30 smithi149 bash[18736]: audit 2024-03-11T23:12:30.124830+0000 mon.smithi149 (mon.0) 735 : audit 0 from='client.? 172.21.15.149:0/2420156991' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-03-11T23:12:30.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:30 smithi149 bash[18736]: audit 2024-03-11T23:12:30.353265+0000 mon.smithi149 (mon.0) 736 : audit 0 from='client.? 172.21.15.149:0/3100886629' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-03-11T23:12:30.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:30 smithi165 bash[22892]: cluster 2024-03-11T23:12:29.288601+0000 mgr.smithi149.leptec (mgr.14197) 189 : cluster 0 pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:30.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:30 smithi165 bash[22892]: audit 2024-03-11T23:12:29.538991+0000 mon.smithi149 (mon.0) 733 : audit 0 from='client.? 172.21.15.149:0/1826848226' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-03-11T23:12:30.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:30 smithi165 bash[22892]: audit 2024-03-11T23:12:29.984702+0000 mon.smithi149 (mon.0) 734 : audit 0 from='client.? 172.21.15.149:0/3364102737' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-03-11T23:12:30.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:30 smithi165 bash[22892]: audit 2024-03-11T23:12:30.124830+0000 mon.smithi149 (mon.0) 735 : audit 0 from='client.? 172.21.15.149:0/2420156991' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-03-11T23:12:30.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:30 smithi165 bash[22892]: audit 2024-03-11T23:12:30.353265+0000 mon.smithi149 (mon.0) 736 : audit 0 from='client.? 172.21.15.149:0/3100886629' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-03-11T23:12:31.164 INFO:teuthology.orchestra.run.smithi149.stdout:128849018906 2024-03-11T23:12:31.428 INFO:teuthology.orchestra.run.smithi149.stdout:90194313244 2024-03-11T23:12:31.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:31 smithi165 bash[22892]: audit 2024-03-11T23:12:30.694770+0000 mon.smithi149 (mon.0) 737 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:12:31.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:31 smithi165 bash[22892]: audit 2024-03-11T23:12:31.163610+0000 mon.smithi149 (mon.0) 738 : audit 0 from='client.? 172.21.15.149:0/3076997492' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-03-11T23:12:31.560 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:31 smithi165 bash[22892]: audit 2024-03-11T23:12:31.427375+0000 mon.smithi149 (mon.0) 739 : audit 0 from='client.? 172.21.15.149:0/4148532309' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-03-11T23:12:31.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:31 smithi149 bash[18736]: audit 2024-03-11T23:12:30.694770+0000 mon.smithi149 (mon.0) 737 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:12:31.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:31 smithi149 bash[18736]: audit 2024-03-11T23:12:31.163610+0000 mon.smithi149 (mon.0) 738 : audit 0 from='client.? 172.21.15.149:0/3076997492' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-03-11T23:12:31.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:31 smithi149 bash[18736]: audit 2024-03-11T23:12:31.427375+0000 mon.smithi149 (mon.0) 739 : audit 0 from='client.? 172.21.15.149:0/4148532309' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-03-11T23:12:32.348 INFO:tasks.cephadm.ceph_manager.ceph:need seq 150323855381 got 150323855385 for osd.7 2024-03-11T23:12:32.348 DEBUG:teuthology.parallel:result is None 2024-03-11T23:12:32.369 INFO:teuthology.orchestra.run.smithi149.stdout:81604378653 2024-03-11T23:12:32.521 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476762 got 68719476765 for osd.0 2024-03-11T23:12:32.521 DEBUG:teuthology.parallel:result is None 2024-03-11T23:12:32.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:32 smithi149 bash[18736]: cluster 2024-03-11T23:12:31.289168+0000 mgr.smithi149.leptec (mgr.14197) 190 : cluster 0 pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:32.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:32 smithi149 bash[18736]: audit 2024-03-11T23:12:32.369222+0000 mon.smithi149 (mon.0) 740 : audit 0 from='client.? 172.21.15.149:0/3973670290' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-03-11T23:12:32.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:32 smithi165 bash[22892]: cluster 2024-03-11T23:12:31.289168+0000 mgr.smithi149.leptec (mgr.14197) 190 : cluster 0 pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:32.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:32 smithi165 bash[22892]: audit 2024-03-11T23:12:32.369222+0000 mon.smithi149 (mon.0) 740 : audit 0 from='client.? 172.21.15.149:0/3973670290' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-03-11T23:12:33.453 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215127 got 103079215131 for osd.3 2024-03-11T23:12:33.453 DEBUG:teuthology.parallel:result is None 2024-03-11T23:12:33.602 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964117014 got 115964117018 for osd.4 2024-03-11T23:12:33.602 DEBUG:teuthology.parallel:result is None 2024-03-11T23:12:33.723 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018903 got 128849018906 for osd.6 2024-03-11T23:12:33.723 DEBUG:teuthology.parallel:result is None 2024-03-11T23:12:34.558 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:34 smithi149 bash[18736]: cluster 2024-03-11T23:12:33.289883+0000 mgr.smithi149.leptec (mgr.14197) 191 : cluster 0 pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:34.559 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378649 got 81604378653 for osd.1 2024-03-11T23:12:34.559 DEBUG:teuthology.parallel:result is None 2024-03-11T23:12:34.573 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313240 got 90194313244 for osd.2 2024-03-11T23:12:34.573 DEBUG:teuthology.parallel:result is None 2024-03-11T23:12:34.573 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-03-11T23:12:34.574 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph pg dump --format=json 2024-03-11T23:12:34.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:34 smithi165 bash[22892]: cluster 2024-03-11T23:12:33.289883+0000 mgr.smithi149.leptec (mgr.14197) 191 : cluster 0 pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:36.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:36 smithi149 bash[18736]: cluster 2024-03-11T23:12:35.290504+0000 mgr.smithi149.leptec (mgr.14197) 192 : cluster 0 pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:36.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:36 smithi149 bash[18736]: audit 2024-03-11T23:12:36.289747+0000 mon.smithi149 (mon.0) 741 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:12:36.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:36 smithi149 bash[18736]: audit 2024-03-11T23:12:36.301562+0000 mon.smithi149 (mon.0) 742 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:12:36.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:36 smithi165 bash[22892]: cluster 2024-03-11T23:12:35.290504+0000 mgr.smithi149.leptec (mgr.14197) 192 : cluster 0 pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:36.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:36 smithi165 bash[22892]: audit 2024-03-11T23:12:36.289747+0000 mon.smithi149 (mon.0) 741 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:12:36.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:36 smithi165 bash[22892]: audit 2024-03-11T23:12:36.301562+0000 mon.smithi149 (mon.0) 742 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:12:38.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:38 smithi165 bash[22892]: cluster 2024-03-11T23:12:37.290881+0000 mgr.smithi149.leptec (mgr.14197) 193 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:38.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:38 smithi165 bash[22892]: audit 2024-03-11T23:12:38.063594+0000 mon.smithi149 (mon.0) 743 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:12:38.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:38 smithi165 bash[22892]: audit 2024-03-11T23:12:38.074694+0000 mon.smithi149 (mon.0) 744 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:12:38.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:38 smithi149 bash[18736]: cluster 2024-03-11T23:12:37.290881+0000 mgr.smithi149.leptec (mgr.14197) 193 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:38.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:38 smithi149 bash[18736]: audit 2024-03-11T23:12:38.063594+0000 mon.smithi149 (mon.0) 743 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:12:38.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:38 smithi149 bash[18736]: audit 2024-03-11T23:12:38.074694+0000 mon.smithi149 (mon.0) 744 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:12:39.093 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:39.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:39 smithi149 bash[18736]: audit 2024-03-11T23:12:38.646135+0000 mon.smithi149 (mon.0) 745 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:12:39.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:39 smithi149 bash[18736]: audit 2024-03-11T23:12:38.647758+0000 mon.smithi149 (mon.0) 746 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:12:39.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:39 smithi149 bash[18736]: audit 2024-03-11T23:12:38.658840+0000 mon.smithi149 (mon.0) 747 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:12:39.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:39 smithi149 bash[18736]: audit 2024-03-11T23:12:38.667118+0000 mon.smithi149 (mon.0) 748 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:12:39.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:39 smithi165 bash[22892]: audit 2024-03-11T23:12:38.646135+0000 mon.smithi149 (mon.0) 745 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:12:39.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:39 smithi165 bash[22892]: audit 2024-03-11T23:12:38.647758+0000 mon.smithi149 (mon.0) 746 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:12:39.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:39 smithi165 bash[22892]: audit 2024-03-11T23:12:38.658840+0000 mon.smithi149 (mon.0) 747 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:12:39.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:39 smithi165 bash[22892]: audit 2024-03-11T23:12:38.667118+0000 mon.smithi149 (mon.0) 748 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:12:40.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:40 smithi149 bash[18736]: cluster 2024-03-11T23:12:39.291481+0000 mgr.smithi149.leptec (mgr.14197) 194 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:40.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:40 smithi149 bash[18736]: audit 2024-03-11T23:12:40.303503+0000 mon.smithi149 (mon.0) 749 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:12:41.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:40 smithi165 bash[22892]: cluster 2024-03-11T23:12:39.291481+0000 mgr.smithi149.leptec (mgr.14197) 194 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:41.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:40 smithi165 bash[22892]: audit 2024-03-11T23:12:40.303503+0000 mon.smithi149 (mon.0) 749 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:12:41.935 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:12:41.937 INFO:teuthology.orchestra.run.smithi149.stderr:dumped all 2024-03-11T23:12:42.597 INFO:teuthology.orchestra.run.smithi149.stdout:{"pg_ready":true,"pg_map":{"version":162,"stamp":"2024-03-11T23:12:41.291765+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":176,"num_read_kb":154,"num_write":291,"num_write_kb":5548,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":237,"ondisk_log_size":237,"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":229316,"kb_used_data":4812,"kb_used_omap":12,"kb_used_meta":224371,"kb_avail":749699132,"statfs":{"total":767926730752,"available":767691911168,"internally_reserved":0,"allocated":4927488,"data_stored":3038048,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12752,"internal_metadata":229756464},"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.003316"},"pg_stats":[{"pgid":"1.0","version":"31'237","reported_seq":327,"reported_epoch":39,"state":"active+clean","last_fresh":"2024-03-11T23:10:46.507450+0000","last_change":"2024-03-11T23:10:46.506837+0000","last_active":"2024-03-11T23:10:46.507450+0000","last_peered":"2024-03-11T23:10:46.507450+0000","last_clean":"2024-03-11T23:10:46.507450+0000","last_became_active":"2024-03-11T23:10:46.506149+0000","last_became_peered":"2024-03-11T23:10:46.506149+0000","last_unstale":"2024-03-11T23:10:46.507450+0000","last_undegraded":"2024-03-11T23:10:46.507450+0000","last_fullsized":"2024-03-11T23:10:46.507450+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-03-11T23:10:27.002002+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-03-11T23:10:27.002002+0000","last_clean_scrub_stamp":"2024-03-11T23:10:27.002002+0000","objects_scrubbed":0,"log_size":237,"log_dups_size":0,"ondisk_log_size":237,"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-13T08:26:51.458336+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":176,"num_read_kb":154,"num_write":291,"num_write_kb":5548,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":176,"num_read_kb":154,"num_write":291,"num_write_kb":5548,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2375680,"data_stored":2361472,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":237,"ondisk_log_size":237,"up":3,"acting":3,"num_store_stats":4}],"osd_stats":[{"osd":7,"up_from":35,"seq":150323855387,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":27984,"kb_used_data":964,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713072,"statfs":{"total":95990841344,"available":95962185728,"internally_reserved":0,"allocated":987136,"data_stored":748736,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":31,"seq":133143986204,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27408,"kb_used_data":384,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713648,"statfs":{"total":95990841344,"available":95962775552,"internally_reserved":0,"allocated":393216,"data_stored":158368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":19,"seq":81604378655,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31564,"kb_used_data":384,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709492,"statfs":{"total":95990841344,"available":95958519808,"internally_reserved":0,"allocated":393216,"data_stored":158368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476767,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":27984,"kb_used_data":964,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713072,"statfs":{"total":95990841344,"available":95962185728,"internally_reserved":0,"allocated":987136,"data_stored":748736,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":21,"seq":90194313246,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27412,"kb_used_data":384,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713644,"statfs":{"total":95990841344,"available":95962771456,"internally_reserved":0,"allocated":393216,"data_stored":158368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":3,"up_from":24,"seq":103079215133,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":27984,"kb_used_data":964,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713072,"statfs":{"total":95990841344,"available":95962185728,"internally_reserved":0,"allocated":987136,"data_stored":748736,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"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":4,"up_from":27,"seq":115964117020,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31572,"kb_used_data":384,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709484,"statfs":{"total":95990841344,"available":95958511616,"internally_reserved":0,"allocated":393216,"data_stored":158368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":6,"up_from":30,"seq":128849018908,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27408,"kb_used_data":384,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713648,"statfs":{"total":95990841344,"available":95962775552,"internally_reserved":0,"allocated":393216,"data_stored":158368,"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":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-11T23:12:42.598 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph pg dump --format=json 2024-03-11T23:12:42.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:42 smithi149 bash[18736]: cluster 2024-03-11T23:12:41.292034+0000 mgr.smithi149.leptec (mgr.14197) 195 : cluster 0 pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:42.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:42 smithi149 bash[18736]: audit 2024-03-11T23:12:41.933414+0000 mgr.smithi149.leptec (mgr.14197) 196 : audit 0 from='client.14450 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:12:43.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:42 smithi165 bash[22892]: cluster 2024-03-11T23:12:41.292034+0000 mgr.smithi149.leptec (mgr.14197) 195 : cluster 0 pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:43.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:42 smithi165 bash[22892]: audit 2024-03-11T23:12:41.933414+0000 mgr.smithi149.leptec (mgr.14197) 196 : audit 0 from='client.14450 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:12:44.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:44 smithi149 bash[18736]: cluster 2024-03-11T23:12:43.292610+0000 mgr.smithi149.leptec (mgr.14197) 197 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:45.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:44 smithi165 bash[22892]: cluster 2024-03-11T23:12:43.292610+0000 mgr.smithi149.leptec (mgr.14197) 197 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:46.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:46 smithi149 bash[18736]: cluster 2024-03-11T23:12:45.293201+0000 mgr.smithi149.leptec (mgr.14197) 198 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:47.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:46 smithi165 bash[22892]: cluster 2024-03-11T23:12:45.293201+0000 mgr.smithi149.leptec (mgr.14197) 198 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:47.397 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:48.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:48 smithi149 bash[18736]: cluster 2024-03-11T23:12:47.293712+0000 mgr.smithi149.leptec (mgr.14197) 199 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:49.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:48 smithi165 bash[22892]: cluster 2024-03-11T23:12:47.293712+0000 mgr.smithi149.leptec (mgr.14197) 199 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:50.121 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:12:50.124 INFO:teuthology.orchestra.run.smithi149.stderr:dumped all 2024-03-11T23:12:50.764 INFO:teuthology.orchestra.run.smithi149.stdout:{"pg_ready":true,"pg_map":{"version":166,"stamp":"2024-03-11T23:12:49.293995+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":176,"num_read_kb":154,"num_write":291,"num_write_kb":5548,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":237,"ondisk_log_size":237,"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":229316,"kb_used_data":4812,"kb_used_omap":12,"kb_used_meta":224371,"kb_avail":749699132,"statfs":{"total":767926730752,"available":767691911168,"internally_reserved":0,"allocated":4927488,"data_stored":3038048,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12752,"internal_metadata":229756464},"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.003275"},"pg_stats":[{"pgid":"1.0","version":"31'237","reported_seq":328,"reported_epoch":39,"state":"active+clean","last_fresh":"2024-03-11T23:10:48.465518+0000","last_change":"2024-03-11T23:10:46.506837+0000","last_active":"2024-03-11T23:10:48.465518+0000","last_peered":"2024-03-11T23:10:48.465518+0000","last_clean":"2024-03-11T23:10:48.465518+0000","last_became_active":"2024-03-11T23:10:46.506149+0000","last_became_peered":"2024-03-11T23:10:46.506149+0000","last_unstale":"2024-03-11T23:10:48.465518+0000","last_undegraded":"2024-03-11T23:10:48.465518+0000","last_fullsized":"2024-03-11T23:10:48.465518+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-03-11T23:10:27.002002+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-03-11T23:10:27.002002+0000","last_clean_scrub_stamp":"2024-03-11T23:10:27.002002+0000","objects_scrubbed":0,"log_size":237,"log_dups_size":0,"ondisk_log_size":237,"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-13T08:26:51.458336+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":176,"num_read_kb":154,"num_write":291,"num_write_kb":5548,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":176,"num_read_kb":154,"num_write":291,"num_write_kb":5548,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2375680,"data_stored":2361472,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":237,"ondisk_log_size":237,"up":3,"acting":3,"num_store_stats":4}],"osd_stats":[{"osd":7,"up_from":35,"seq":150323855389,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":27984,"kb_used_data":964,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713072,"statfs":{"total":95990841344,"available":95962185728,"internally_reserved":0,"allocated":987136,"data_stored":748736,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":31,"seq":133143986206,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27408,"kb_used_data":384,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713648,"statfs":{"total":95990841344,"available":95962775552,"internally_reserved":0,"allocated":393216,"data_stored":158368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":19,"seq":81604378656,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31564,"kb_used_data":384,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709492,"statfs":{"total":95990841344,"available":95958519808,"internally_reserved":0,"allocated":393216,"data_stored":158368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476769,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":27984,"kb_used_data":964,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713072,"statfs":{"total":95990841344,"available":95962185728,"internally_reserved":0,"allocated":987136,"data_stored":748736,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"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":27412,"kb_used_data":384,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713644,"statfs":{"total":95990841344,"available":95962771456,"internally_reserved":0,"allocated":393216,"data_stored":158368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":3,"up_from":24,"seq":103079215135,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":27984,"kb_used_data":964,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713072,"statfs":{"total":95990841344,"available":95962185728,"internally_reserved":0,"allocated":987136,"data_stored":748736,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"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":4,"up_from":27,"seq":115964117022,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31572,"kb_used_data":384,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709484,"statfs":{"total":95990841344,"available":95958511616,"internally_reserved":0,"allocated":393216,"data_stored":158368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":6,"up_from":30,"seq":128849018910,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27408,"kb_used_data":384,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713648,"statfs":{"total":95990841344,"available":95962775552,"internally_reserved":0,"allocated":393216,"data_stored":158368,"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":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-11T23:12:50.765 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-03-11T23:12:50.765 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-03-11T23:12:50.765 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-03-11T23:12:50.765 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph health --format=json 2024-03-11T23:12:50.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:50 smithi149 bash[18736]: cluster 2024-03-11T23:12:49.294294+0000 mgr.smithi149.leptec (mgr.14197) 200 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:51.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:50 smithi165 bash[22892]: cluster 2024-03-11T23:12:49.294294+0000 mgr.smithi149.leptec (mgr.14197) 200 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:51.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:51 smithi149 bash[18736]: audit 2024-03-11T23:12:50.119788+0000 mgr.smithi149.leptec (mgr.14197) 201 : audit 0 from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:12:52.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:51 smithi165 bash[22892]: audit 2024-03-11T23:12:50.119788+0000 mgr.smithi149.leptec (mgr.14197) 201 : audit 0 from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:12:52.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:52 smithi149 bash[18736]: cluster 2024-03-11T23:12:51.294867+0000 mgr.smithi149.leptec (mgr.14197) 202 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:53.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:52 smithi165 bash[22892]: cluster 2024-03-11T23:12:51.294867+0000 mgr.smithi149.leptec (mgr.14197) 202 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:54.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:54 smithi149 bash[18736]: cluster 2024-03-11T23:12:53.295475+0000 mgr.smithi149.leptec (mgr.14197) 203 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:55.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:54 smithi165 bash[22892]: cluster 2024-03-11T23:12:53.295475+0000 mgr.smithi149.leptec (mgr.14197) 203 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:55.556 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:12:55.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:55 smithi149 bash[18736]: audit 2024-03-11T23:12:55.303705+0000 mon.smithi149 (mon.0) 750 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:12:56.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:55 smithi165 bash[22892]: audit 2024-03-11T23:12:55.303705+0000 mon.smithi149 (mon.0) 750 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:12:56.733 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:56 smithi149 bash[18736]: cluster 2024-03-11T23:12:55.296109+0000 mgr.smithi149.leptec (mgr.14197) 204 : cluster 0 pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:57.029 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:56 smithi165 bash[22892]: cluster 2024-03-11T23:12:55.296109+0000 mgr.smithi149.leptec (mgr.14197) 204 : cluster 0 pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:58.460 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:12:58.461 INFO:teuthology.orchestra.run.smithi149.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-03-11T23:12:58.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:58 smithi149 bash[18736]: cluster 2024-03-11T23:12:57.296568+0000 mgr.smithi149.leptec (mgr.14197) 205 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:58.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:12:58 smithi149 bash[18736]: audit 2024-03-11T23:12:58.460272+0000 mon.smithi149 (mon.0) 751 : audit 0 from='client.? 172.21.15.149:0/3504227871' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-03-11T23:12:59.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:58 smithi165 bash[22892]: cluster 2024-03-11T23:12:57.296568+0000 mgr.smithi149.leptec (mgr.14197) 205 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:12:59.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:12:58 smithi165 bash[22892]: audit 2024-03-11T23:12:58.460272+0000 mon.smithi149 (mon.0) 751 : audit 0 from='client.? 172.21.15.149:0/3504227871' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-03-11T23:12:59.121 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-03-11T23:12:59.121 INFO:tasks.cephadm:Setup complete, yielding 2024-03-11T23:12:59.122 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-11T23:12:59.132 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:12:59.132 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch status' 2024-03-11T23:13:00.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:00 smithi149 bash[18736]: cluster 2024-03-11T23:12:59.296946+0000 mgr.smithi149.leptec (mgr.14197) 206 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:01.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:00 smithi165 bash[22892]: cluster 2024-03-11T23:12:59.296946+0000 mgr.smithi149.leptec (mgr.14197) 206 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:02.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:02 smithi149 bash[18736]: cluster 2024-03-11T23:13:01.297513+0000 mgr.smithi149.leptec (mgr.14197) 207 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:03.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:02 smithi165 bash[22892]: cluster 2024-03-11T23:13:01.297513+0000 mgr.smithi149.leptec (mgr.14197) 207 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:03.921 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:13:04.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:04 smithi149 bash[18736]: cluster 2024-03-11T23:13:03.298081+0000 mgr.smithi149.leptec (mgr.14197) 208 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:05.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:04 smithi165 bash[22892]: cluster 2024-03-11T23:13:03.298081+0000 mgr.smithi149.leptec (mgr.14197) 208 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:06.685 INFO:teuthology.orchestra.run.smithi149.stdout:Backend: cephadm 2024-03-11T23:13:06.685 INFO:teuthology.orchestra.run.smithi149.stdout:Available: Yes 2024-03-11T23:13:06.685 INFO:teuthology.orchestra.run.smithi149.stdout:Paused: No 2024-03-11T23:13:06.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:06 smithi149 bash[18736]: cluster 2024-03-11T23:13:05.298786+0000 mgr.smithi149.leptec (mgr.14197) 209 : cluster 0 pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:07.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:06 smithi165 bash[22892]: cluster 2024-03-11T23:13:05.298786+0000 mgr.smithi149.leptec (mgr.14197) 209 : cluster 0 pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:07.383 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch ps' 2024-03-11T23:13:07.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:07 smithi149 bash[18736]: audit 2024-03-11T23:13:06.684514+0000 mgr.smithi149.leptec (mgr.14197) 210 : audit 0 from='client.14462 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:08.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:07 smithi165 bash[22892]: audit 2024-03-11T23:13:06.684514+0000 mgr.smithi149.leptec (mgr.14197) 210 : audit 0 from='client.14462 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:08.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:08 smithi149 bash[18736]: cluster 2024-03-11T23:13:07.299381+0000 mgr.smithi149.leptec (mgr.14197) 211 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:09.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:08 smithi165 bash[22892]: cluster 2024-03-11T23:13:07.299381+0000 mgr.smithi149.leptec (mgr.14197) 211 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:10.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:10 smithi149 bash[18736]: cluster 2024-03-11T23:13:09.300005+0000 mgr.smithi149.leptec (mgr.14197) 212 : cluster 0 pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:10.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:10 smithi149 bash[18736]: audit 2024-03-11T23:13:10.306223+0000 mon.smithi149 (mon.0) 752 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:13:11.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:10 smithi165 bash[22892]: cluster 2024-03-11T23:13:09.300005+0000 mgr.smithi149.leptec (mgr.14197) 212 : cluster 0 pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:11.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:10 smithi165 bash[22892]: audit 2024-03-11T23:13:10.306223+0000 mon.smithi149 (mon.0) 752 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:13:12.181 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:13:12.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:12 smithi165 bash[22892]: cluster 2024-03-11T23:13:11.300673+0000 mgr.smithi149.leptec (mgr.14197) 213 : cluster 0 pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:13.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:12 smithi149 bash[18736]: cluster 2024-03-11T23:13:11.300673+0000 mgr.smithi149.leptec (mgr.14197) 213 : cluster 0 pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:14.774 INFO:teuthology.orchestra.run.smithi149.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:alertmanager.smithi149 smithi149 *:9093,9094 running (4m) 36s ago 5m 14.3M - 0.25.0 c8568f914cd2 c0653fe7708e 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:ceph-exporter.smithi149 smithi149 running (6m) 36s ago 6m 8336k - 19.0.0-1607-g94a53970 a6477a474d71 53e939a0d1f3 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:ceph-exporter.smithi165 smithi165 running (4m) 38s ago 4m 8355k - 19.0.0-1607-g94a53970 a6477a474d71 1f0cad527d0e 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:crash.smithi149 smithi149 running (6m) 36s ago 6m 7100k - 19.0.0-1607-g94a53970 a6477a474d71 fb47174ead55 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:crash.smithi165 smithi165 running (4m) 38s ago 4m 7079k - 19.0.0-1607-g94a53970 a6477a474d71 72c28da263db 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:grafana.smithi149 smithi149 *:3000 running (4m) 36s ago 5m 75.5M - 9.4.12 a0ea5e3c46d9 0fadcd961c18 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:mgr.smithi149.leptec smithi149 *:9283,8765,8443 running (7m) 36s ago 7m 488M - 19.0.0-1607-g94a53970 a6477a474d71 bfaa2b41419e 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:mgr.smithi165.tfkohn smithi165 *:8443,9283,8765 running (4m) 38s ago 4m 435M - 19.0.0-1607-g94a53970 a6477a474d71 3372bc91a6df 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:mon.smithi149 smithi149 running (7m) 36s ago 7m 48.0M 2048M 19.0.0-1607-g94a53970 a6477a474d71 b7aef8024fce 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:mon.smithi165 smithi165 running (4m) 38s ago 4m 41.5M 2048M 19.0.0-1607-g94a53970 a6477a474d71 4967f094d12f 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:node-exporter.smithi149 smithi149 *:9100 running (6m) 36s ago 6m 8231k - 1.5.0 0da6a335fe13 0718f41f242f 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:node-exporter.smithi165 smithi165 *:9100 running (4m) 38s ago 4m 8403k - 1.5.0 0da6a335fe13 685fa13dedd2 2024-03-11T23:13:14.775 INFO:teuthology.orchestra.run.smithi149.stdout:osd.0 smithi165 running (3m) 38s ago 3m 39.4M 3772M 19.0.0-1607-g94a53970 a6477a474d71 e7de4818468b 2024-03-11T23:13:14.776 INFO:teuthology.orchestra.run.smithi149.stdout:osd.1 smithi149 running (2m) 36s ago 3m 47.9M 4096M 19.0.0-1607-g94a53970 a6477a474d71 5df038e9c15e 2024-03-11T23:13:14.776 INFO:teuthology.orchestra.run.smithi149.stdout:osd.2 smithi165 running (2m) 38s ago 2m 35.9M 3772M 19.0.0-1607-g94a53970 a6477a474d71 ab408743656d 2024-03-11T23:13:14.776 INFO:teuthology.orchestra.run.smithi149.stdout:osd.3 smithi149 running (2m) 36s ago 2m 39.3M 4096M 19.0.0-1607-g94a53970 a6477a474d71 420609d51538 2024-03-11T23:13:14.776 INFO:teuthology.orchestra.run.smithi149.stdout:osd.4 smithi165 running (2m) 38s ago 2m 43.7M 3772M 19.0.0-1607-g94a53970 a6477a474d71 6a8c0f764586 2024-03-11T23:13:14.776 INFO:teuthology.orchestra.run.smithi149.stdout:osd.5 smithi149 running (2m) 36s ago 2m 42.6M 4096M 19.0.0-1607-g94a53970 a6477a474d71 482105ec648d 2024-03-11T23:13:14.776 INFO:teuthology.orchestra.run.smithi149.stdout:osd.6 smithi165 running (2m) 38s ago 2m 36.0M 3772M 19.0.0-1607-g94a53970 a6477a474d71 baa8ddd80522 2024-03-11T23:13:14.776 INFO:teuthology.orchestra.run.smithi149.stdout:osd.7 smithi149 running (2m) 36s ago 2m 38.2M 4096M 19.0.0-1607-g94a53970 a6477a474d71 43ad65c05117 2024-03-11T23:13:14.776 INFO:teuthology.orchestra.run.smithi149.stdout:prometheus.smithi149 smithi149 *:9095 running (3m) 36s ago 5m 47.2M - 2.43.0 a07b618ecd1d 96a3e1b85468 2024-03-11T23:13:15.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:14 smithi165 bash[22892]: cluster 2024-03-11T23:13:13.301399+0000 mgr.smithi149.leptec (mgr.14197) 214 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:15.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:14 smithi149 bash[18736]: cluster 2024-03-11T23:13:13.301399+0000 mgr.smithi149.leptec (mgr.14197) 214 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:15.413 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch ls' 2024-03-11T23:13:16.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:15 smithi165 bash[22892]: audit 2024-03-11T23:13:14.759408+0000 mgr.smithi149.leptec (mgr.14197) 215 : audit 0 from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:16.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:15 smithi149 bash[18736]: audit 2024-03-11T23:13:14.759408+0000 mgr.smithi149.leptec (mgr.14197) 215 : audit 0 from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:17.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:16 smithi165 bash[22892]: cluster 2024-03-11T23:13:15.302060+0000 mgr.smithi149.leptec (mgr.14197) 216 : cluster 0 pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:17.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:16 smithi149 bash[18736]: cluster 2024-03-11T23:13:15.302060+0000 mgr.smithi149.leptec (mgr.14197) 216 : cluster 0 pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:19.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:18 smithi165 bash[22892]: cluster 2024-03-11T23:13:17.302637+0000 mgr.smithi149.leptec (mgr.14197) 217 : cluster 0 pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:19.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:18 smithi149 bash[18736]: cluster 2024-03-11T23:13:17.302637+0000 mgr.smithi149.leptec (mgr.14197) 217 : cluster 0 pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:20.216 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:13:20.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:20 smithi149 bash[18736]: cluster 2024-03-11T23:13:19.303234+0000 mgr.smithi149.leptec (mgr.14197) 218 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:21.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:20 smithi165 bash[22892]: cluster 2024-03-11T23:13:19.303234+0000 mgr.smithi149.leptec (mgr.14197) 218 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:22.950 INFO:teuthology.orchestra.run.smithi149.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-03-11T23:13:22.951 INFO:teuthology.orchestra.run.smithi149.stdout:alertmanager ?:9093,9094 1/1 44s ago 6m count:1 2024-03-11T23:13:22.951 INFO:teuthology.orchestra.run.smithi149.stdout:ceph-exporter 2/2 46s ago 7m * 2024-03-11T23:13:22.951 INFO:teuthology.orchestra.run.smithi149.stdout:crash 2/2 46s ago 7m * 2024-03-11T23:13:22.951 INFO:teuthology.orchestra.run.smithi149.stdout:grafana ?:3000 1/1 44s ago 6m count:1 2024-03-11T23:13:22.951 INFO:teuthology.orchestra.run.smithi149.stdout:mgr 2/2 46s ago 7m count:2 2024-03-11T23:13:22.951 INFO:teuthology.orchestra.run.smithi149.stdout:mon 2/2 46s ago 5m smithi149:172.21.15.149=smithi149;smithi165:172.21.15.165=smithi165;count:2 2024-03-11T23:13:22.951 INFO:teuthology.orchestra.run.smithi149.stdout:node-exporter ?:9100 2/2 46s ago 6m * 2024-03-11T23:13:22.951 INFO:teuthology.orchestra.run.smithi149.stdout:osd.all-available-devices 8 46s ago 4m * 2024-03-11T23:13:22.951 INFO:teuthology.orchestra.run.smithi149.stdout:prometheus ?:9095 1/1 44s ago 7m count:1 2024-03-11T23:13:22.964 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:22 smithi149 bash[18736]: cluster 2024-03-11T23:13:21.303810+0000 mgr.smithi149.leptec (mgr.14197) 219 : cluster 0 pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:23.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:22 smithi165 bash[22892]: cluster 2024-03-11T23:13:21.303810+0000 mgr.smithi149.leptec (mgr.14197) 219 : cluster 0 pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:23.566 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch host ls' 2024-03-11T23:13:23.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:23 smithi149 bash[18736]: audit 2024-03-11T23:13:22.935991+0000 mgr.smithi149.leptec (mgr.14197) 220 : audit 0 from='client.14470 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:24.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:23 smithi165 bash[22892]: audit 2024-03-11T23:13:22.935991+0000 mgr.smithi149.leptec (mgr.14197) 220 : audit 0 from='client.14470 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:25.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:24 smithi165 bash[22892]: cluster 2024-03-11T23:13:23.304434+0000 mgr.smithi149.leptec (mgr.14197) 221 : cluster 0 pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:25.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:24 smithi149 bash[18736]: cluster 2024-03-11T23:13:23.304434+0000 mgr.smithi149.leptec (mgr.14197) 221 : cluster 0 pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:26.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:25 smithi165 bash[22892]: audit 2024-03-11T23:13:25.306517+0000 mon.smithi149 (mon.0) 753 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:13:26.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:25 smithi149 bash[18736]: audit 2024-03-11T23:13:25.306517+0000 mon.smithi149 (mon.0) 753 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:13:27.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:26 smithi165 bash[22892]: cluster 2024-03-11T23:13:25.305018+0000 mgr.smithi149.leptec (mgr.14197) 222 : cluster 0 pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:27.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:26 smithi149 bash[18736]: cluster 2024-03-11T23:13:25.305018+0000 mgr.smithi149.leptec (mgr.14197) 222 : cluster 0 pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:28.361 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:13:29.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:28 smithi165 bash[22892]: cluster 2024-03-11T23:13:27.305664+0000 mgr.smithi149.leptec (mgr.14197) 223 : cluster 0 pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:29.129 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:28 smithi149 bash[18736]: cluster 2024-03-11T23:13:27.305664+0000 mgr.smithi149.leptec (mgr.14197) 223 : cluster 0 pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:30.941 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:30 smithi149 bash[18736]: cluster 2024-03-11T23:13:29.306160+0000 mgr.smithi149.leptec (mgr.14197) 224 : cluster 0 pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:31.004 INFO:teuthology.orchestra.run.smithi149.stdout:HOST ADDR LABELS STATUS 2024-03-11T23:13:31.004 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 172.21.15.149 2024-03-11T23:13:31.004 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 172.21.15.165 2024-03-11T23:13:31.004 INFO:teuthology.orchestra.run.smithi149.stdout:2 hosts in cluster 2024-03-11T23:13:31.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:30 smithi165 bash[22892]: cluster 2024-03-11T23:13:29.306160+0000 mgr.smithi149.leptec (mgr.14197) 224 : cluster 0 pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:31.649 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch device ls' 2024-03-11T23:13:33.233 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:32 smithi165 bash[22892]: audit 2024-03-11T23:13:31.003003+0000 mgr.smithi149.leptec (mgr.14197) 225 : audit 0 from='client.14474 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:33.234 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:32 smithi165 bash[22892]: cluster 2024-03-11T23:13:31.306679+0000 mgr.smithi149.leptec (mgr.14197) 226 : cluster 0 pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:33.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:32 smithi149 bash[18736]: audit 2024-03-11T23:13:31.003003+0000 mgr.smithi149.leptec (mgr.14197) 225 : audit 0 from='client.14474 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:33.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:32 smithi149 bash[18736]: cluster 2024-03-11T23:13:31.306679+0000 mgr.smithi149.leptec (mgr.14197) 226 : cluster 0 pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:35.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:34 smithi149 bash[18736]: cluster 2024-03-11T23:13:33.307246+0000 mgr.smithi149.leptec (mgr.14197) 227 : cluster 0 pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:35.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:34 smithi165 bash[22892]: cluster 2024-03-11T23:13:33.307246+0000 mgr.smithi149.leptec (mgr.14197) 227 : cluster 0 pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:36.453 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:13:37.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:36 smithi149 bash[18736]: cluster 2024-03-11T23:13:35.307840+0000 mgr.smithi149.leptec (mgr.14197) 228 : cluster 0 pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:37.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:36 smithi165 bash[22892]: cluster 2024-03-11T23:13:35.307840+0000 mgr.smithi149.leptec (mgr.14197) 228 : cluster 0 pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:39.165 INFO:teuthology.orchestra.run.smithi149.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-03-11T23:13:39.165 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300CK400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-03-11T23:13:39.165 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme1n1 ssd Linux_90f182599f3cb9fb0439 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:39.165 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme2n1 ssd Linux_cc23feb170aa197f0b73 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:39.166 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme3n1 ssd Linux_bf4d0bd49a2b61db3fda 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:39.166 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme4n1 ssd Linux_e77c1e670f3af105b990 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:39.166 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300CE400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-03-11T23:13:39.166 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme1n1 ssd Linux_da7476dad5fe92bef5f6 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:39.166 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme2n1 ssd Linux_4a02910ee5dfa0917e0d 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:39.166 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme3n1 ssd Linux_865cb9a989ef58f36d21 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:39.166 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme4n1 ssd Linux_6ff710b594da79ccdcb9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:39.183 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:38 smithi149 bash[18736]: cluster 2024-03-11T23:13:37.308249+0000 mgr.smithi149.leptec (mgr.14197) 229 : cluster 0 pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:39.183 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:38 smithi149 bash[18736]: audit 2024-03-11T23:13:38.745396+0000 mon.smithi149 (mon.0) 754 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:13:39.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:38 smithi165 bash[22892]: cluster 2024-03-11T23:13:37.308249+0000 mgr.smithi149.leptec (mgr.14197) 229 : cluster 0 pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:39.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:38 smithi165 bash[22892]: audit 2024-03-11T23:13:38.745396+0000 mon.smithi149 (mon.0) 754 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:13:39.861 INFO:teuthology.run_tasks:Running task vip... 2024-03-11T23:13:39.872 INFO:tasks.vip:Allocating static IPs for each host... 2024-03-11T23:13:39.872 INFO:tasks.vip:peername 172.21.15.149 2024-03-11T23:13:39.875 INFO:tasks.vip:172.21.15.149 in 172.21.0.0/20, pos 3988 2024-03-11T23:13:39.880 INFO:tasks.vip:smithi149.front.sepia.ceph.com static 10.0.15.149, vnet 10.0.0.0/16 2024-03-11T23:13:39.880 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-03-11T23:13:39.881 DEBUG:teuthology.orchestra.run.smithi149:> sudo ip route ls 2024-03-11T23:13:39.894 INFO:teuthology.orchestra.run.smithi149.stdout:default via 172.21.15.254 dev enp3s0f1 2024-03-11T23:13:39.895 INFO:teuthology.orchestra.run.smithi149.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.149 metric 100 2024-03-11T23:13:39.895 INFO:teuthology.orchestra.run.smithi149.stdout:158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.149 metric 100 2024-03-11T23:13:39.895 INFO:teuthology.orchestra.run.smithi149.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-03-11T23:13:39.895 INFO:teuthology.orchestra.run.smithi149.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.149 metric 100 2024-03-11T23:13:39.895 INFO:teuthology.orchestra.run.smithi149.stdout:172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.149 metric 100 2024-03-11T23:13:39.895 INFO:teuthology.orchestra.run.smithi149.stdout:172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.149 metric 100 2024-03-11T23:13:39.895 INFO:teuthology.orchestra.run.smithi149.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.149 metric 100 2024-03-11T23:13:39.896 INFO:tasks.vip:Configuring 10.0.15.149 on smithi149.front.sepia.ceph.com iface enp3s0f1... 2024-03-11T23:13:39.896 DEBUG:teuthology.orchestra.run.smithi149:> sudo ip addr add 10.0.15.149/16 dev enp3s0f1 2024-03-11T23:13:39.953 INFO:tasks.vip:peername 172.21.15.165 2024-03-11T23:13:39.955 INFO:tasks.vip:172.21.15.165 in 172.21.0.0/20, pos 4004 2024-03-11T23:13:39.959 INFO:tasks.vip:smithi165.front.sepia.ceph.com static 10.0.15.165, vnet 10.0.0.0/16 2024-03-11T23:13:39.960 DEBUG:teuthology.orchestra.run.smithi165:> sudo ip route ls 2024-03-11T23:13:39.973 INFO:teuthology.orchestra.run.smithi165.stdout:default via 172.21.15.254 dev enp3s0f1 2024-03-11T23:13:39.973 INFO:teuthology.orchestra.run.smithi165.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.165 metric 100 2024-03-11T23:13:39.973 INFO:teuthology.orchestra.run.smithi165.stdout:158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.165 metric 100 2024-03-11T23:13:39.973 INFO:teuthology.orchestra.run.smithi165.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-03-11T23:13:39.973 INFO:teuthology.orchestra.run.smithi165.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.165 metric 100 2024-03-11T23:13:39.973 INFO:teuthology.orchestra.run.smithi165.stdout:172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.165 metric 100 2024-03-11T23:13:39.973 INFO:teuthology.orchestra.run.smithi165.stdout:172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.165 metric 100 2024-03-11T23:13:39.973 INFO:teuthology.orchestra.run.smithi165.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.165 metric 100 2024-03-11T23:13:39.974 INFO:tasks.vip:Configuring 10.0.15.165 on smithi165.front.sepia.ceph.com iface enp3s0f1... 2024-03-11T23:13:39.974 DEBUG:teuthology.orchestra.run.smithi165:> sudo ip addr add 10.0.15.165/16 dev enp3s0f1 2024-03-11T23:13:40.029 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-11T23:13:40.038 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:13:40.038 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-03-11T23:13:41.200 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:40 smithi149 bash[18736]: audit 2024-03-11T23:13:39.158764+0000 mgr.smithi149.leptec (mgr.14197) 230 : audit 0 from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:41.200 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:40 smithi149 bash[18736]: cluster 2024-03-11T23:13:39.308766+0000 mgr.smithi149.leptec (mgr.14197) 231 : cluster 0 pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:41.200 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:40 smithi149 bash[18736]: audit 2024-03-11T23:13:40.306915+0000 mon.smithi149 (mon.0) 755 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:13:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:40 smithi165 bash[22892]: audit 2024-03-11T23:13:39.158764+0000 mgr.smithi149.leptec (mgr.14197) 230 : audit 0 from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:40 smithi165 bash[22892]: cluster 2024-03-11T23:13:39.308766+0000 mgr.smithi149.leptec (mgr.14197) 231 : cluster 0 pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:40 smithi165 bash[22892]: audit 2024-03-11T23:13:40.306915+0000 mon.smithi149 (mon.0) 755 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:13:43.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:42 smithi149 bash[18736]: cluster 2024-03-11T23:13:41.309322+0000 mgr.smithi149.leptec (mgr.14197) 232 : cluster 0 pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:43.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:42 smithi165 bash[22892]: cluster 2024-03-11T23:13:41.309322+0000 mgr.smithi149.leptec (mgr.14197) 232 : cluster 0 pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:44.809 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:13:45.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:44 smithi149 bash[18736]: cluster 2024-03-11T23:13:43.309932+0000 mgr.smithi149.leptec (mgr.14197) 233 : cluster 0 pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:45.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:44 smithi149 bash[18736]: audit 2024-03-11T23:13:44.288834+0000 mon.smithi149 (mon.0) 756 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:45.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:44 smithi149 bash[18736]: audit 2024-03-11T23:13:44.298832+0000 mon.smithi149 (mon.0) 757 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:45.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:44 smithi149 bash[18736]: audit 2024-03-11T23:13:44.795358+0000 mon.smithi149 (mon.0) 758 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:45.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:44 smithi149 bash[18736]: audit 2024-03-11T23:13:44.802035+0000 mon.smithi149 (mon.0) 759 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:45.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:44 smithi165 bash[22892]: cluster 2024-03-11T23:13:43.309932+0000 mgr.smithi149.leptec (mgr.14197) 233 : cluster 0 pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:45.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:44 smithi165 bash[22892]: audit 2024-03-11T23:13:44.288834+0000 mon.smithi149 (mon.0) 756 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:45.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:44 smithi165 bash[22892]: audit 2024-03-11T23:13:44.298832+0000 mon.smithi149 (mon.0) 757 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:45.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:44 smithi165 bash[22892]: audit 2024-03-11T23:13:44.795358+0000 mon.smithi149 (mon.0) 758 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:45.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:44 smithi165 bash[22892]: audit 2024-03-11T23:13:44.802035+0000 mon.smithi149 (mon.0) 759 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:45.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:45 smithi149 bash[18736]: audit 2024-03-11T23:13:45.442246+0000 mon.smithi149 (mon.0) 760 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:13:45.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:45 smithi149 bash[18736]: audit 2024-03-11T23:13:45.443762+0000 mon.smithi149 (mon.0) 761 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:13:45.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:45 smithi149 bash[18736]: audit 2024-03-11T23:13:45.453387+0000 mon.smithi149 (mon.0) 762 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:45.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:45 smithi149 bash[18736]: audit 2024-03-11T23:13:45.461516+0000 mon.smithi149 (mon.0) 763 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:13:46.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:45 smithi165 bash[22892]: audit 2024-03-11T23:13:45.442246+0000 mon.smithi149 (mon.0) 760 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:13:46.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:45 smithi165 bash[22892]: audit 2024-03-11T23:13:45.443762+0000 mon.smithi149 (mon.0) 761 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:13:46.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:45 smithi165 bash[22892]: audit 2024-03-11T23:13:45.453387+0000 mon.smithi149 (mon.0) 762 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:46.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:45 smithi165 bash[22892]: audit 2024-03-11T23:13:45.461516+0000 mon.smithi149 (mon.0) 763 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:13:47.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:46 smithi149 bash[18736]: cluster 2024-03-11T23:13:45.310319+0000 mgr.smithi149.leptec (mgr.14197) 234 : cluster 0 pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:47.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:46 smithi165 bash[22892]: cluster 2024-03-11T23:13:45.310319+0000 mgr.smithi149.leptec (mgr.14197) 234 : cluster 0 pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:47.793 INFO:teuthology.orchestra.run.smithi149.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-03-11T23:13:47.793 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300CK400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-03-11T23:13:47.793 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme1n1 ssd Linux_90f182599f3cb9fb0439 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:47.793 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme2n1 ssd Linux_cc23feb170aa197f0b73 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:47.794 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme3n1 ssd Linux_bf4d0bd49a2b61db3fda 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:47.794 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme4n1 ssd Linux_e77c1e670f3af105b990 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:47.794 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300CE400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-03-11T23:13:47.794 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme1n1 ssd Linux_da7476dad5fe92bef5f6 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:47.794 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme2n1 ssd Linux_4a02910ee5dfa0917e0d 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:47.794 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme3n1 ssd Linux_865cb9a989ef58f36d21 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:47.794 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme4n1 ssd Linux_6ff710b594da79ccdcb9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:13:48.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:47 smithi149 bash[18736]: audit 2024-03-11T23:13:47.817538+0000 mon.smithi149 (mon.0) 764 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:13:48.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:47 smithi165 bash[22892]: audit 2024-03-11T23:13:47.817538+0000 mon.smithi149 (mon.0) 764 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:13:48.470 INFO:teuthology.run_tasks:Running task vip.exec... 2024-03-11T23:13:48.480 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:13:48.481 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-03-11T23:13:48.492 INFO:teuthology.orchestra.run.smithi149.stderr:+ systemctl stop nfs-server 2024-03-11T23:13:48.615 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi165.front.sepia.ceph.com 2024-03-11T23:13:48.615 DEBUG:teuthology.orchestra.run.smithi165:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-03-11T23:13:48.629 INFO:teuthology.orchestra.run.smithi165.stderr:+ systemctl stop nfs-server 2024-03-11T23:13:48.756 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-11T23:13:48.773 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:13:48.773 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-03-11T23:13:49.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:48 smithi165 bash[22892]: cluster 2024-03-11T23:13:47.310820+0000 mgr.smithi149.leptec (mgr.14197) 235 : cluster 0 pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:49.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:48 smithi165 bash[22892]: audit 2024-03-11T23:13:47.790266+0000 mgr.smithi149.leptec (mgr.14197) 236 : audit 0 from='client.14482 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:49.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:48 smithi149 bash[18736]: cluster 2024-03-11T23:13:47.310820+0000 mgr.smithi149.leptec (mgr.14197) 235 : cluster 0 pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:49.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:48 smithi149 bash[18736]: audit 2024-03-11T23:13:47.790266+0000 mgr.smithi149.leptec (mgr.14197) 236 : audit 0 from='client.14482 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:51.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:50 smithi149 bash[18736]: cluster 2024-03-11T23:13:49.311438+0000 mgr.smithi149.leptec (mgr.14197) 237 : cluster 0 pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:51.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:50 smithi165 bash[22892]: cluster 2024-03-11T23:13:49.311438+0000 mgr.smithi149.leptec (mgr.14197) 237 : cluster 0 pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:52.819 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:13:53.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:52 smithi149 bash[18736]: cluster 2024-03-11T23:13:51.312012+0000 mgr.smithi149.leptec (mgr.14197) 238 : cluster 0 pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:53.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:52 smithi165 bash[22892]: cluster 2024-03-11T23:13:51.312012+0000 mgr.smithi149.leptec (mgr.14197) 238 : cluster 0 pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:54.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:54 smithi149 bash[18736]: cluster 2024-03-11T23:13:53.312423+0000 mgr.smithi149.leptec (mgr.14197) 239 : cluster 0 pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:54.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:54 smithi149 bash[18736]: audit 2024-03-11T23:13:53.352009+0000 mon.smithi149 (mon.0) 765 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:54 smithi149 bash[18736]: audit 2024-03-11T23:13:53.358699+0000 mon.smithi149 (mon.0) 766 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:54 smithi149 bash[18736]: audit 2024-03-11T23:13:53.703810+0000 mon.smithi149 (mon.0) 767 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:54 smithi149 bash[18736]: audit 2024-03-11T23:13:53.709816+0000 mon.smithi149 (mon.0) 768 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:54 smithi149 bash[18736]: audit 2024-03-11T23:13:53.785758+0000 mon.smithi149 (mon.0) 769 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:54 smithi149 bash[18736]: audit 2024-03-11T23:13:53.792013+0000 mon.smithi149 (mon.0) 770 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:54 smithi149 bash[18736]: audit 2024-03-11T23:13:54.133786+0000 mon.smithi149 (mon.0) 771 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:54 smithi149 bash[18736]: audit 2024-03-11T23:13:54.140158+0000 mon.smithi149 (mon.0) 772 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:54 smithi165 bash[22892]: cluster 2024-03-11T23:13:53.312423+0000 mgr.smithi149.leptec (mgr.14197) 239 : cluster 0 pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:54 smithi165 bash[22892]: audit 2024-03-11T23:13:53.352009+0000 mon.smithi149 (mon.0) 765 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:54 smithi165 bash[22892]: audit 2024-03-11T23:13:53.358699+0000 mon.smithi149 (mon.0) 766 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:54 smithi165 bash[22892]: audit 2024-03-11T23:13:53.703810+0000 mon.smithi149 (mon.0) 767 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:54 smithi165 bash[22892]: audit 2024-03-11T23:13:53.709816+0000 mon.smithi149 (mon.0) 768 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:54 smithi165 bash[22892]: audit 2024-03-11T23:13:53.785758+0000 mon.smithi149 (mon.0) 769 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:54 smithi165 bash[22892]: audit 2024-03-11T23:13:53.792013+0000 mon.smithi149 (mon.0) 770 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:54 smithi165 bash[22892]: audit 2024-03-11T23:13:54.133786+0000 mon.smithi149 (mon.0) 771 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:54.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:54 smithi165 bash[22892]: audit 2024-03-11T23:13:54.140158+0000 mon.smithi149 (mon.0) 772 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:55.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:55 smithi149 bash[18736]: audit 2024-03-11T23:13:55.306738+0000 mon.smithi149 (mon.0) 773 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:13:55.611 INFO:teuthology.orchestra.run.smithi149.stdout:Scheduled rgw.foorgw update... 2024-03-11T23:13:55.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:55 smithi165 bash[22892]: audit 2024-03-11T23:13:55.306738+0000 mon.smithi149 (mon.0) 773 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:13:56.293 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.149/16' 2024-03-11T23:13:56.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:56 smithi149 bash[18736]: cluster 2024-03-11T23:13:55.312705+0000 mgr.smithi149.leptec (mgr.14197) 240 : cluster 0 pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:56.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:56 smithi149 bash[18736]: audit 2024-03-11T23:13:55.604356+0000 mgr.smithi149.leptec (mgr.14197) 241 : audit 0 from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:56.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:56 smithi149 bash[18736]: cephadm 2024-03-11T23:13:55.605705+0000 mgr.smithi149.leptec (mgr.14197) 242 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-03-11T23:13:56.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:56 smithi149 bash[18736]: audit 2024-03-11T23:13:55.610720+0000 mon.smithi149 (mon.0) 774 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:57.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:56 smithi165 bash[22892]: cluster 2024-03-11T23:13:55.312705+0000 mgr.smithi149.leptec (mgr.14197) 240 : cluster 0 pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:57.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:56 smithi165 bash[22892]: audit 2024-03-11T23:13:55.604356+0000 mgr.smithi149.leptec (mgr.14197) 241 : audit 0 from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:13:57.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:56 smithi165 bash[22892]: cephadm 2024-03-11T23:13:55.605705+0000 mgr.smithi149.leptec (mgr.14197) 242 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-03-11T23:13:57.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:56 smithi165 bash[22892]: audit 2024-03-11T23:13:55.610720+0000 mon.smithi149 (mon.0) 774 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:13:58.989 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:13:58 smithi165 bash[22892]: cluster 2024-03-11T23:13:57.313241+0000 mgr.smithi149.leptec (mgr.14197) 243 : cluster 0 pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:13:58.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:13:58 smithi149 bash[18736]: cluster 2024-03-11T23:13:57.313241+0000 mgr.smithi149.leptec (mgr.14197) 243 : cluster 0 pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:14:00.174 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:14:00.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:00 smithi149 bash[18736]: cluster 2024-03-11T23:13:59.313842+0000 mgr.smithi149.leptec (mgr.14197) 244 : cluster 0 pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:14:01.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:00 smithi165 bash[22892]: cluster 2024-03-11T23:13:59.313842+0000 mgr.smithi149.leptec (mgr.14197) 244 : cluster 0 pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:14:02.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:02 smithi149 bash[18736]: cluster 2024-03-11T23:14:01.314343+0000 mgr.smithi149.leptec (mgr.14197) 245 : cluster 0 pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:14:03.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:02 smithi165 bash[22892]: cluster 2024-03-11T23:14:01.314343+0000 mgr.smithi149.leptec (mgr.14197) 245 : cluster 0 pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:14:04.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:04 smithi149 bash[18736]: cluster 2024-03-11T23:14:03.315074+0000 mgr.smithi149.leptec (mgr.14197) 246 : cluster 0 pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:14:04.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:04 smithi149 bash[18736]: audit 2024-03-11T23:14:04.120183+0000 mon.smithi149 (mon.0) 775 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-03-11T23:14:04.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:04 smithi149 bash[18736]: audit 2024-03-11T23:14:04.548013+0000 mon.smithi149 (mon.0) 776 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:04.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:04 smithi149 bash[18736]: audit 2024-03-11T23:14:04.553427+0000 mon.smithi149 (mon.0) 777 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:05.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:04 smithi165 bash[22892]: cluster 2024-03-11T23:14:03.315074+0000 mgr.smithi149.leptec (mgr.14197) 246 : cluster 0 pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:14:05.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:04 smithi165 bash[22892]: audit 2024-03-11T23:14:04.120183+0000 mon.smithi149 (mon.0) 775 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-03-11T23:14:05.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:04 smithi165 bash[22892]: audit 2024-03-11T23:14:04.548013+0000 mon.smithi149 (mon.0) 776 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:05.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:04 smithi165 bash[22892]: audit 2024-03-11T23:14:04.553427+0000 mon.smithi149 (mon.0) 777 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:05.916 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:04.118616+0000 mgr.smithi149.leptec (mgr.14197) 247 : audit 0 from='client.14490 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.149/16", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:14:05.916 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:04.632608+0000 mon.smithi149 (mon.0) 778 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-03-11T23:14:05.916 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: cluster 2024-03-11T23:14:04.635560+0000 mon.smithi149 (mon.0) 779 : cluster 0 osdmap e40: 8 total, 8 up, 8 in 2024-03-11T23:14:05.916 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:04.636650+0000 mon.smithi149 (mon.0) 780 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-03-11T23:14:05.916 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:05.340246+0000 mon.smithi149 (mon.0) 781 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:05.916 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:05.353139+0000 mon.smithi149 (mon.0) 782 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:05.916 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:05.355791+0000 mon.smithi149 (mon.0) 783 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:05.916 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:05.357716+0000 mon.smithi149 (mon.0) 784 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:14:05.916 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:05.366503+0000 mon.smithi149 (mon.0) 785 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:05.917 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:05.373524+0000 mon.smithi149 (mon.0) 786 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:14:05.917 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:05.396049+0000 mon.smithi149 (mon.0) 787 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi165.yimajc", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-11T23:14:05.917 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:05.399439+0000 mon.smithi149 (mon.0) 788 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi165.yimajc", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-11T23:14:05.917 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:05.410266+0000 mon.smithi149 (mon.0) 789 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:05.917 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:05 smithi149 bash[18736]: audit 2024-03-11T23:14:05.414158+0000 mon.smithi149 (mon.0) 790 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:06.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:04.118616+0000 mgr.smithi149.leptec (mgr.14197) 247 : audit 0 from='client.14490 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.149/16", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:04.632608+0000 mon.smithi149 (mon.0) 778 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: cluster 2024-03-11T23:14:04.635560+0000 mon.smithi149 (mon.0) 779 : cluster 0 osdmap e40: 8 total, 8 up, 8 in 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:04.636650+0000 mon.smithi149 (mon.0) 780 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:05.340246+0000 mon.smithi149 (mon.0) 781 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:05.353139+0000 mon.smithi149 (mon.0) 782 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:05.355791+0000 mon.smithi149 (mon.0) 783 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:05.357716+0000 mon.smithi149 (mon.0) 784 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:05.366503+0000 mon.smithi149 (mon.0) 785 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:05.373524+0000 mon.smithi149 (mon.0) 786 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:05.396049+0000 mon.smithi149 (mon.0) 787 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi165.yimajc", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:05.399439+0000 mon.smithi149 (mon.0) 788 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi165.yimajc", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:05.410266+0000 mon.smithi149 (mon.0) 789 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:06.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:05 smithi165 bash[22892]: audit 2024-03-11T23:14:05.414158+0000 mon.smithi149 (mon.0) 790 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:06.426 INFO:teuthology.run_tasks:Running task vip.exec... 2024-03-11T23:14:06.436 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:14:06.436 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-03-11T23:14:06.450 INFO:teuthology.orchestra.run.smithi149.stderr:+ dnf install -y python3-boto3 2024-03-11T23:14:06.451 INFO:teuthology.orchestra.run.smithi149.stderr:bash: line 1: dnf: command not found 2024-03-11T23:14:06.451 INFO:teuthology.orchestra.run.smithi149.stderr:+ apt install -y python3-boto3 2024-03-11T23:14:06.454 INFO:teuthology.orchestra.run.smithi149.stderr: 2024-03-11T23:14:06.454 INFO:teuthology.orchestra.run.smithi149.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-03-11T23:14:06.454 INFO:teuthology.orchestra.run.smithi149.stderr: 2024-03-11T23:14:06.503 INFO:teuthology.orchestra.run.smithi149.stdout:Reading package lists... 2024-03-11T23:14:06.705 INFO:teuthology.orchestra.run.smithi149.stdout:Building dependency tree... 2024-03-11T23:14:06.706 INFO:teuthology.orchestra.run.smithi149.stdout:Reading state information... 2024-03-11T23:14:06.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:06 smithi149 bash[18736]: cluster 2024-03-11T23:14:05.315732+0000 mgr.smithi149.leptec (mgr.14197) 248 : cluster 0 pgmap v205: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:14:06.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:06 smithi149 bash[18736]: cephadm 2024-03-11T23:14:05.416248+0000 mgr.smithi149.leptec (mgr.14197) 249 : cephadm 1 Deploying daemon rgw.foorgw.smithi165.yimajc on smithi165 2024-03-11T23:14:06.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:06 smithi149 bash[18736]: cluster 2024-03-11T23:14:05.633870+0000 mon.smithi149 (mon.0) 791 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-11T23:14:06.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:06 smithi149 bash[18736]: audit 2024-03-11T23:14:05.635529+0000 mon.smithi149 (mon.0) 792 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-03-11T23:14:06.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:06 smithi149 bash[18736]: cluster 2024-03-11T23:14:05.641352+0000 mon.smithi149 (mon.0) 793 : cluster 0 osdmap e41: 8 total, 8 up, 8 in 2024-03-11T23:14:06.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:06 smithi149 bash[18736]: cephadm 2024-03-11T23:14:05.691989+0000 mgr.smithi149.leptec (mgr.14197) 250 : cephadm 1 Saving service nfs.foo spec with placement count:1 2024-03-11T23:14:06.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:06 smithi149 bash[18736]: audit 2024-03-11T23:14:05.695693+0000 mon.smithi149 (mon.0) 794 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:06.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:06 smithi149 bash[18736]: cephadm 2024-03-11T23:14:05.697583+0000 mgr.smithi149.leptec (mgr.14197) 251 : cephadm 1 Saving service ingress.nfs.foo spec with placement count:2 2024-03-11T23:14:06.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:06 smithi149 bash[18736]: audit 2024-03-11T23:14:05.700494+0000 mon.smithi149 (mon.0) 795 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:06.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:06 smithi149 bash[18736]: cluster 2024-03-11T23:14:06.643423+0000 mon.smithi149 (mon.0) 796 : cluster 0 osdmap e42: 8 total, 8 up, 8 in 2024-03-11T23:14:06.883 INFO:teuthology.orchestra.run.smithi149.stdout:The following packages were automatically installed and are no longer required: 2024-03-11T23:14:06.883 INFO:teuthology.orchestra.run.smithi149.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-11T23:14:06.883 INFO:teuthology.orchestra.run.smithi149.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-11T23:14:06.883 INFO:teuthology.orchestra.run.smithi149.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-11T23:14:06.884 INFO:teuthology.orchestra.run.smithi149.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-11T23:14:06.884 INFO:teuthology.orchestra.run.smithi149.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-11T23:14:06.884 INFO:teuthology.orchestra.run.smithi149.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-11T23:14:06.885 INFO:teuthology.orchestra.run.smithi149.stdout:The following additional packages will be installed: 2024-03-11T23:14:06.885 INFO:teuthology.orchestra.run.smithi149.stdout: python3-botocore python3-certifi python3-idna python3-jmespath 2024-03-11T23:14:06.886 INFO:teuthology.orchestra.run.smithi149.stdout: python3-requests python3-s3transfer python3-urllib3 2024-03-11T23:14:06.887 INFO:teuthology.orchestra.run.smithi149.stdout:Suggested packages: 2024-03-11T23:14:06.887 INFO:teuthology.orchestra.run.smithi149.stdout: python3-openssl python3-socks python-requests-doc 2024-03-11T23:14:06.919 INFO:teuthology.orchestra.run.smithi149.stdout:The following NEW packages will be installed: 2024-03-11T23:14:06.919 INFO:teuthology.orchestra.run.smithi149.stdout: python3-boto3 python3-botocore python3-certifi python3-idna python3-jmespath 2024-03-11T23:14:06.919 INFO:teuthology.orchestra.run.smithi149.stdout: python3-requests python3-s3transfer python3-urllib3 2024-03-11T23:14:06.921 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:06 smithi165 bash[22892]: cluster 2024-03-11T23:14:05.315732+0000 mgr.smithi149.leptec (mgr.14197) 248 : cluster 0 pgmap v205: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:14:06.921 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:06 smithi165 bash[22892]: cephadm 2024-03-11T23:14:05.416248+0000 mgr.smithi149.leptec (mgr.14197) 249 : cephadm 1 Deploying daemon rgw.foorgw.smithi165.yimajc on smithi165 2024-03-11T23:14:06.921 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:06 smithi165 bash[22892]: cluster 2024-03-11T23:14:05.633870+0000 mon.smithi149 (mon.0) 791 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-11T23:14:06.921 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:06 smithi165 bash[22892]: audit 2024-03-11T23:14:05.635529+0000 mon.smithi149 (mon.0) 792 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-03-11T23:14:06.921 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:06 smithi165 bash[22892]: cluster 2024-03-11T23:14:05.641352+0000 mon.smithi149 (mon.0) 793 : cluster 0 osdmap e41: 8 total, 8 up, 8 in 2024-03-11T23:14:06.922 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:06 smithi165 bash[22892]: cephadm 2024-03-11T23:14:05.691989+0000 mgr.smithi149.leptec (mgr.14197) 250 : cephadm 1 Saving service nfs.foo spec with placement count:1 2024-03-11T23:14:06.922 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:06 smithi165 bash[22892]: audit 2024-03-11T23:14:05.695693+0000 mon.smithi149 (mon.0) 794 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:06.922 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:06 smithi165 bash[22892]: cephadm 2024-03-11T23:14:05.697583+0000 mgr.smithi149.leptec (mgr.14197) 251 : cephadm 1 Saving service ingress.nfs.foo spec with placement count:2 2024-03-11T23:14:06.922 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:06 smithi165 bash[22892]: audit 2024-03-11T23:14:05.700494+0000 mon.smithi149 (mon.0) 795 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:06.922 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:06 smithi165 bash[22892]: cluster 2024-03-11T23:14:06.643423+0000 mon.smithi149 (mon.0) 796 : cluster 0 osdmap e42: 8 total, 8 up, 8 in 2024-03-11T23:14:07.002 INFO:teuthology.orchestra.run.smithi149.stdout:0 upgraded, 8 newly installed, 0 to remove and 275 not upgraded. 2024-03-11T23:14:07.002 INFO:teuthology.orchestra.run.smithi149.stdout:Need to get 4,996 kB of archives. 2024-03-11T23:14:07.002 INFO:teuthology.orchestra.run.smithi149.stdout:After this operation, 66.8 MB of additional disk space will be used. 2024-03-11T23:14:07.002 INFO:teuthology.orchestra.run.smithi149.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jmespath all 0.10.0-1 [21.7 kB] 2024-03-11T23:14:07.044 INFO:teuthology.orchestra.run.smithi149.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-11T23:14:07.086 INFO:teuthology.orchestra.run.smithi149.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-03-11T23:14:07.111 INFO:teuthology.orchestra.run.smithi149.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-03-11T23:14:07.115 INFO:teuthology.orchestra.run.smithi149.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-11T23:14:07.119 INFO:teuthology.orchestra.run.smithi149.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-botocore all 1.23.34+repack-1 [4,508 kB] 2024-03-11T23:14:07.220 INFO:teuthology.orchestra.run.smithi149.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-s3transfer all 0.5.0-1 [51.5 kB] 2024-03-11T23:14:07.221 INFO:teuthology.orchestra.run.smithi149.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-boto3 all 1.20.34+dfsg-1 [68.0 kB] 2024-03-11T23:14:07.479 INFO:teuthology.orchestra.run.smithi149.stderr:debconf: unable to initialize frontend: Dialog 2024-03-11T23:14:07.480 INFO:teuthology.orchestra.run.smithi149.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-03-11T23:14:07.480 INFO:teuthology.orchestra.run.smithi149.stderr:debconf: falling back to frontend: Readline 2024-03-11T23:14:07.494 INFO:teuthology.orchestra.run.smithi149.stderr:debconf: unable to initialize frontend: Readline 2024-03-11T23:14:07.494 INFO:teuthology.orchestra.run.smithi149.stderr:debconf: (This frontend requires a controlling tty.) 2024-03-11T23:14:07.494 INFO:teuthology.orchestra.run.smithi149.stderr:debconf: falling back to frontend: Teletype 2024-03-11T23:14:07.498 INFO:teuthology.orchestra.run.smithi149.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-03-11T23:14:07.528 INFO:teuthology.orchestra.run.smithi149.stdout:Fetched 4,996 kB in 0s (17.1 MB/s) 2024-03-11T23:14:07.663 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package python3-jmespath. 2024-03-11T23:14:07.749 INFO:teuthology.orchestra.run.smithi149.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-11T23:14:07.754 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../0-python3-jmespath_0.10.0-1_all.deb ... 2024-03-11T23:14:07.804 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking python3-jmespath (0.10.0-1) ... 2024-03-11T23:14:07.917 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:07 smithi165 bash[22892]: cluster 2024-03-11T23:14:07.655536+0000 mon.smithi149 (mon.0) 797 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-11T23:14:07.918 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:07 smithi165 bash[22892]: cluster 2024-03-11T23:14:07.655599+0000 mon.smithi149 (mon.0) 798 : cluster 1 Cluster is now healthy 2024-03-11T23:14:07.918 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:07 smithi165 bash[22892]: cluster 2024-03-11T23:14:07.679394+0000 mon.smithi149 (mon.0) 799 : cluster 0 mgrmap e20: smithi149.leptec(active, since 5m), standbys: smithi165.tfkohn 2024-03-11T23:14:07.918 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:07 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:07.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:07 smithi149 bash[18736]: cluster 2024-03-11T23:14:07.655536+0000 mon.smithi149 (mon.0) 797 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-11T23:14:07.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:07 smithi149 bash[18736]: cluster 2024-03-11T23:14:07.655599+0000 mon.smithi149 (mon.0) 798 : cluster 1 Cluster is now healthy 2024-03-11T23:14:07.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:07 smithi149 bash[18736]: cluster 2024-03-11T23:14:07.679394+0000 mon.smithi149 (mon.0) 799 : cluster 0 mgrmap e20: smithi149.leptec(active, since 5m), standbys: smithi165.tfkohn 2024-03-11T23:14:08.082 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package python3-urllib3. 2024-03-11T23:14:08.109 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../1-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-03-11T23:14:08.140 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-03-11T23:14:08.171 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:08 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:08.477 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package python3-certifi. 2024-03-11T23:14:08.503 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../2-python3-certifi_2020.6.20-1_all.deb ... 2024-03-11T23:14:08.544 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-03-11T23:14:08.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:08 smithi149 bash[18736]: cluster 2024-03-11T23:14:07.316396+0000 mgr.smithi149.leptec (mgr.14197) 252 : cluster 0 pgmap v208: 33 pgs: 19 unknown, 14 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-03-11T23:14:08.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:08 smithi149 bash[18736]: audit 2024-03-11T23:14:08.221455+0000 mon.smithi149 (mon.0) 800 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:08.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:08 smithi149 bash[18736]: audit 2024-03-11T23:14:08.233037+0000 mon.smithi149 (mon.0) 801 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:08.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:08 smithi149 bash[18736]: audit 2024-03-11T23:14:08.244450+0000 mon.smithi149 (mon.0) 802 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:08.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:08 smithi149 bash[18736]: audit 2024-03-11T23:14:08.245540+0000 mon.smithi149 (mon.0) 803 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi149.qvrzak", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-11T23:14:08.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:08 smithi149 bash[18736]: audit 2024-03-11T23:14:08.250364+0000 mon.smithi149 (mon.0) 804 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi149.qvrzak", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-11T23:14:08.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:08 smithi149 bash[18736]: audit 2024-03-11T23:14:08.262661+0000 mon.smithi149 (mon.0) 805 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:08.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:08 smithi149 bash[18736]: audit 2024-03-11T23:14:08.266750+0000 mon.smithi149 (mon.0) 806 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:09.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:08 smithi165 bash[22892]: cluster 2024-03-11T23:14:07.316396+0000 mgr.smithi149.leptec (mgr.14197) 252 : cluster 0 pgmap v208: 33 pgs: 19 unknown, 14 active+clean; 577 KiB data, 224 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-03-11T23:14:09.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:08 smithi165 bash[22892]: audit 2024-03-11T23:14:08.221455+0000 mon.smithi149 (mon.0) 800 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:09.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:08 smithi165 bash[22892]: audit 2024-03-11T23:14:08.233037+0000 mon.smithi149 (mon.0) 801 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:09.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:08 smithi165 bash[22892]: audit 2024-03-11T23:14:08.244450+0000 mon.smithi149 (mon.0) 802 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:09.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:08 smithi165 bash[22892]: audit 2024-03-11T23:14:08.245540+0000 mon.smithi149 (mon.0) 803 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi149.qvrzak", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-11T23:14:09.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:08 smithi165 bash[22892]: audit 2024-03-11T23:14:08.250364+0000 mon.smithi149 (mon.0) 804 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi149.qvrzak", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-11T23:14:09.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:08 smithi165 bash[22892]: audit 2024-03-11T23:14:08.262661+0000 mon.smithi149 (mon.0) 805 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:09.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:08 smithi165 bash[22892]: audit 2024-03-11T23:14:08.266750+0000 mon.smithi149 (mon.0) 806 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:09.526 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package python3-idna. 2024-03-11T23:14:09.552 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../3-python3-idna_3.3-1_all.deb ... 2024-03-11T23:14:09.708 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking python3-idna (3.3-1) ... 2024-03-11T23:14:09.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:09 smithi149 bash[18736]: cephadm 2024-03-11T23:14:08.268803+0000 mgr.smithi149.leptec (mgr.14197) 253 : cephadm 1 Deploying daemon rgw.foorgw.smithi149.qvrzak on smithi149 2024-03-11T23:14:10.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:09 smithi165 bash[22892]: cephadm 2024-03-11T23:14:08.268803+0000 mgr.smithi149.leptec (mgr.14197) 253 : cephadm 1 Deploying daemon rgw.foorgw.smithi149.qvrzak on smithi149 2024-03-11T23:14:10.214 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package python3-requests. 2024-03-11T23:14:10.226 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../4-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-03-11T23:14:10.289 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-03-11T23:14:10.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:10 smithi149 bash[18736]: cluster 2024-03-11T23:14:09.317084+0000 mgr.smithi149.leptec (mgr.14197) 254 : cluster 0 pgmap v209: 33 pgs: 1 unknown, 32 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-03-11T23:14:10.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:10 smithi149 bash[18736]: cluster 2024-03-11T23:14:09.725912+0000 mon.smithi149 (mon.0) 807 : cluster 0 osdmap e43: 8 total, 8 up, 8 in 2024-03-11T23:14:10.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:10 smithi149 bash[18736]: audit 2024-03-11T23:14:09.728872+0000 mon.smithi165 (mon.1) 20 : audit 1 from='client.? 172.21.15.165:0/2679259982' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-03-11T23:14:10.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:10 smithi149 bash[18736]: audit 2024-03-11T23:14:09.731977+0000 mon.smithi149 (mon.0) 808 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-03-11T23:14:10.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:10 smithi149 bash[18736]: audit 2024-03-11T23:14:10.306975+0000 mon.smithi149 (mon.0) 809 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:14:11.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:10 smithi165 bash[22892]: cluster 2024-03-11T23:14:09.317084+0000 mgr.smithi149.leptec (mgr.14197) 254 : cluster 0 pgmap v209: 33 pgs: 1 unknown, 32 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-03-11T23:14:11.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:10 smithi165 bash[22892]: cluster 2024-03-11T23:14:09.725912+0000 mon.smithi149 (mon.0) 807 : cluster 0 osdmap e43: 8 total, 8 up, 8 in 2024-03-11T23:14:11.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:10 smithi165 bash[22892]: audit 2024-03-11T23:14:09.728872+0000 mon.smithi165 (mon.1) 20 : audit 1 from='client.? 172.21.15.165:0/2679259982' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-03-11T23:14:11.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:10 smithi165 bash[22892]: audit 2024-03-11T23:14:09.731977+0000 mon.smithi149 (mon.0) 808 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-03-11T23:14:11.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:10 smithi165 bash[22892]: audit 2024-03-11T23:14:10.306975+0000 mon.smithi149 (mon.0) 809 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:14:11.268 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package python3-botocore. 2024-03-11T23:14:11.294 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../5-python3-botocore_1.23.34+repack-1_all.deb ... 2024-03-11T23:14:11.361 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking python3-botocore (1.23.34+repack-1) ... 2024-03-11T23:14:11.981 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:11 smithi149 bash[18736]: audit 2024-03-11T23:14:10.724134+0000 mon.smithi149 (mon.0) 810 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-03-11T23:14:11.982 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:11 smithi149 bash[18736]: cluster 2024-03-11T23:14:10.731567+0000 mon.smithi149 (mon.0) 811 : cluster 0 osdmap e44: 8 total, 8 up, 8 in 2024-03-11T23:14:11.982 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:11 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:11 smithi165 bash[22892]: audit 2024-03-11T23:14:10.724134+0000 mon.smithi149 (mon.0) 810 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-03-11T23:14:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:11 smithi165 bash[22892]: cluster 2024-03-11T23:14:10.731567+0000 mon.smithi149 (mon.0) 811 : cluster 0 osdmap e44: 8 total, 8 up, 8 in 2024-03-11T23:14:12.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:13.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: cluster 2024-03-11T23:14:11.317713+0000 mgr.smithi149.leptec (mgr.14197) 255 : cluster 0 pgmap v212: 65 pgs: 32 unknown, 33 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-03-11T23:14:13.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: cluster 2024-03-11T23:14:11.753229+0000 mon.smithi149 (mon.0) 812 : cluster 0 osdmap e45: 8 total, 8 up, 8 in 2024-03-11T23:14:13.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: audit 2024-03-11T23:14:11.759615+0000 mon.smithi165 (mon.1) 21 : audit 1 from='client.? 172.21.15.165:0/78548553' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-03-11T23:14:13.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: audit 2024-03-11T23:14:11.763129+0000 mon.smithi149 (mon.0) 813 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-03-11T23:14:13.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: audit 2024-03-11T23:14:12.335107+0000 mon.smithi149 (mon.0) 814 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: audit 2024-03-11T23:14:12.340811+0000 mon.smithi149 (mon.0) 815 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: audit 2024-03-11T23:14:12.347270+0000 mon.smithi149 (mon.0) 816 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: audit 2024-03-11T23:14:12.352765+0000 mon.smithi149 (mon.0) 817 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: audit 2024-03-11T23:14:12.359184+0000 mon.smithi149 (mon.0) 818 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: audit 2024-03-11T23:14:12.407518+0000 mon.smithi149 (mon.0) 819 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:14:13.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:12 smithi165 bash[22892]: audit 2024-03-11T23:14:12.510238+0000 mon.smithi149 (mon.0) 820 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: cluster 2024-03-11T23:14:11.317713+0000 mgr.smithi149.leptec (mgr.14197) 255 : cluster 0 pgmap v212: 65 pgs: 32 unknown, 33 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: cluster 2024-03-11T23:14:11.753229+0000 mon.smithi149 (mon.0) 812 : cluster 0 osdmap e45: 8 total, 8 up, 8 in 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: audit 2024-03-11T23:14:11.759615+0000 mon.smithi165 (mon.1) 21 : audit 1 from='client.? 172.21.15.165:0/78548553' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: audit 2024-03-11T23:14:11.763129+0000 mon.smithi149 (mon.0) 813 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: audit 2024-03-11T23:14:12.335107+0000 mon.smithi149 (mon.0) 814 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: audit 2024-03-11T23:14:12.340811+0000 mon.smithi149 (mon.0) 815 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: audit 2024-03-11T23:14:12.347270+0000 mon.smithi149 (mon.0) 816 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: audit 2024-03-11T23:14:12.352765+0000 mon.smithi149 (mon.0) 817 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: audit 2024-03-11T23:14:12.359184+0000 mon.smithi149 (mon.0) 818 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: audit 2024-03-11T23:14:12.407518+0000 mon.smithi149 (mon.0) 819 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:14:13.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:12 smithi149 bash[18736]: audit 2024-03-11T23:14:12.510238+0000 mon.smithi149 (mon.0) 820 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:14.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:13 smithi165 bash[22892]: cephadm 2024-03-11T23:14:12.347927+0000 mgr.smithi149.leptec (mgr.14197) 256 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-03-11T23:14:14.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:13 smithi165 bash[22892]: audit 2024-03-11T23:14:12.752211+0000 mon.smithi149 (mon.0) 821 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-03-11T23:14:14.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:13 smithi165 bash[22892]: cluster 2024-03-11T23:14:12.760097+0000 mon.smithi149 (mon.0) 822 : cluster 0 osdmap e46: 8 total, 8 up, 8 in 2024-03-11T23:14:14.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:13 smithi149 bash[18736]: cephadm 2024-03-11T23:14:12.347927+0000 mgr.smithi149.leptec (mgr.14197) 256 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-03-11T23:14:14.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:13 smithi149 bash[18736]: audit 2024-03-11T23:14:12.752211+0000 mon.smithi149 (mon.0) 821 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-03-11T23:14:14.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:13 smithi149 bash[18736]: cluster 2024-03-11T23:14:12.760097+0000 mon.smithi149 (mon.0) 822 : cluster 0 osdmap e46: 8 total, 8 up, 8 in 2024-03-11T23:14:15.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:14 smithi165 bash[22892]: cluster 2024-03-11T23:14:13.318376+0000 mgr.smithi149.leptec (mgr.14197) 257 : cluster 0 pgmap v215: 97 pgs: 8 creating+peering, 51 active+clean, 38 unknown; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 767 B/s wr, 1 op/s 2024-03-11T23:14:15.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:14 smithi165 bash[22892]: cluster 2024-03-11T23:14:13.793173+0000 mon.smithi149 (mon.0) 823 : cluster 0 osdmap e47: 8 total, 8 up, 8 in 2024-03-11T23:14:15.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:14 smithi165 bash[22892]: audit 2024-03-11T23:14:13.794213+0000 mon.smithi165 (mon.1) 22 : audit 1 from='client.? 172.21.15.165:0/78548553' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-03-11T23:14:15.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:14 smithi165 bash[22892]: audit 2024-03-11T23:14:13.798465+0000 mon.smithi149 (mon.0) 824 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-03-11T23:14:15.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:14 smithi149 bash[18736]: cluster 2024-03-11T23:14:13.318376+0000 mgr.smithi149.leptec (mgr.14197) 257 : cluster 0 pgmap v215: 97 pgs: 8 creating+peering, 51 active+clean, 38 unknown; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 767 B/s wr, 1 op/s 2024-03-11T23:14:15.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:14 smithi149 bash[18736]: cluster 2024-03-11T23:14:13.793173+0000 mon.smithi149 (mon.0) 823 : cluster 0 osdmap e47: 8 total, 8 up, 8 in 2024-03-11T23:14:15.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:14 smithi149 bash[18736]: audit 2024-03-11T23:14:13.794213+0000 mon.smithi165 (mon.1) 22 : audit 1 from='client.? 172.21.15.165:0/78548553' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-03-11T23:14:15.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:14 smithi149 bash[18736]: audit 2024-03-11T23:14:13.798465+0000 mon.smithi149 (mon.0) 824 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-03-11T23:14:15.255 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package python3-s3transfer. 2024-03-11T23:14:15.279 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../6-python3-s3transfer_0.5.0-1_all.deb ... 2024-03-11T23:14:15.322 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking python3-s3transfer (0.5.0-1) ... 2024-03-11T23:14:15.603 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package python3-boto3. 2024-03-11T23:14:15.629 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../7-python3-boto3_1.20.34+dfsg-1_all.deb ... 2024-03-11T23:14:15.669 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking python3-boto3 (1.20.34+dfsg-1) ... 2024-03-11T23:14:16.054 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-03-11T23:14:16.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:15 smithi165 bash[22892]: audit 2024-03-11T23:14:14.786183+0000 mon.smithi149 (mon.0) 825 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-03-11T23:14:16.061 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:15 smithi165 bash[22892]: cluster 2024-03-11T23:14:14.792032+0000 mon.smithi149 (mon.0) 826 : cluster 0 osdmap e48: 8 total, 8 up, 8 in 2024-03-11T23:14:16.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:15 smithi149 bash[18736]: audit 2024-03-11T23:14:14.786183+0000 mon.smithi149 (mon.0) 825 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-03-11T23:14:16.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:15 smithi149 bash[18736]: cluster 2024-03-11T23:14:14.792032+0000 mon.smithi149 (mon.0) 826 : cluster 0 osdmap e48: 8 total, 8 up, 8 in 2024-03-11T23:14:16.325 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up python3-jmespath (0.10.0-1) ... 2024-03-11T23:14:16.551 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up python3-idna (3.3-1) ... 2024-03-11T23:14:16.886 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-03-11T23:14:17.103 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:16 smithi149 bash[18736]: cluster 2024-03-11T23:14:15.319022+0000 mgr.smithi149.leptec (mgr.14197) 258 : cluster 0 pgmap v218: 129 pgs: 22 creating+peering, 82 active+clean, 25 unknown; 578 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.5 KiB/s wr, 3 op/s 2024-03-11T23:14:17.103 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:16 smithi149 bash[18736]: cluster 2024-03-11T23:14:15.817525+0000 mon.smithi149 (mon.0) 827 : cluster 0 osdmap e49: 8 total, 8 up, 8 in 2024-03-11T23:14:17.103 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:16 smithi149 bash[18736]: audit 2024-03-11T23:14:15.819130+0000 mon.smithi149 (mon.0) 828 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-11T23:14:17.103 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:16 smithi149 bash[18736]: audit 2024-03-11T23:14:15.819838+0000 mon.smithi165 (mon.1) 23 : audit 1 from='client.? 172.21.15.165:0/78548553' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-11T23:14:17.103 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:16 smithi149 bash[18736]: audit 2024-03-11T23:14:15.823595+0000 mon.smithi149 (mon.0) 829 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-11T23:14:17.179 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-03-11T23:14:17.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:16 smithi165 bash[22892]: cluster 2024-03-11T23:14:15.319022+0000 mgr.smithi149.leptec (mgr.14197) 258 : cluster 0 pgmap v218: 129 pgs: 22 creating+peering, 82 active+clean, 25 unknown; 578 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.5 KiB/s wr, 3 op/s 2024-03-11T23:14:17.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:16 smithi165 bash[22892]: cluster 2024-03-11T23:14:15.817525+0000 mon.smithi149 (mon.0) 827 : cluster 0 osdmap e49: 8 total, 8 up, 8 in 2024-03-11T23:14:17.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:16 smithi165 bash[22892]: audit 2024-03-11T23:14:15.819130+0000 mon.smithi149 (mon.0) 828 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-11T23:14:17.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:16 smithi165 bash[22892]: audit 2024-03-11T23:14:15.819838+0000 mon.smithi165 (mon.1) 23 : audit 1 from='client.? 172.21.15.165:0/78548553' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-11T23:14:17.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:16 smithi165 bash[22892]: audit 2024-03-11T23:14:15.823595+0000 mon.smithi149 (mon.0) 829 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-11T23:14:17.472 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up python3-botocore (1.23.34+repack-1) ... 2024-03-11T23:14:17.849 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up python3-s3transfer (0.5.0-1) ... 2024-03-11T23:14:18.151 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up python3-boto3 (1.20.34+dfsg-1) ... 2024-03-11T23:14:18.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:17 smithi149 bash[18736]: audit 2024-03-11T23:14:16.812147+0000 mon.smithi149 (mon.0) 830 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-03-11T23:14:18.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:17 smithi149 bash[18736]: audit 2024-03-11T23:14:16.812246+0000 mon.smithi149 (mon.0) 831 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-03-11T23:14:18.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:17 smithi149 bash[18736]: cluster 2024-03-11T23:14:16.817966+0000 mon.smithi149 (mon.0) 832 : cluster 0 osdmap e50: 8 total, 8 up, 8 in 2024-03-11T23:14:18.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:17 smithi149 bash[18736]: audit 2024-03-11T23:14:16.821772+0000 mon.smithi149 (mon.0) 833 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-11T23:14:18.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:17 smithi149 bash[18736]: audit 2024-03-11T23:14:16.831072+0000 mon.smithi165 (mon.1) 24 : audit 1 from='client.? 172.21.15.165:0/78548553' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-11T23:14:18.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:17 smithi149 bash[18736]: audit 2024-03-11T23:14:16.836603+0000 mon.smithi149 (mon.0) 834 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-11T23:14:18.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:17 smithi149 bash[18736]: audit 2024-03-11T23:14:17.814437+0000 mon.smithi149 (mon.0) 835 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-11T23:14:18.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:17 smithi149 bash[18736]: audit 2024-03-11T23:14:17.814493+0000 mon.smithi149 (mon.0) 836 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-11T23:14:18.244 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:17 smithi149 bash[18736]: cluster 2024-03-11T23:14:17.817883+0000 mon.smithi149 (mon.0) 837 : cluster 0 osdmap e51: 8 total, 8 up, 8 in 2024-03-11T23:14:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:17 smithi165 bash[22892]: audit 2024-03-11T23:14:16.812147+0000 mon.smithi149 (mon.0) 830 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-03-11T23:14:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:17 smithi165 bash[22892]: audit 2024-03-11T23:14:16.812246+0000 mon.smithi149 (mon.0) 831 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-03-11T23:14:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:17 smithi165 bash[22892]: cluster 2024-03-11T23:14:16.817966+0000 mon.smithi149 (mon.0) 832 : cluster 0 osdmap e50: 8 total, 8 up, 8 in 2024-03-11T23:14:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:17 smithi165 bash[22892]: audit 2024-03-11T23:14:16.821772+0000 mon.smithi149 (mon.0) 833 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-11T23:14:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:17 smithi165 bash[22892]: audit 2024-03-11T23:14:16.831072+0000 mon.smithi165 (mon.1) 24 : audit 1 from='client.? 172.21.15.165:0/78548553' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-11T23:14:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:17 smithi165 bash[22892]: audit 2024-03-11T23:14:16.836603+0000 mon.smithi149 (mon.0) 834 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-11T23:14:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:17 smithi165 bash[22892]: audit 2024-03-11T23:14:17.814437+0000 mon.smithi149 (mon.0) 835 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-11T23:14:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:17 smithi165 bash[22892]: audit 2024-03-11T23:14:17.814493+0000 mon.smithi149 (mon.0) 836 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi165.yimajc' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-11T23:14:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:17 smithi165 bash[22892]: cluster 2024-03-11T23:14:17.817883+0000 mon.smithi149 (mon.0) 837 : cluster 0 osdmap e51: 8 total, 8 up, 8 in 2024-03-11T23:14:18.663 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T23:14:18.715 INFO:teuthology.orchestra.run.smithi149.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-03-11T23:14:18.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:18 smithi149 bash[18736]: cluster 2024-03-11T23:14:17.320276+0000 mgr.smithi149.leptec (mgr.14197) 259 : cluster 0 pgmap v221: 161 pgs: 17 creating+peering, 118 active+clean, 26 unknown; 578 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 1023 B/s wr, 4 op/s 2024-03-11T23:14:18.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:18 smithi149 bash[18736]: audit 2024-03-11T23:14:18.049807+0000 mon.smithi149 (mon.0) 838 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:18.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:18 smithi149 bash[18736]: audit 2024-03-11T23:14:18.057346+0000 mon.smithi149 (mon.0) 839 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:19.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:18 smithi165 bash[22892]: cluster 2024-03-11T23:14:17.320276+0000 mgr.smithi149.leptec (mgr.14197) 259 : cluster 0 pgmap v221: 161 pgs: 17 creating+peering, 118 active+clean, 26 unknown; 578 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 1023 B/s wr, 4 op/s 2024-03-11T23:14:19.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:18 smithi165 bash[22892]: audit 2024-03-11T23:14:18.049807+0000 mon.smithi149 (mon.0) 838 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:19.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:18 smithi165 bash[22892]: audit 2024-03-11T23:14:18.057346+0000 mon.smithi149 (mon.0) 839 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: cluster 2024-03-11T23:14:19.320968+0000 mgr.smithi149.leptec (mgr.14197) 260 : cluster 0 pgmap v223: 161 pgs: 7 creating+peering, 152 active+clean, 2 unknown; 579 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 57 KiB/s rd, 3.1 KiB/s wr, 117 op/s 2024-03-11T23:14:20.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.348935+0000 mon.smithi149 (mon.0) 840 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.354633+0000 mon.smithi149 (mon.0) 841 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.356228+0000 mon.smithi149 (mon.0) 842 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:20.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.356962+0000 mon.smithi149 (mon.0) 843 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:14:20.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: cephadm 2024-03-11T23:14:19.361381+0000 mgr.smithi149.leptec (mgr.14197) 261 : cephadm 1 Checking dashboard <-> RGW credentials 2024-03-11T23:14:20.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.797206+0000 mon.smithi149 (mon.0) 844 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.804679+0000 mon.smithi149 (mon.0) 845 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.813400+0000 mon.smithi149 (mon.0) 846 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.817525+0000 mon.smithi149 (mon.0) 847 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.831449+0000 mon.smithi149 (mon.0) 848 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: cephadm 2024-03-11T23:14:19.832028+0000 mgr.smithi149.leptec (mgr.14197) 262 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi149.vojmek 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.832320+0000 mon.smithi149 (mon.0) 849 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi149.vojmek", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.837034+0000 mon.smithi149 (mon.0) 850 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi149.vojmek", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: cephadm 2024-03-11T23:14:19.841089+0000 mgr.smithi149.leptec (mgr.14197) 263 : cephadm 1 Ensuring nfs.foo.0 is in the ganesha grace table 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.841319+0000 mon.smithi149 (mon.0) 851 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 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-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.849800+0000 mon.smithi149 (mon.0) 852 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 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-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.851935+0000 mon.smithi149 (mon.0) 853 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.898487+0000 mon.smithi149 (mon.0) 854 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.900287+0000 mon.smithi149 (mon.0) 855 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-03-11T23:14:20.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: cephadm 2024-03-11T23:14:19.961281+0000 mgr.smithi149.leptec (mgr.14197) 264 : cephadm 1 Rados config object exists: conf-nfs.foo 2024-03-11T23:14:20.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: cephadm 2024-03-11T23:14:19.961378+0000 mgr.smithi149.leptec (mgr.14197) 265 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi149.vojmek-rgw 2024-03-11T23:14:20.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.961773+0000 mon.smithi149 (mon.0) 856 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi149.vojmek-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-11T23:14:20.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.966625+0000 mon.smithi149 (mon.0) 857 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi149.vojmek-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-11T23:14:20.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: cephadm 2024-03-11T23:14:19.969010+0000 mgr.smithi149.leptec (mgr.14197) 266 : cephadm 3 Bind address in nfs.foo.0.0.smithi149.vojmek's ganesha conf is defaulting to empty 2024-03-11T23:14:20.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: audit 2024-03-11T23:14:19.974215+0000 mon.smithi149 (mon.0) 858 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:20.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:20 smithi149 bash[18736]: cephadm 2024-03-11T23:14:19.975362+0000 mgr.smithi149.leptec (mgr.14197) 267 : cephadm 1 Deploying daemon nfs.foo.0.0.smithi149.vojmek on smithi149 2024-03-11T23:14:20.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: cluster 2024-03-11T23:14:19.320968+0000 mgr.smithi149.leptec (mgr.14197) 260 : cluster 0 pgmap v223: 161 pgs: 7 creating+peering, 152 active+clean, 2 unknown; 579 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 57 KiB/s rd, 3.1 KiB/s wr, 117 op/s 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.348935+0000 mon.smithi149 (mon.0) 840 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.354633+0000 mon.smithi149 (mon.0) 841 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.356228+0000 mon.smithi149 (mon.0) 842 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.356962+0000 mon.smithi149 (mon.0) 843 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: cephadm 2024-03-11T23:14:19.361381+0000 mgr.smithi149.leptec (mgr.14197) 261 : cephadm 1 Checking dashboard <-> RGW credentials 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.797206+0000 mon.smithi149 (mon.0) 844 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.804679+0000 mon.smithi149 (mon.0) 845 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.813400+0000 mon.smithi149 (mon.0) 846 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.817525+0000 mon.smithi149 (mon.0) 847 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.831449+0000 mon.smithi149 (mon.0) 848 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:20.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: cephadm 2024-03-11T23:14:19.832028+0000 mgr.smithi149.leptec (mgr.14197) 262 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi149.vojmek 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.832320+0000 mon.smithi149 (mon.0) 849 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi149.vojmek", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.837034+0000 mon.smithi149 (mon.0) 850 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi149.vojmek", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: cephadm 2024-03-11T23:14:19.841089+0000 mgr.smithi149.leptec (mgr.14197) 263 : cephadm 1 Ensuring nfs.foo.0 is in the ganesha grace table 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.841319+0000 mon.smithi149 (mon.0) 851 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 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-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.849800+0000 mon.smithi149 (mon.0) 852 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 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-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.851935+0000 mon.smithi149 (mon.0) 853 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.898487+0000 mon.smithi149 (mon.0) 854 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.900287+0000 mon.smithi149 (mon.0) 855 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: cephadm 2024-03-11T23:14:19.961281+0000 mgr.smithi149.leptec (mgr.14197) 264 : cephadm 1 Rados config object exists: conf-nfs.foo 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: cephadm 2024-03-11T23:14:19.961378+0000 mgr.smithi149.leptec (mgr.14197) 265 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi149.vojmek-rgw 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.961773+0000 mon.smithi149 (mon.0) 856 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi149.vojmek-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.966625+0000 mon.smithi149 (mon.0) 857 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi149.vojmek-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: cephadm 2024-03-11T23:14:19.969010+0000 mgr.smithi149.leptec (mgr.14197) 266 : cephadm 3 Bind address in nfs.foo.0.0.smithi149.vojmek's ganesha conf is defaulting to empty 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: audit 2024-03-11T23:14:19.974215+0000 mon.smithi149 (mon.0) 858 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:14:20.811 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:20 smithi165 bash[22892]: cephadm 2024-03-11T23:14:19.975362+0000 mgr.smithi149.leptec (mgr.14197) 267 : cephadm 1 Deploying daemon nfs.foo.0.0.smithi149.vojmek on smithi149 2024-03-11T23:14:22.478 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:22 smithi149 bash[18736]: cluster 2024-03-11T23:14:21.321956+0000 mgr.smithi149.leptec (mgr.14197) 268 : cluster 0 pgmap v224: 161 pgs: 3 creating+peering, 158 active+clean; 580 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 61 KiB/s rd, 3.0 KiB/s wr, 125 op/s 2024-03-11T23:14:22.505 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:14:22.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:22 smithi165 bash[22892]: cluster 2024-03-11T23:14:21.321956+0000 mgr.smithi149.leptec (mgr.14197) 268 : cluster 0 pgmap v224: 161 pgs: 3 creating+peering, 158 active+clean; 580 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 61 KiB/s rd, 3.0 KiB/s wr, 125 op/s 2024-03-11T23:14:23.269 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:23 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:23.526 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:23 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:24.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:24 smithi149 bash[18736]: cluster 2024-03-11T23:14:23.322822+0000 mgr.smithi149.leptec (mgr.14197) 269 : cluster 0 pgmap v225: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 102 KiB/s rd, 4.7 KiB/s wr, 208 op/s 2024-03-11T23:14:24.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:24 smithi149 bash[18736]: audit 2024-03-11T23:14:23.569315+0000 mon.smithi149 (mon.0) 859 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:24.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:24 smithi149 bash[18736]: audit 2024-03-11T23:14:23.576277+0000 mon.smithi149 (mon.0) 860 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:24.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:24 smithi149 bash[18736]: audit 2024-03-11T23:14:23.599716+0000 mon.smithi149 (mon.0) 861 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:24.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:24 smithi149 bash[18736]: audit 2024-03-11T23:14:23.629437+0000 mon.smithi149 (mon.0) 862 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:24.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:24 smithi149 bash[18736]: audit 2024-03-11T23:14:23.635702+0000 mon.smithi149 (mon.0) 863 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:24.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:24 smithi149 bash[18736]: cephadm 2024-03-11T23:14:23.652668+0000 mgr.smithi149.leptec (mgr.14197) 270 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi149.jkqgfj on smithi149 2024-03-11T23:14:24.935 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:24 smithi165 bash[22892]: cluster 2024-03-11T23:14:23.322822+0000 mgr.smithi149.leptec (mgr.14197) 269 : cluster 0 pgmap v225: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 102 KiB/s rd, 4.7 KiB/s wr, 208 op/s 2024-03-11T23:14:24.935 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:24 smithi165 bash[22892]: audit 2024-03-11T23:14:23.569315+0000 mon.smithi149 (mon.0) 859 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:24.935 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:24 smithi165 bash[22892]: audit 2024-03-11T23:14:23.576277+0000 mon.smithi149 (mon.0) 860 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:24.935 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:24 smithi165 bash[22892]: audit 2024-03-11T23:14:23.599716+0000 mon.smithi149 (mon.0) 861 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:24.935 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:24 smithi165 bash[22892]: audit 2024-03-11T23:14:23.629437+0000 mon.smithi149 (mon.0) 862 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:24.936 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:24 smithi165 bash[22892]: audit 2024-03-11T23:14:23.635702+0000 mon.smithi149 (mon.0) 863 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:24.936 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:24 smithi165 bash[22892]: cephadm 2024-03-11T23:14:23.652668+0000 mgr.smithi149.leptec (mgr.14197) 270 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi149.jkqgfj on smithi149 2024-03-11T23:14:25.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:25 smithi149 bash[18736]: audit 2024-03-11T23:14:25.307544+0000 mon.smithi149 (mon.0) 864 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:14:26.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:25 smithi165 bash[22892]: audit 2024-03-11T23:14:25.307544+0000 mon.smithi149 (mon.0) 864 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:14:26.599 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:14:26.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:26 smithi149 bash[18736]: cluster 2024-03-11T23:14:25.323467+0000 mgr.smithi149.leptec (mgr.14197) 271 : cluster 0 pgmap v226: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 92 KiB/s rd, 4.5 KiB/s wr, 185 op/s 2024-03-11T23:14:27.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:26 smithi165 bash[22892]: cluster 2024-03-11T23:14:25.323467+0000 mgr.smithi149.leptec (mgr.14197) 271 : cluster 0 pgmap v226: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 92 KiB/s rd, 4.5 KiB/s wr, 185 op/s 2024-03-11T23:14:28.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:28 smithi165 bash[22892]: cluster 2024-03-11T23:14:27.324902+0000 mgr.smithi149.leptec (mgr.14197) 272 : cluster 0 pgmap v227: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 78 KiB/s rd, 3.7 KiB/s wr, 157 op/s 2024-03-11T23:14:28.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:28 smithi165 bash[22892]: audit 2024-03-11T23:14:27.525918+0000 mon.smithi149 (mon.0) 865 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:28.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:28 smithi149 bash[18736]: cluster 2024-03-11T23:14:27.324902+0000 mgr.smithi149.leptec (mgr.14197) 272 : cluster 0 pgmap v227: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 78 KiB/s rd, 3.7 KiB/s wr, 157 op/s 2024-03-11T23:14:28.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:28 smithi149 bash[18736]: audit 2024-03-11T23:14:27.525918+0000 mon.smithi149 (mon.0) 865 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:30.527 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:30 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:30.732 INFO:teuthology.orchestra.run.smithi149.stderr:Using ceph image with id 'a6477a474d71' and tag '94a539707733325322964c6a187c6a1b41be1daf' created on 2024-03-08 04:09:21 +0000 UTC 2024-03-11T23:14:30.732 INFO:teuthology.orchestra.run.smithi149.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:bbe755e768640cafd345af8384e9f3b099ff2fb85ebf0601e0883dbf412b887b 2024-03-11T23:14:30.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:30 smithi165 bash[22892]: cluster 2024-03-11T23:14:29.326231+0000 mgr.smithi149.leptec (mgr.14197) 273 : cluster 0 pgmap v228: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 68 KiB/s rd, 3.7 KiB/s wr, 138 op/s 2024-03-11T23:14:30.851 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:30 smithi149 bash[18736]: cluster 2024-03-11T23:14:29.326231+0000 mgr.smithi149.leptec (mgr.14197) 273 : cluster 0 pgmap v228: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 68 KiB/s rd, 3.7 KiB/s wr, 138 op/s 2024-03-11T23:14:30.851 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:30 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:32.153 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:31 smithi149 bash[18736]: audit 2024-03-11T23:14:30.898547+0000 mon.smithi149 (mon.0) 866 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:32.153 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:31 smithi149 bash[18736]: audit 2024-03-11T23:14:30.904022+0000 mon.smithi149 (mon.0) 867 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:32.153 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:31 smithi149 bash[18736]: audit 2024-03-11T23:14:30.936386+0000 mon.smithi149 (mon.0) 868 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:32.153 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:31 smithi149 bash[18736]: cephadm 2024-03-11T23:14:30.941502+0000 mgr.smithi149.leptec (mgr.14197) 274 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi165.sbvonk on smithi165 2024-03-11T23:14:32.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:31 smithi165 bash[22892]: audit 2024-03-11T23:14:30.898547+0000 mon.smithi149 (mon.0) 866 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:32.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:31 smithi165 bash[22892]: audit 2024-03-11T23:14:30.904022+0000 mon.smithi149 (mon.0) 867 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:32.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:31 smithi165 bash[22892]: audit 2024-03-11T23:14:30.936386+0000 mon.smithi149 (mon.0) 868 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:32.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:31 smithi165 bash[22892]: cephadm 2024-03-11T23:14:30.941502+0000 mgr.smithi149.leptec (mgr.14197) 274 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi165.sbvonk on smithi165 2024-03-11T23:14:33.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:32 smithi149 bash[18736]: cluster 2024-03-11T23:14:31.327019+0000 mgr.smithi149.leptec (mgr.14197) 275 : cluster 0 pgmap v229: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 44 KiB/s rd, 2.5 KiB/s wr, 88 op/s 2024-03-11T23:14:33.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:32 smithi149 bash[18736]: audit 2024-03-11T23:14:32.537419+0000 mon.smithi149 (mon.0) 869 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:33.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:32 smithi165 bash[22892]: cluster 2024-03-11T23:14:31.327019+0000 mgr.smithi149.leptec (mgr.14197) 275 : cluster 0 pgmap v229: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 44 KiB/s rd, 2.5 KiB/s wr, 88 op/s 2024-03-11T23:14:33.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:32 smithi165 bash[22892]: audit 2024-03-11T23:14:32.537419+0000 mon.smithi149 (mon.0) 869 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:34.600 INFO:teuthology.run_tasks:Running task python... 2024-03-11T23:14:34.612 INFO:tasks.python:Running python on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:14:34.612 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-11T23:14:34.613 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-03-11T23:14:35.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:34 smithi149 bash[18736]: cluster 2024-03-11T23:14:33.328293+0000 mgr.smithi149.leptec (mgr.14197) 276 : cluster 0 pgmap v230: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 36 KiB/s rd, 2.2 KiB/s wr, 70 op/s 2024-03-11T23:14:35.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:34 smithi165 bash[22892]: cluster 2024-03-11T23:14:33.328293+0000 mgr.smithi149.leptec (mgr.14197) 276 : cluster 0 pgmap v230: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 36 KiB/s rd, 2.2 KiB/s wr, 70 op/s 2024-03-11T23:14:37.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:36 smithi149 bash[18736]: cluster 2024-03-11T23:14:35.329485+0000 mgr.smithi149.leptec (mgr.14197) 277 : cluster 0 pgmap v231: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 852 B/s wr, 3 op/s 2024-03-11T23:14:37.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:36 smithi149 bash[18736]: cluster 2024-03-11T23:14:35.960344+0000 mon.smithi149 (mon.0) 870 : cluster 0 osdmap e52: 8 total, 8 up, 8 in 2024-03-11T23:14:37.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:36 smithi149 bash[18736]: audit 2024-03-11T23:14:35.963947+0000 mon.smithi149 (mon.0) 871 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-03-11T23:14:37.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:36 smithi165 bash[22892]: cluster 2024-03-11T23:14:35.329485+0000 mgr.smithi149.leptec (mgr.14197) 277 : cluster 0 pgmap v231: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 852 B/s wr, 3 op/s 2024-03-11T23:14:37.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:36 smithi165 bash[22892]: cluster 2024-03-11T23:14:35.960344+0000 mon.smithi149 (mon.0) 870 : cluster 0 osdmap e52: 8 total, 8 up, 8 in 2024-03-11T23:14:37.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:36 smithi165 bash[22892]: audit 2024-03-11T23:14:35.963947+0000 mon.smithi149 (mon.0) 871 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-03-11T23:14:38.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:37 smithi149 bash[18736]: audit 2024-03-11T23:14:36.957880+0000 mon.smithi149 (mon.0) 872 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-03-11T23:14:38.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:37 smithi149 bash[18736]: cluster 2024-03-11T23:14:36.965285+0000 mon.smithi149 (mon.0) 873 : cluster 0 osdmap e53: 8 total, 8 up, 8 in 2024-03-11T23:14:38.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:37 smithi149 bash[18736]: audit 2024-03-11T23:14:36.982443+0000 mon.smithi149 (mon.0) 874 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-11T23:14:38.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:37 smithi165 bash[22892]: audit 2024-03-11T23:14:36.957880+0000 mon.smithi149 (mon.0) 872 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-03-11T23:14:38.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:37 smithi165 bash[22892]: cluster 2024-03-11T23:14:36.965285+0000 mon.smithi149 (mon.0) 873 : cluster 0 osdmap e53: 8 total, 8 up, 8 in 2024-03-11T23:14:38.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:37 smithi165 bash[22892]: audit 2024-03-11T23:14:36.982443+0000 mon.smithi149 (mon.0) 874 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-11T23:14:38.632 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:38 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:38.907 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:38 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:39.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:38 smithi149 bash[18736]: cluster 2024-03-11T23:14:37.330509+0000 mgr.smithi149.leptec (mgr.14197) 278 : cluster 0 pgmap v234: 193 pgs: 6 creating+peering, 19 unknown, 168 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 255 B/s wr, 1 op/s 2024-03-11T23:14:39.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:38 smithi149 bash[18736]: audit 2024-03-11T23:14:37.978966+0000 mon.smithi149 (mon.0) 875 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-11T23:14:39.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:38 smithi149 bash[18736]: cluster 2024-03-11T23:14:37.989531+0000 mon.smithi149 (mon.0) 876 : cluster 0 osdmap e54: 8 total, 8 up, 8 in 2024-03-11T23:14:39.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:38 smithi149 bash[18736]: audit 2024-03-11T23:14:38.964391+0000 mon.smithi149 (mon.0) 877 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:39.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:38 smithi149 bash[18736]: audit 2024-03-11T23:14:38.977967+0000 mon.smithi149 (mon.0) 878 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:39.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:38 smithi165 bash[22892]: cluster 2024-03-11T23:14:37.330509+0000 mgr.smithi149.leptec (mgr.14197) 278 : cluster 0 pgmap v234: 193 pgs: 6 creating+peering, 19 unknown, 168 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 255 B/s wr, 1 op/s 2024-03-11T23:14:39.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:38 smithi165 bash[22892]: audit 2024-03-11T23:14:37.978966+0000 mon.smithi149 (mon.0) 875 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-11T23:14:39.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:38 smithi165 bash[22892]: cluster 2024-03-11T23:14:37.989531+0000 mon.smithi149 (mon.0) 876 : cluster 0 osdmap e54: 8 total, 8 up, 8 in 2024-03-11T23:14:39.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:38 smithi165 bash[22892]: audit 2024-03-11T23:14:38.964391+0000 mon.smithi149 (mon.0) 877 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:39.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:38 smithi165 bash[22892]: audit 2024-03-11T23:14:38.977967+0000 mon.smithi149 (mon.0) 878 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:40.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:40 smithi165 bash[22892]: cluster 2024-03-11T23:14:38.994686+0000 mon.smithi149 (mon.0) 879 : cluster 0 osdmap e55: 8 total, 8 up, 8 in 2024-03-11T23:14:40.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:40 smithi165 bash[22892]: audit 2024-03-11T23:14:39.006194+0000 mon.smithi149 (mon.0) 880 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-03-11T23:14:40.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:40 smithi165 bash[22892]: audit 2024-03-11T23:14:39.032184+0000 mon.smithi149 (mon.0) 881 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:40.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:40 smithi165 bash[22892]: audit 2024-03-11T23:14:39.041724+0000 mon.smithi149 (mon.0) 882 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:40.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:40 smithi149 bash[18736]: cluster 2024-03-11T23:14:38.994686+0000 mon.smithi149 (mon.0) 879 : cluster 0 osdmap e55: 8 total, 8 up, 8 in 2024-03-11T23:14:40.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:40 smithi149 bash[18736]: audit 2024-03-11T23:14:39.006194+0000 mon.smithi149 (mon.0) 880 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-03-11T23:14:40.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:40 smithi149 bash[18736]: audit 2024-03-11T23:14:39.032184+0000 mon.smithi149 (mon.0) 881 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:40.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:40 smithi149 bash[18736]: audit 2024-03-11T23:14:39.041724+0000 mon.smithi149 (mon.0) 882 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:41.092 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-11T23:14:41.103 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:14:41.103 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: cephadm 2024-03-11T23:14:39.042853+0000 mgr.smithi149.leptec (mgr.14197) 279 : cephadm 1 10.0.31.149 is in 10.0.0.0/16 on smithi165 interface enp3s0f1 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: cephadm 2024-03-11T23:14:39.043166+0000 mgr.smithi149.leptec (mgr.14197) 280 : cephadm 1 10.0.31.149 is in 10.0.0.0/16 on smithi149 interface enp3s0f1 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: cephadm 2024-03-11T23:14:39.059029+0000 mgr.smithi149.leptec (mgr.14197) 281 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi165.jdglth on smithi165 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: cluster 2024-03-11T23:14:39.331739+0000 mgr.smithi149.leptec (mgr.14197) 282 : cluster 0 pgmap v237: 225 pgs: 14 creating+peering, 27 unknown, 184 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 2.7 KiB/s rd, 511 B/s wr, 4 op/s 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: audit 2024-03-11T23:14:39.991645+0000 mon.smithi149 (mon.0) 883 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: cluster 2024-03-11T23:14:39.999476+0000 mon.smithi149 (mon.0) 884 : cluster 0 osdmap e56: 8 total, 8 up, 8 in 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: audit 2024-03-11T23:14:40.003602+0000 mon.smithi149 (mon.0) 885 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: cluster 2024-03-11T23:14:40.038768+0000 mon.smithi149 (mon.0) 886 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: audit 2024-03-11T23:14:40.314626+0000 mon.smithi149 (mon.0) 887 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: audit 2024-03-11T23:14:40.316783+0000 mon.smithi149 (mon.0) 888 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:14:41.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: audit 2024-03-11T23:14:40.994045+0000 mon.smithi149 (mon.0) 889 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-03-11T23:14:41.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:41 smithi165 bash[22892]: cluster 2024-03-11T23:14:41.001031+0000 mon.smithi149 (mon.0) 890 : cluster 0 osdmap e57: 8 total, 8 up, 8 in 2024-03-11T23:14:41.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: cephadm 2024-03-11T23:14:39.042853+0000 mgr.smithi149.leptec (mgr.14197) 279 : cephadm 1 10.0.31.149 is in 10.0.0.0/16 on smithi165 interface enp3s0f1 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: cephadm 2024-03-11T23:14:39.043166+0000 mgr.smithi149.leptec (mgr.14197) 280 : cephadm 1 10.0.31.149 is in 10.0.0.0/16 on smithi149 interface enp3s0f1 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: cephadm 2024-03-11T23:14:39.059029+0000 mgr.smithi149.leptec (mgr.14197) 281 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi165.jdglth on smithi165 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: cluster 2024-03-11T23:14:39.331739+0000 mgr.smithi149.leptec (mgr.14197) 282 : cluster 0 pgmap v237: 225 pgs: 14 creating+peering, 27 unknown, 184 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 2.7 KiB/s rd, 511 B/s wr, 4 op/s 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: audit 2024-03-11T23:14:39.991645+0000 mon.smithi149 (mon.0) 883 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: cluster 2024-03-11T23:14:39.999476+0000 mon.smithi149 (mon.0) 884 : cluster 0 osdmap e56: 8 total, 8 up, 8 in 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: audit 2024-03-11T23:14:40.003602+0000 mon.smithi149 (mon.0) 885 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: cluster 2024-03-11T23:14:40.038768+0000 mon.smithi149 (mon.0) 886 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: audit 2024-03-11T23:14:40.314626+0000 mon.smithi149 (mon.0) 887 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: audit 2024-03-11T23:14:40.316783+0000 mon.smithi149 (mon.0) 888 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: audit 2024-03-11T23:14:40.994045+0000 mon.smithi149 (mon.0) 889 : audit 1 from='client.? 172.21.15.149:0/4099255439' entity='client.rgw.foorgw.smithi149.qvrzak' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-03-11T23:14:41.494 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:41 smithi149 bash[18736]: cluster 2024-03-11T23:14:41.001031+0000 mon.smithi149 (mon.0) 890 : cluster 0 osdmap e57: 8 total, 8 up, 8 in 2024-03-11T23:14:42.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:42 smithi165 bash[22892]: cluster 2024-03-11T23:14:41.332350+0000 mgr.smithi149.leptec (mgr.14197) 283 : cluster 0 pgmap v240: 225 pgs: 19 creating+peering, 19 unknown, 187 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 511 B/s wr, 4 op/s 2024-03-11T23:14:42.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:42 smithi149 bash[18736]: cluster 2024-03-11T23:14:41.332350+0000 mgr.smithi149.leptec (mgr.14197) 283 : cluster 0 pgmap v240: 225 pgs: 19 creating+peering, 19 unknown, 187 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 511 B/s wr, 4 op/s 2024-03-11T23:14:43.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:43 smithi149 bash[18736]: cluster 2024-03-11T23:14:42.005961+0000 mon.smithi149 (mon.0) 891 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-11T23:14:43.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:43 smithi149 bash[18736]: cluster 2024-03-11T23:14:42.006035+0000 mon.smithi149 (mon.0) 892 : cluster 1 Cluster is now healthy 2024-03-11T23:14:43.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:43 smithi165 bash[22892]: cluster 2024-03-11T23:14:42.005961+0000 mon.smithi149 (mon.0) 891 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-11T23:14:43.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:43 smithi165 bash[22892]: cluster 2024-03-11T23:14:42.006035+0000 mon.smithi149 (mon.0) 892 : cluster 1 Cluster is now healthy 2024-03-11T23:14:44.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:44 smithi165 bash[22892]: cluster 2024-03-11T23:14:43.333843+0000 mgr.smithi149.leptec (mgr.14197) 284 : cluster 0 pgmap v241: 225 pgs: 13 creating+peering, 3 unknown, 209 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 574 B/s wr, 4 op/s 2024-03-11T23:14:44.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:44 smithi149 bash[18736]: cluster 2024-03-11T23:14:43.333843+0000 mgr.smithi149.leptec (mgr.14197) 284 : cluster 0 pgmap v241: 225 pgs: 13 creating+peering, 3 unknown, 209 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 574 B/s wr, 4 op/s 2024-03-11T23:14:45.920 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:14:46.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:46 smithi149 bash[18736]: cluster 2024-03-11T23:14:45.335415+0000 mgr.smithi149.leptec (mgr.14197) 285 : cluster 0 pgmap v242: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 807 B/s wr, 5 op/s 2024-03-11T23:14:46.789 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:46 smithi165 bash[22892]: cluster 2024-03-11T23:14:45.335415+0000 mgr.smithi149.leptec (mgr.14197) 285 : cluster 0 pgmap v242: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 807 B/s wr, 5 op/s 2024-03-11T23:14:47.911 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:47 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:48.170 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:48 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:48.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:48 smithi165 bash[22892]: cluster 2024-03-11T23:14:47.336795+0000 mgr.smithi149.leptec (mgr.14197) 286 : cluster 0 pgmap v243: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 639 B/s wr, 4 op/s 2024-03-11T23:14:48.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:48 smithi165 bash[22892]: audit 2024-03-11T23:14:48.221000+0000 mon.smithi149 (mon.0) 893 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:48.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:48 smithi165 bash[22892]: audit 2024-03-11T23:14:48.236710+0000 mon.smithi149 (mon.0) 894 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:48.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:48 smithi165 bash[22892]: audit 2024-03-11T23:14:48.260250+0000 mon.smithi149 (mon.0) 895 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:48.681 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:48 smithi149 bash[18736]: cluster 2024-03-11T23:14:47.336795+0000 mgr.smithi149.leptec (mgr.14197) 286 : cluster 0 pgmap v243: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 639 B/s wr, 4 op/s 2024-03-11T23:14:48.681 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:48 smithi149 bash[18736]: audit 2024-03-11T23:14:48.221000+0000 mon.smithi149 (mon.0) 893 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:48.681 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:48 smithi149 bash[18736]: audit 2024-03-11T23:14:48.236710+0000 mon.smithi149 (mon.0) 894 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:48.681 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:48 smithi149 bash[18736]: audit 2024-03-11T23:14:48.260250+0000 mon.smithi149 (mon.0) 895 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:49.270 INFO:teuthology.orchestra.run.smithi149.stdout:{ 2024-03-11T23:14:49.271 INFO:teuthology.orchestra.run.smithi149.stdout: "bind": "/foobucket", 2024-03-11T23:14:49.271 INFO:teuthology.orchestra.run.smithi149.stdout: "cluster": "foo", 2024-03-11T23:14:49.271 INFO:teuthology.orchestra.run.smithi149.stdout: "mode": "RW", 2024-03-11T23:14:49.271 INFO:teuthology.orchestra.run.smithi149.stdout: "path": "foobucket", 2024-03-11T23:14:49.271 INFO:teuthology.orchestra.run.smithi149.stdout: "squash": "none" 2024-03-11T23:14:49.271 INFO:teuthology.orchestra.run.smithi149.stdout:} 2024-03-11T23:14:49.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:49 smithi165 bash[22892]: cephadm 2024-03-11T23:14:48.265110+0000 mgr.smithi149.leptec (mgr.14197) 287 : cephadm 1 10.0.31.149 is in 10.0.0.0/16 on smithi149 interface enp3s0f1 2024-03-11T23:14:49.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:49 smithi165 bash[22892]: cephadm 2024-03-11T23:14:48.265628+0000 mgr.smithi149.leptec (mgr.14197) 288 : cephadm 1 10.0.31.149 is in 10.0.0.0/16 on smithi165 interface enp3s0f1 2024-03-11T23:14:49.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:49 smithi165 bash[22892]: cephadm 2024-03-11T23:14:48.266818+0000 mgr.smithi149.leptec (mgr.14197) 289 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi149.kufkiv on smithi149 2024-03-11T23:14:49.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:49 smithi165 bash[22892]: audit 2024-03-11T23:14:48.893301+0000 mgr.smithi149.leptec (mgr.14197) 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-11T23:14:49.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:49 smithi149 bash[18736]: cephadm 2024-03-11T23:14:48.265110+0000 mgr.smithi149.leptec (mgr.14197) 287 : cephadm 1 10.0.31.149 is in 10.0.0.0/16 on smithi149 interface enp3s0f1 2024-03-11T23:14:49.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:49 smithi149 bash[18736]: cephadm 2024-03-11T23:14:48.265628+0000 mgr.smithi149.leptec (mgr.14197) 288 : cephadm 1 10.0.31.149 is in 10.0.0.0/16 on smithi165 interface enp3s0f1 2024-03-11T23:14:49.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:49 smithi149 bash[18736]: cephadm 2024-03-11T23:14:48.266818+0000 mgr.smithi149.leptec (mgr.14197) 289 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi149.kufkiv on smithi149 2024-03-11T23:14:49.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:49 smithi149 bash[18736]: audit 2024-03-11T23:14:48.893301+0000 mgr.smithi149.leptec (mgr.14197) 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-11T23:14:50.139 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-03-11T23:14:50.149 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-03-11T23:14:50.150 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph orch ls -f json 2024-03-11T23:14:50.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:50 smithi149 bash[18736]: cluster 2024-03-11T23:14:49.338037+0000 mgr.smithi149.leptec (mgr.14197) 291 : cluster 0 pgmap v244: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 986 B/s rd, 438 B/s wr, 3 op/s 2024-03-11T23:14:50.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:50 smithi165 bash[22892]: cluster 2024-03-11T23:14:49.338037+0000 mgr.smithi149.leptec (mgr.14197) 291 : cluster 0 pgmap v244: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 986 B/s rd, 438 B/s wr, 3 op/s 2024-03-11T23:14:52.709 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:52 smithi149 bash[18736]: cluster 2024-03-11T23:14:51.338797+0000 mgr.smithi149.leptec (mgr.14197) 292 : cluster 0 pgmap v245: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 2.0 KiB/s rd, 396 B/s wr, 4 op/s 2024-03-11T23:14:52.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:52 smithi165 bash[22892]: cluster 2024-03-11T23:14:51.338797+0000 mgr.smithi149.leptec (mgr.14197) 292 : cluster 0 pgmap v245: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 2.0 KiB/s rd, 396 B/s wr, 4 op/s 2024-03-11T23:14:53.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:53 smithi149 bash[18736]: audit 2024-03-11T23:14:52.568637+0000 mon.smithi149 (mon.0) 896 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:53.994 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:53 smithi165 bash[22892]: audit 2024-03-11T23:14:52.568637+0000 mon.smithi149 (mon.0) 896 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:54.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:54 smithi149 bash[18736]: cluster 2024-03-11T23:14:53.341113+0000 mgr.smithi149.leptec (mgr.14197) 293 : cluster 0 pgmap v246: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 7.6 KiB/s rd, 596 B/s wr, 11 op/s 2024-03-11T23:14:54.997 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:14:55.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:54 smithi165 bash[22892]: cluster 2024-03-11T23:14:53.341113+0000 mgr.smithi149.leptec (mgr.14197) 293 : cluster 0 pgmap v246: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 7.6 KiB/s rd, 596 B/s wr, 11 op/s 2024-03-11T23:14:56.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:56 smithi149 bash[18736]: audit 2024-03-11T23:14:55.315650+0000 mon.smithi149 (mon.0) 897 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:56.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:56 smithi149 bash[18736]: audit 2024-03-11T23:14:55.317966+0000 mon.smithi149 (mon.0) 898 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:14:56.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:56 smithi149 bash[18736]: cluster 2024-03-11T23:14:55.342678+0000 mgr.smithi149.leptec (mgr.14197) 294 : cluster 0 pgmap v247: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 596 B/s wr, 15 op/s 2024-03-11T23:14:56.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:56 smithi165 bash[22892]: audit 2024-03-11T23:14:55.315650+0000 mon.smithi149 (mon.0) 897 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:56.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:56 smithi165 bash[22892]: audit 2024-03-11T23:14:55.317966+0000 mon.smithi149 (mon.0) 898 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:14:56.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:56 smithi165 bash[22892]: cluster 2024-03-11T23:14:55.342678+0000 mgr.smithi149.leptec (mgr.14197) 294 : cluster 0 pgmap v247: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 596 B/s wr, 15 op/s 2024-03-11T23:14:57.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:57 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:57.806 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:57 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:14:59.119 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:58 smithi149 bash[18736]: cluster 2024-03-11T23:14:57.343450+0000 mgr.smithi149.leptec (mgr.14197) 295 : cluster 0 pgmap v248: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-11T23:14:59.119 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:58 smithi149 bash[18736]: audit 2024-03-11T23:14:57.851252+0000 mon.smithi149 (mon.0) 899 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:59.119 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:58 smithi149 bash[18736]: audit 2024-03-11T23:14:57.857097+0000 mon.smithi149 (mon.0) 900 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:59.119 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:58 smithi149 bash[18736]: audit 2024-03-11T23:14:57.913848+0000 mon.smithi149 (mon.0) 901 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:59.119 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:58 smithi149 bash[18736]: audit 2024-03-11T23:14:57.922240+0000 mon.smithi149 (mon.0) 902 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:59.119 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:14:58 smithi149 bash[18736]: audit 2024-03-11T23:14:57.989259+0000 mon.smithi149 (mon.0) 903 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:14:59.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:58 smithi165 bash[22892]: cluster 2024-03-11T23:14:57.343450+0000 mgr.smithi149.leptec (mgr.14197) 295 : cluster 0 pgmap v248: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-11T23:14:59.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:58 smithi165 bash[22892]: audit 2024-03-11T23:14:57.851252+0000 mon.smithi149 (mon.0) 899 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:59.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:58 smithi165 bash[22892]: audit 2024-03-11T23:14:57.857097+0000 mon.smithi149 (mon.0) 900 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:59.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:58 smithi165 bash[22892]: audit 2024-03-11T23:14:57.913848+0000 mon.smithi149 (mon.0) 901 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:59.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:58 smithi165 bash[22892]: audit 2024-03-11T23:14:57.922240+0000 mon.smithi149 (mon.0) 902 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:14:59.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:14:58 smithi165 bash[22892]: audit 2024-03-11T23:14:57.989259+0000 mon.smithi149 (mon.0) 903 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:14:59.369 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:14:59.369 INFO:teuthology.orchestra.run.smithi149.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-03-11T23:06:27.654418Z", "last_refresh": "2024-03-11T23:14:19.342735Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:08:21.576124Z service:ceph-exporter [ERROR] \"Failed while placing ceph-exporter.smithi165 on smithi165: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165\nDeploy daemon ceph-exporter.smithi165 ...\nERROR: Directory does not exist. Got: /var/run/ceph/\"", "2024-03-11T23:08:46.518756Z 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-11T23:06:19.899017Z", "last_refresh": "2024-03-11T23:14:18.042642Z", "running": 2, "size": 2}}, {"events": ["2024-03-11T23:08:25.576042Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-03-11T23:06:18.060729Z", "last_refresh": "2024-03-11T23:14:18.041972Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-03-11T23:06:23.715992Z", "last_refresh": "2024-03-11T23:14:19.342834Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:14:57.922655Z 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.149/16"}, "status": {"created": "2024-03-11T23:14:05.697594Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.149/16"}}, {"events": ["2024-03-11T23:08:29.960820Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-03-11T23:06:16.220541Z", "last_refresh": "2024-03-11T23:14:18.042305Z", "running": 2, "size": 2}}, {"events": ["2024-03-11T23:08:36.411725Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi149:172.21.15.149=smithi149", "smithi165:172.21.15.165=smithi165"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-03-11T23:08:11.220291Z", "last_refresh": "2024-03-11T23:14:18.042463Z", "running": 2, "size": 2}}, {"events": ["2024-03-11T23:14:23.629775Z 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-11T23:14:05.692011Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-03-11T23:08:26.762190Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-03-11T23:06:25.675751Z", "last_refresh": "2024-03-11T23:14:18.042115Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-03-11T23:09:04.097436Z 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-11T23:09:04.092573Z", "last_refresh": "2024-03-11T23:14:18.042763Z", "running": 8, "size": 8}}, {"events": ["2024-03-11T23:08:36.421790Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-03-11T23:06:21.806496Z", "last_refresh": "2024-03-11T23:14:19.342935Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:14:12.359398Z 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-11T23:14:12.347939Z", "last_refresh": "2024-03-11T23:14:18.043466Z", "ports": [8800], "running": 2, "size": 2}}] 2024-03-11T23:15:00.122 INFO:tasks.cephadm:nfs.foo has 0/1 2024-03-11T23:15:01.123 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph orch ls -f json 2024-03-11T23:15:01.134 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:00 smithi149 bash[18736]: cluster 2024-03-11T23:14:59.344953+0000 mgr.smithi149.leptec (mgr.14197) 296 : cluster 0 pgmap v249: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-11T23:15:01.134 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:00 smithi149 bash[18736]: audit 2024-03-11T23:14:59.352329+0000 mgr.smithi149.leptec (mgr.14197) 297 : audit 0 from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:15:01.141 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:00 smithi165 bash[22892]: cluster 2024-03-11T23:14:59.344953+0000 mgr.smithi149.leptec (mgr.14197) 296 : cluster 0 pgmap v249: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-11T23:15:01.142 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:00 smithi165 bash[22892]: audit 2024-03-11T23:14:59.352329+0000 mgr.smithi149.leptec (mgr.14197) 297 : audit 0 from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:15:03.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:02 smithi149 bash[18736]: cluster 2024-03-11T23:15:01.345660+0000 mgr.smithi149.leptec (mgr.14197) 298 : cluster 0 pgmap v250: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 9.9 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-11T23:15:03.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:02 smithi149 bash[18736]: audit 2024-03-11T23:15:02.583230+0000 mon.smithi149 (mon.0) 904 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:03.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:02 smithi165 bash[22892]: cluster 2024-03-11T23:15:01.345660+0000 mgr.smithi149.leptec (mgr.14197) 298 : cluster 0 pgmap v250: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 9.9 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-11T23:15:03.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:02 smithi165 bash[22892]: audit 2024-03-11T23:15:02.583230+0000 mon.smithi149 (mon.0) 904 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:04.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:04 smithi149 bash[18736]: cluster 2024-03-11T23:15:03.347161+0000 mgr.smithi149.leptec (mgr.14197) 299 : cluster 0 pgmap v251: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 341 B/s wr, 11 op/s 2024-03-11T23:15:04.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:04 smithi149 bash[18736]: audit 2024-03-11T23:15:03.733540+0000 mon.smithi149 (mon.0) 905 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:04.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:04 smithi149 bash[18736]: audit 2024-03-11T23:15:03.740519+0000 mon.smithi149 (mon.0) 906 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:05.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:04 smithi165 bash[22892]: cluster 2024-03-11T23:15:03.347161+0000 mgr.smithi149.leptec (mgr.14197) 299 : cluster 0 pgmap v251: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 341 B/s wr, 11 op/s 2024-03-11T23:15:05.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:04 smithi165 bash[22892]: audit 2024-03-11T23:15:03.733540+0000 mon.smithi149 (mon.0) 905 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:05.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:04 smithi165 bash[22892]: audit 2024-03-11T23:15:03.740519+0000 mon.smithi149 (mon.0) 906 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:05.741 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:15:06.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:05 smithi149 bash[18736]: audit 2024-03-11T23:15:04.900670+0000 mon.smithi149 (mon.0) 907 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:06.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:05 smithi149 bash[18736]: audit 2024-03-11T23:15:04.906436+0000 mon.smithi149 (mon.0) 908 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:06.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:05 smithi149 bash[18736]: audit 2024-03-11T23:15:05.473737+0000 mon.smithi149 (mon.0) 909 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:15:06.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:05 smithi149 bash[18736]: audit 2024-03-11T23:15:05.475559+0000 mon.smithi149 (mon.0) 910 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:15:06.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:05 smithi149 bash[18736]: audit 2024-03-11T23:15:05.484365+0000 mon.smithi149 (mon.0) 911 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:06.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:05 smithi149 bash[18736]: audit 2024-03-11T23:15:05.492709+0000 mon.smithi149 (mon.0) 912 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:15:06.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:05 smithi149 bash[18736]: audit 2024-03-11T23:15:05.514341+0000 mon.smithi149 (mon.0) 913 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:06.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:05 smithi165 bash[22892]: audit 2024-03-11T23:15:04.900670+0000 mon.smithi149 (mon.0) 907 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:06.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:05 smithi165 bash[22892]: audit 2024-03-11T23:15:04.906436+0000 mon.smithi149 (mon.0) 908 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:06.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:05 smithi165 bash[22892]: audit 2024-03-11T23:15:05.473737+0000 mon.smithi149 (mon.0) 909 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:15:06.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:05 smithi165 bash[22892]: audit 2024-03-11T23:15:05.475559+0000 mon.smithi149 (mon.0) 910 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:15:06.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:05 smithi165 bash[22892]: audit 2024-03-11T23:15:05.484365+0000 mon.smithi149 (mon.0) 911 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:06.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:05 smithi165 bash[22892]: audit 2024-03-11T23:15:05.492709+0000 mon.smithi149 (mon.0) 912 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:15:06.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:05 smithi165 bash[22892]: audit 2024-03-11T23:15:05.514341+0000 mon.smithi149 (mon.0) 913 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:07.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:06 smithi149 bash[18736]: cluster 2024-03-11T23:15:05.347957+0000 mgr.smithi149.leptec (mgr.14197) 300 : cluster 0 pgmap v252: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 3.1 KiB/s rd, 85 B/s wr, 3 op/s 2024-03-11T23:15:07.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:06 smithi149 bash[18736]: cephadm 2024-03-11T23:15:05.585890+0000 mgr.smithi149.leptec (mgr.14197) 301 : cephadm 1 Reconfiguring prometheus.smithi149 (dependencies changed)... 2024-03-11T23:15:07.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:06 smithi149 bash[18736]: cephadm 2024-03-11T23:15:05.865777+0000 mgr.smithi149.leptec (mgr.14197) 302 : cephadm 1 Reconfiguring daemon prometheus.smithi149 on smithi149 2024-03-11T23:15:07.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:06 smithi165 bash[22892]: cluster 2024-03-11T23:15:05.347957+0000 mgr.smithi149.leptec (mgr.14197) 300 : cluster 0 pgmap v252: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 3.1 KiB/s rd, 85 B/s wr, 3 op/s 2024-03-11T23:15:07.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:06 smithi165 bash[22892]: cephadm 2024-03-11T23:15:05.585890+0000 mgr.smithi149.leptec (mgr.14197) 301 : cephadm 1 Reconfiguring prometheus.smithi149 (dependencies changed)... 2024-03-11T23:15:07.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:06 smithi165 bash[22892]: cephadm 2024-03-11T23:15:05.865777+0000 mgr.smithi149.leptec (mgr.14197) 302 : cephadm 1 Reconfiguring daemon prometheus.smithi149 on smithi149 2024-03-11T23:15:09.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:08 smithi149 bash[18736]: cluster 2024-03-11T23:15:07.348917+0000 mgr.smithi149.leptec (mgr.14197) 303 : cluster 0 pgmap v253: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-03-11T23:15:09.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:08 smithi165 bash[22892]: cluster 2024-03-11T23:15:07.348917+0000 mgr.smithi149.leptec (mgr.14197) 303 : cluster 0 pgmap v253: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-03-11T23:15:10.138 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:15:10.138 INFO:teuthology.orchestra.run.smithi149.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-03-11T23:06:27.654418Z", "last_refresh": "2024-03-11T23:15:04.892251Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:08:21.576124Z service:ceph-exporter [ERROR] \"Failed while placing ceph-exporter.smithi165 on smithi165: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165\nDeploy daemon ceph-exporter.smithi165 ...\nERROR: Directory does not exist. Got: /var/run/ceph/\"", "2024-03-11T23:08:46.518756Z 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-11T23:06:19.899017Z", "last_refresh": "2024-03-11T23:15:03.725475Z", "running": 2, "size": 2}}, {"events": ["2024-03-11T23:08:25.576042Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-03-11T23:06:18.060729Z", "last_refresh": "2024-03-11T23:15:03.724835Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-03-11T23:06:23.715992Z", "last_refresh": "2024-03-11T23:15:04.892360Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:14:57.922655Z 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.149/16"}, "status": {"created": "2024-03-11T23:14:05.697594Z", "last_refresh": "2024-03-11T23:15:03.726571Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.149/16"}}, {"events": ["2024-03-11T23:08:29.960820Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-03-11T23:06:16.220541Z", "last_refresh": "2024-03-11T23:15:03.725220Z", "running": 2, "size": 2}}, {"events": ["2024-03-11T23:08:36.411725Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi149:172.21.15.149=smithi149", "smithi165:172.21.15.165=smithi165"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-03-11T23:08:11.220291Z", "last_refresh": "2024-03-11T23:15:03.725358Z", "running": 2, "size": 2}}, {"events": ["2024-03-11T23:15:05.514884Z 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-11T23:14:05.692011Z", "last_refresh": "2024-03-11T23:15:04.893114Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:08:26.762190Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-03-11T23:06:25.675751Z", "last_refresh": "2024-03-11T23:15:03.725023Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-03-11T23:09:04.097436Z 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-11T23:09:04.092573Z", "last_refresh": "2024-03-11T23:15:03.725634Z", "running": 8, "size": 8}}, {"events": ["2024-03-11T23:08:36.421790Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-03-11T23:06:21.806496Z", "last_refresh": "2024-03-11T23:15:04.892467Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:14:12.359398Z 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-11T23:14:12.347939Z", "last_refresh": "2024-03-11T23:15:03.726377Z", "ports": [8800], "running": 2, "size": 2}}] 2024-03-11T23:15:11.180 INFO:tasks.cephadm:nfs.foo has 1/1 2024-03-11T23:15:11.180 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-03-11T23:15:11.190 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-03-11T23:15:11.191 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- ceph orch ls -f json 2024-03-11T23:15:11.231 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:10 smithi149 bash[18736]: cluster 2024-03-11T23:15:09.350416+0000 mgr.smithi149.leptec (mgr.14197) 304 : cluster 0 pgmap v254: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-03-11T23:15:11.232 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:10 smithi149 bash[18736]: audit 2024-03-11T23:15:10.287349+0000 mon.smithi149 (mon.0) 914 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]: dispatch 2024-03-11T23:15:11.232 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:10 smithi149 bash[18736]: audit 2024-03-11T23:15:10.287808+0000 mon.smithi149 (mon.0) 915 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]}]: dispatch 2024-03-11T23:15:11.232 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:10 smithi149 bash[18736]: audit 2024-03-11T23:15:10.309520+0000 mon.smithi149 (mon.0) 916 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:15:11.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:10 smithi165 bash[22892]: cluster 2024-03-11T23:15:09.350416+0000 mgr.smithi149.leptec (mgr.14197) 304 : cluster 0 pgmap v254: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-03-11T23:15:11.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:10 smithi165 bash[22892]: audit 2024-03-11T23:15:10.287349+0000 mon.smithi149 (mon.0) 914 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]: dispatch 2024-03-11T23:15:11.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:10 smithi165 bash[22892]: audit 2024-03-11T23:15:10.287808+0000 mon.smithi149 (mon.0) 915 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]}]: dispatch 2024-03-11T23:15:11.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:10 smithi165 bash[22892]: audit 2024-03-11T23:15:10.309520+0000 mon.smithi149 (mon.0) 916 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:15:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:11 smithi165 bash[22892]: audit 2024-03-11T23:15:10.132939+0000 mgr.smithi149.leptec (mgr.14197) 305 : audit 0 from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:15:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:11 smithi165 bash[22892]: audit 2024-03-11T23:15:10.918171+0000 mon.smithi149 (mon.0) 917 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]': finished 2024-03-11T23:15:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:11 smithi165 bash[22892]: audit 2024-03-11T23:15:10.918344+0000 mon.smithi149 (mon.0) 918 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]}]': finished 2024-03-11T23:15:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:11 smithi165 bash[22892]: cluster 2024-03-11T23:15:10.924574+0000 mon.smithi149 (mon.0) 919 : cluster 0 osdmap e58: 8 total, 8 up, 8 in 2024-03-11T23:15:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:11 smithi165 bash[22892]: audit 2024-03-11T23:15:11.864921+0000 mon.smithi149 (mon.0) 920 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:11 smithi165 bash[22892]: audit 2024-03-11T23:15:11.871863+0000 mon.smithi149 (mon.0) 921 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:11 smithi165 bash[22892]: audit 2024-03-11T23:15:11.898237+0000 mon.smithi149 (mon.0) 922 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:15:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:11 smithi165 bash[22892]: audit 2024-03-11T23:15:11.906735+0000 mon.smithi149 (mon.0) 923 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:15:12.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:11 smithi165 bash[22892]: cluster 2024-03-11T23:15:11.925494+0000 mon.smithi149 (mon.0) 924 : cluster 0 osdmap e59: 8 total, 8 up, 8 in 2024-03-11T23:15:12.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:11 smithi149 bash[18736]: audit 2024-03-11T23:15:10.132939+0000 mgr.smithi149.leptec (mgr.14197) 305 : audit 0 from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:15:12.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:11 smithi149 bash[18736]: audit 2024-03-11T23:15:10.918171+0000 mon.smithi149 (mon.0) 917 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]': finished 2024-03-11T23:15:12.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:11 smithi149 bash[18736]: audit 2024-03-11T23:15:10.918344+0000 mon.smithi149 (mon.0) 918 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]}]': finished 2024-03-11T23:15:12.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:11 smithi149 bash[18736]: cluster 2024-03-11T23:15:10.924574+0000 mon.smithi149 (mon.0) 919 : cluster 0 osdmap e58: 8 total, 8 up, 8 in 2024-03-11T23:15:12.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:11 smithi149 bash[18736]: audit 2024-03-11T23:15:11.864921+0000 mon.smithi149 (mon.0) 920 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:12.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:11 smithi149 bash[18736]: audit 2024-03-11T23:15:11.871863+0000 mon.smithi149 (mon.0) 921 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:12.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:11 smithi149 bash[18736]: audit 2024-03-11T23:15:11.898237+0000 mon.smithi149 (mon.0) 922 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:15:12.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:11 smithi149 bash[18736]: audit 2024-03-11T23:15:11.906735+0000 mon.smithi149 (mon.0) 923 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:15:12.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:11 smithi149 bash[18736]: cluster 2024-03-11T23:15:11.925494+0000 mon.smithi149 (mon.0) 924 : cluster 0 osdmap e59: 8 total, 8 up, 8 in 2024-03-11T23:15:13.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:12 smithi149 bash[18736]: cluster 2024-03-11T23:15:11.350893+0000 mgr.smithi149.leptec (mgr.14197) 306 : cluster 0 pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-03-11T23:15:13.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:12 smithi149 bash[18736]: audit 2024-03-11T23:15:11.898727+0000 mgr.smithi149.leptec (mgr.14197) 307 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:15:13.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:12 smithi165 bash[22892]: cluster 2024-03-11T23:15:11.350893+0000 mgr.smithi149.leptec (mgr.14197) 306 : cluster 0 pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-03-11T23:15:13.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:12 smithi165 bash[22892]: audit 2024-03-11T23:15:11.898727+0000 mgr.smithi149.leptec (mgr.14197) 307 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:15:15.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:14 smithi149 bash[18736]: cluster 2024-03-11T23:15:13.352194+0000 mgr.smithi149.leptec (mgr.14197) 308 : cluster 0 pgmap v258: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-03-11T23:15:15.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:14 smithi165 bash[22892]: cluster 2024-03-11T23:15:13.352194+0000 mgr.smithi149.leptec (mgr.14197) 308 : cluster 0 pgmap v258: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-03-11T23:15:17.042 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:15:17.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:16 smithi149 bash[18736]: cluster 2024-03-11T23:15:15.353835+0000 mgr.smithi149.leptec (mgr.14197) 309 : cluster 0 pgmap v259: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-03-11T23:15:17.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:16 smithi165 bash[22892]: cluster 2024-03-11T23:15:15.353835+0000 mgr.smithi149.leptec (mgr.14197) 309 : cluster 0 pgmap v259: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-03-11T23:15:18.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:18 smithi149 bash[18736]: cluster 2024-03-11T23:15:17.354675+0000 mgr.smithi149.leptec (mgr.14197) 310 : cluster 0 pgmap v260: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:15:18.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:18 smithi149 bash[18736]: audit 2024-03-11T23:15:17.698034+0000 mon.smithi149 (mon.0) 925 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:18.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:18 smithi149 bash[18736]: audit 2024-03-11T23:15:17.707767+0000 mon.smithi149 (mon.0) 926 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:18.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:18 smithi149 bash[18736]: audit 2024-03-11T23:15:18.248612+0000 mon.smithi149 (mon.0) 927 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:18.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:18 smithi149 bash[18736]: audit 2024-03-11T23:15:18.254210+0000 mon.smithi149 (mon.0) 928 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:18.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:18 smithi149 bash[18736]: audit 2024-03-11T23:15:18.255653+0000 mon.smithi149 (mon.0) 929 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:15:18.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:18 smithi149 bash[18736]: audit 2024-03-11T23:15:18.256554+0000 mon.smithi149 (mon.0) 930 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:15:18.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:18 smithi149 bash[18736]: audit 2024-03-11T23:15:18.524500+0000 mon.smithi149 (mon.0) 931 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:18.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:18 smithi149 bash[18736]: audit 2024-03-11T23:15:18.528316+0000 mon.smithi149 (mon.0) 932 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:15:18.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:18 smithi149 bash[18736]: audit 2024-03-11T23:15:18.542033+0000 mon.smithi149 (mon.0) 933 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:19.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:18 smithi165 bash[22892]: cluster 2024-03-11T23:15:17.354675+0000 mgr.smithi149.leptec (mgr.14197) 310 : cluster 0 pgmap v260: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:15:19.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:18 smithi165 bash[22892]: audit 2024-03-11T23:15:17.698034+0000 mon.smithi149 (mon.0) 925 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:19.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:18 smithi165 bash[22892]: audit 2024-03-11T23:15:17.707767+0000 mon.smithi149 (mon.0) 926 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:19.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:18 smithi165 bash[22892]: audit 2024-03-11T23:15:18.248612+0000 mon.smithi149 (mon.0) 927 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:19.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:18 smithi165 bash[22892]: audit 2024-03-11T23:15:18.254210+0000 mon.smithi149 (mon.0) 928 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:19.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:18 smithi165 bash[22892]: audit 2024-03-11T23:15:18.255653+0000 mon.smithi149 (mon.0) 929 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:15:19.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:18 smithi165 bash[22892]: audit 2024-03-11T23:15:18.256554+0000 mon.smithi149 (mon.0) 930 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:15:19.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:18 smithi165 bash[22892]: audit 2024-03-11T23:15:18.524500+0000 mon.smithi149 (mon.0) 931 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:19.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:18 smithi165 bash[22892]: audit 2024-03-11T23:15:18.528316+0000 mon.smithi149 (mon.0) 932 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:15:19.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:18 smithi165 bash[22892]: audit 2024-03-11T23:15:18.542033+0000 mon.smithi149 (mon.0) 933 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:19.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:19 smithi149 bash[18736]: cephadm 2024-03-11T23:15:18.260894+0000 mgr.smithi149.leptec (mgr.14197) 311 : cephadm 1 Checking dashboard <-> RGW credentials 2024-03-11T23:15:19.885 INFO:teuthology.orchestra.run.smithi149.stdout: 2024-03-11T23:15:19.885 INFO:teuthology.orchestra.run.smithi149.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-03-11T23:06:27.654418Z", "last_refresh": "2024-03-11T23:15:18.241751Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:08:21.576124Z service:ceph-exporter [ERROR] \"Failed while placing ceph-exporter.smithi165 on smithi165: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter-smithi165\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-ceph-exporter.smithi165\nDeploy daemon ceph-exporter.smithi165 ...\nERROR: Directory does not exist. Got: /var/run/ceph/\"", "2024-03-11T23:08:46.518756Z 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-11T23:06:19.899017Z", "last_refresh": "2024-03-11T23:15:17.686826Z", "running": 2, "size": 2}}, {"events": ["2024-03-11T23:08:25.576042Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-03-11T23:06:18.060729Z", "last_refresh": "2024-03-11T23:15:17.685874Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-03-11T23:06:23.715992Z", "last_refresh": "2024-03-11T23:15:18.241857Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:14:57.922655Z 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.149/16"}, "status": {"created": "2024-03-11T23:14:05.697594Z", "last_refresh": "2024-03-11T23:15:17.688211Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.149/16"}}, {"events": ["2024-03-11T23:08:29.960820Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-03-11T23:06:16.220541Z", "last_refresh": "2024-03-11T23:15:17.686372Z", "running": 2, "size": 2}}, {"events": ["2024-03-11T23:08:36.411725Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi149:172.21.15.149=smithi149", "smithi165:172.21.15.165=smithi165"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-03-11T23:08:11.220291Z", "last_refresh": "2024-03-11T23:15:17.686600Z", "running": 2, "size": 2}}, {"events": ["2024-03-11T23:15:18.542260Z 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-11T23:14:05.692011Z", "last_refresh": "2024-03-11T23:15:18.242613Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:08:26.762190Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-03-11T23:06:25.675751Z", "last_refresh": "2024-03-11T23:15:17.686139Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-03-11T23:09:04.097436Z 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-11T23:09:04.092573Z", "last_refresh": "2024-03-11T23:15:17.687050Z", "running": 8, "size": 8}}, {"events": ["2024-03-11T23:08:36.421790Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-03-11T23:06:21.806496Z", "last_refresh": "2024-03-11T23:15:18.241964Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-03-11T23:14:12.359398Z 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-11T23:14:12.347939Z", "last_refresh": "2024-03-11T23:15:17.687954Z", "ports": [8800], "running": 2, "size": 2}}] 2024-03-11T23:15:20.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:19 smithi165 bash[22892]: cephadm 2024-03-11T23:15:18.260894+0000 mgr.smithi149.leptec (mgr.14197) 311 : cephadm 1 Checking dashboard <-> RGW credentials 2024-03-11T23:15:20.627 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-03-11T23:15:20.627 INFO:teuthology.run_tasks:Running task vip.exec... 2024-03-11T23:15:20.639 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:15:20.639 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-03-11T23:15:20.682 INFO:teuthology.orchestra.run.smithi149.stderr:+ mkdir /mnt/foo 2024-03-11T23:15:20.695 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-03-11T23:15:20.750 INFO:teuthology.orchestra.run.smithi149.stderr:+ sleep 5 2024-03-11T23:15:20.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:20 smithi149 bash[18736]: cluster 2024-03-11T23:15:19.356653+0000 mgr.smithi149.leptec (mgr.14197) 312 : cluster 0 pgmap v261: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 1 op/s 2024-03-11T23:15:20.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:20 smithi149 bash[18736]: audit 2024-03-11T23:15:19.867426+0000 mgr.smithi149.leptec (mgr.14197) 313 : audit 0 from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:15:21.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:20 smithi165 bash[22892]: cluster 2024-03-11T23:15:19.356653+0000 mgr.smithi149.leptec (mgr.14197) 312 : cluster 0 pgmap v261: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 1 op/s 2024-03-11T23:15:21.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:20 smithi165 bash[22892]: audit 2024-03-11T23:15:19.867426+0000 mgr.smithi149.leptec (mgr.14197) 313 : audit 0 from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-11T23:15:22.992 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:22 smithi149 bash[18736]: cluster 2024-03-11T23:15:21.357680+0000 mgr.smithi149.leptec (mgr.14197) 314 : cluster 0 pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 1 op/s 2024-03-11T23:15:23.060 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:22 smithi165 bash[22892]: cluster 2024-03-11T23:15:21.357680+0000 mgr.smithi149.leptec (mgr.14197) 314 : cluster 0 pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 1 op/s 2024-03-11T23:15:24.992 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:24 smithi149 bash[18736]: cluster 2024-03-11T23:15:23.359297+0000 mgr.smithi149.leptec (mgr.14197) 315 : cluster 0 pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2024-03-11T23:15:25.058 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:24 smithi165 bash[22892]: cluster 2024-03-11T23:15:23.359297+0000 mgr.smithi149.leptec (mgr.14197) 315 : cluster 0 pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2024-03-11T23:15:25.753 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.149:/foobucket /mnt/foo' 2024-03-11T23:15:25.806 INFO:teuthology.orchestra.run.smithi149.stderr:+ mount -t nfs 10.0.31.149:/foobucket /mnt/foo 2024-03-11T23:15:25.992 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:25 smithi149 bash[18736]: audit 2024-03-11T23:15:25.311251+0000 mon.smithi149 (mon.0) 934 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:15:26.058 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:25 smithi165 bash[22892]: audit 2024-03-11T23:15:25.311251+0000 mon.smithi149 (mon.0) 934 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:15:26.141 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-03-11T23:15:26.194 INFO:teuthology.orchestra.run.smithi149.stderr:+ find /mnt/foo -ls 2024-03-11T23:15:26.202 INFO:teuthology.orchestra.run.smithi149.stdout:18304478605914051910 0 drwxrwxrwx 1 root root 0 Mar 11 23:14 /mnt/foo 2024-03-11T23:15:26.203 INFO:teuthology.orchestra.run.smithi149.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Mar 11 23:14 /mnt/foo/myobject 2024-03-11T23:15:26.204 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/myobject' 2024-03-11T23:15:26.257 INFO:teuthology.orchestra.run.smithi149.stderr:+ grep thebody /mnt/foo/myobject 2024-03-11T23:15:26.262 INFO:teuthology.orchestra.run.smithi149.stdout:thebody 2024-03-11T23:15:26.263 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/newobject' 2024-03-11T23:15:26.316 INFO:teuthology.orchestra.run.smithi149.stderr:+ echo test 2024-03-11T23:15:26.342 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-03-11T23:15:26.402 INFO:teuthology.orchestra.run.smithi149.stderr:+ sync 2024-03-11T23:15:26.786 INFO:teuthology.run_tasks:Running task python... 2024-03-11T23:15:26.796 INFO:tasks.python:Running python on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:15:26.796 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-11T23:15:26.797 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-03-11T23:15:26.992 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:26 smithi149 bash[18736]: cluster 2024-03-11T23:15:25.377835+0000 mgr.smithi149.leptec (mgr.14197) 316 : cluster 0 pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-03-11T23:15:27.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:26 smithi165 bash[22892]: cluster 2024-03-11T23:15:25.377835+0000 mgr.smithi149.leptec (mgr.14197) 316 : cluster 0 pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-03-11T23:15:27.123 INFO:teuthology.orchestra.run.smithi149.stdout:b'test\n' 2024-03-11T23:15:27.177 INFO:teuthology.run_tasks:Running task vip.exec... 2024-03-11T23:15:27.193 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:15:27.193 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-03-11T23:15:27.206 INFO:teuthology.orchestra.run.smithi149.stderr:+ umount /mnt/foo 2024-03-11T23:15:27.244 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-11T23:15:27.255 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:15:27.256 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph nfs export rm foo /foobucket' 2024-03-11T23:15:28.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:28 smithi149 bash[18736]: cluster 2024-03-11T23:15:27.379171+0000 mgr.smithi149.leptec (mgr.14197) 317 : cluster 0 pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 85 B/s wr, 3 op/s 2024-03-11T23:15:29.058 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:28 smithi165 bash[22892]: cluster 2024-03-11T23:15:27.379171+0000 mgr.smithi149.leptec (mgr.14197) 317 : cluster 0 pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 85 B/s wr, 3 op/s 2024-03-11T23:15:30.993 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:30 smithi149 bash[18736]: cluster 2024-03-11T23:15:29.381061+0000 mgr.smithi149.leptec (mgr.14197) 318 : cluster 0 pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 510 B/s wr, 10 op/s 2024-03-11T23:15:31.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:30 smithi165 bash[22892]: cluster 2024-03-11T23:15:29.381061+0000 mgr.smithi149.leptec (mgr.14197) 318 : cluster 0 pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 510 B/s wr, 10 op/s 2024-03-11T23:15:32.130 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:15:32.992 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:32 smithi149 bash[18736]: cluster 2024-03-11T23:15:31.382092+0000 mgr.smithi149.leptec (mgr.14197) 319 : cluster 0 pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 8.3 KiB/s rd, 510 B/s wr, 11 op/s 2024-03-11T23:15:33.063 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:32 smithi165 bash[22892]: cluster 2024-03-11T23:15:31.382092+0000 mgr.smithi149.leptec (mgr.14197) 319 : cluster 0 pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 8.3 KiB/s rd, 510 B/s wr, 11 op/s 2024-03-11T23:15:35.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:34 smithi165 bash[22892]: cluster 2024-03-11T23:15:33.383611+0000 mgr.smithi149.leptec (mgr.14197) 320 : cluster 0 pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 8.3 KiB/s rd, 510 B/s wr, 11 op/s 2024-03-11T23:15:35.084 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:34 smithi149 bash[18736]: cluster 2024-03-11T23:15:33.383611+0000 mgr.smithi149.leptec (mgr.14197) 320 : cluster 0 pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 8.3 KiB/s rd, 510 B/s wr, 11 op/s 2024-03-11T23:15:35.626 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph nfs cluster rm foo' 2024-03-11T23:15:35.992 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:35 smithi149 bash[18736]: audit 2024-03-11T23:15:34.865961+0000 mgr.smithi149.leptec (mgr.14197) 321 : audit 0 from='client.14658 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:15:36.058 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:35 smithi165 bash[22892]: audit 2024-03-11T23:15:34.865961+0000 mgr.smithi149.leptec (mgr.14197) 321 : audit 0 from='client.14658 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:15:37.058 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:36 smithi165 bash[22892]: cluster 2024-03-11T23:15:35.385215+0000 mgr.smithi149.leptec (mgr.14197) 322 : cluster 0 pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.8 KiB/s rd, 510 B/s wr, 10 op/s 2024-03-11T23:15:37.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:36 smithi149 bash[18736]: cluster 2024-03-11T23:15:35.385215+0000 mgr.smithi149.leptec (mgr.14197) 322 : cluster 0 pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.8 KiB/s rd, 510 B/s wr, 10 op/s 2024-03-11T23:15:39.058 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:38 smithi165 bash[22892]: cluster 2024-03-11T23:15:37.386606+0000 mgr.smithi149.leptec (mgr.14197) 323 : cluster 0 pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 511 B/s wr, 10 op/s 2024-03-11T23:15:39.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:38 smithi149 bash[18736]: cluster 2024-03-11T23:15:37.386606+0000 mgr.smithi149.leptec (mgr.14197) 323 : cluster 0 pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 511 B/s wr, 10 op/s 2024-03-11T23:15:40.469 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:15:41.058 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:40 smithi165 bash[22892]: cluster 2024-03-11T23:15:39.388165+0000 mgr.smithi149.leptec (mgr.14197) 324 : cluster 0 pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 5.7 KiB/s rd, 426 B/s wr, 8 op/s 2024-03-11T23:15:41.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:40 smithi165 bash[22892]: audit 2024-03-11T23:15:40.311108+0000 mon.smithi149 (mon.0) 935 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:15:41.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:40 smithi149 bash[18736]: cluster 2024-03-11T23:15:39.388165+0000 mgr.smithi149.leptec (mgr.14197) 324 : cluster 0 pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 5.7 KiB/s rd, 426 B/s wr, 8 op/s 2024-03-11T23:15:41.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:40 smithi149 bash[18736]: audit 2024-03-11T23:15:40.311108+0000 mon.smithi149 (mon.0) 935 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:15:43.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:42 smithi165 bash[22892]: cluster 2024-03-11T23:15:41.388815+0000 mgr.smithi149.leptec (mgr.14197) 325 : cluster 0 pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 0 B/s wr, 1 op/s 2024-03-11T23:15:43.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:42 smithi149 bash[18736]: cluster 2024-03-11T23:15:41.388815+0000 mgr.smithi149.leptec (mgr.14197) 325 : cluster 0 pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 0 B/s wr, 1 op/s 2024-03-11T23:15:43.958 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-11T23:15:43.969 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:15:43.969 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-03-11T23:15:44.492 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:44 smithi149 bash[18736]: audit 2024-03-11T23:15:43.206334+0000 mgr.smithi149.leptec (mgr.14197) 326 : audit 0 from='client.14662 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:15:44.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:44 smithi149 bash[18736]: cephadm 2024-03-11T23:15:43.214658+0000 mgr.smithi149.leptec (mgr.14197) 327 : cephadm 1 Remove service ingress.nfs.foo 2024-03-11T23:15:44.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:44 smithi149 bash[18736]: audit 2024-03-11T23:15:43.221079+0000 mon.smithi149 (mon.0) 936 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:44.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:44 smithi149 bash[18736]: cephadm 2024-03-11T23:15:43.222245+0000 mgr.smithi149.leptec (mgr.14197) 328 : cephadm 1 Remove service nfs.foo 2024-03-11T23:15:44.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:44 smithi149 bash[18736]: audit 2024-03-11T23:15:43.227966+0000 mon.smithi149 (mon.0) 937 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:44.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:44 smithi149 bash[18736]: audit 2024-03-11T23:15:43.235696+0000 mon.smithi149 (mon.0) 938 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:15:44.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:44 smithi149 bash[18736]: cluster 2024-03-11T23:15:43.390229+0000 mgr.smithi149.leptec (mgr.14197) 329 : cluster 0 pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-03-11T23:15:44.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:44 smithi165 bash[22892]: audit 2024-03-11T23:15:43.206334+0000 mgr.smithi149.leptec (mgr.14197) 326 : audit 0 from='client.14662 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:15:44.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:44 smithi165 bash[22892]: cephadm 2024-03-11T23:15:43.214658+0000 mgr.smithi149.leptec (mgr.14197) 327 : cephadm 1 Remove service ingress.nfs.foo 2024-03-11T23:15:44.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:44 smithi165 bash[22892]: audit 2024-03-11T23:15:43.221079+0000 mon.smithi149 (mon.0) 936 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:44.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:44 smithi165 bash[22892]: cephadm 2024-03-11T23:15:43.222245+0000 mgr.smithi149.leptec (mgr.14197) 328 : cephadm 1 Remove service nfs.foo 2024-03-11T23:15:44.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:44 smithi165 bash[22892]: audit 2024-03-11T23:15:43.227966+0000 mon.smithi149 (mon.0) 937 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:44.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:44 smithi165 bash[22892]: audit 2024-03-11T23:15:43.235696+0000 mon.smithi149 (mon.0) 938 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:15:44.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:44 smithi165 bash[22892]: cluster 2024-03-11T23:15:43.390229+0000 mgr.smithi149.leptec (mgr.14197) 329 : cluster 0 pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-03-11T23:15:47.058 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:46 smithi165 bash[22892]: cluster 2024-03-11T23:15:45.391741+0000 mgr.smithi149.leptec (mgr.14197) 330 : cluster 0 pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-03-11T23:15:47.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:46 smithi149 bash[18736]: cluster 2024-03-11T23:15:45.391741+0000 mgr.smithi149.leptec (mgr.14197) 330 : cluster 0 pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-03-11T23:15:48.293 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:15:49.059 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:48 smithi165 bash[22892]: cluster 2024-03-11T23:15:47.393184+0000 mgr.smithi149.leptec (mgr.14197) 331 : cluster 0 pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-03-11T23:15:49.196 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:48 smithi149 bash[18736]: cluster 2024-03-11T23:15:47.393184+0000 mgr.smithi149.leptec (mgr.14197) 331 : cluster 0 pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-03-11T23:15:50.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:49 smithi149 bash[18736]: audit 2024-03-11T23:15:48.983507+0000 mon.smithi149 (mon.0) 939 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:50.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:49 smithi149 bash[18736]: audit 2024-03-11T23:15:48.996507+0000 mon.smithi149 (mon.0) 940 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:50.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:49 smithi149 bash[18736]: audit 2024-03-11T23:15:49.535713+0000 mon.smithi149 (mon.0) 941 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:50.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:49 smithi149 bash[18736]: audit 2024-03-11T23:15:49.546096+0000 mon.smithi149 (mon.0) 942 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:50.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:49 smithi149 bash[18736]: audit 2024-03-11T23:15:49.548434+0000 mon.smithi149 (mon.0) 943 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:15:50.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:49 smithi149 bash[18736]: audit 2024-03-11T23:15:49.550028+0000 mon.smithi149 (mon.0) 944 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:15:50.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:49 smithi149 bash[18736]: audit 2024-03-11T23:15:49.557284+0000 mon.smithi149 (mon.0) 945 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:50.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:49 smithi149 bash[18736]: audit 2024-03-11T23:15:49.560518+0000 mon.smithi149 (mon.0) 946 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:15:50.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:49 smithi165 bash[22892]: audit 2024-03-11T23:15:48.983507+0000 mon.smithi149 (mon.0) 939 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:50.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:49 smithi165 bash[22892]: audit 2024-03-11T23:15:48.996507+0000 mon.smithi149 (mon.0) 940 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:50.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:49 smithi165 bash[22892]: audit 2024-03-11T23:15:49.535713+0000 mon.smithi149 (mon.0) 941 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:50.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:49 smithi165 bash[22892]: audit 2024-03-11T23:15:49.546096+0000 mon.smithi149 (mon.0) 942 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:50.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:49 smithi165 bash[22892]: audit 2024-03-11T23:15:49.548434+0000 mon.smithi149 (mon.0) 943 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:15:50.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:49 smithi165 bash[22892]: audit 2024-03-11T23:15:49.550028+0000 mon.smithi149 (mon.0) 944 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:15:50.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:49 smithi165 bash[22892]: audit 2024-03-11T23:15:49.557284+0000 mon.smithi149 (mon.0) 945 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:15:50.310 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:49 smithi165 bash[22892]: audit 2024-03-11T23:15:49.560518+0000 mon.smithi149 (mon.0) 946 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:15:51.035 INFO:teuthology.orchestra.run.smithi149.stdout:167 167 2024-03-11T23:15:51.232 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:50 smithi149 bash[18736]: cluster 2024-03-11T23:15:49.394008+0000 mgr.smithi149.leptec (mgr.14197) 332 : cluster 0 pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 B/s wr, 0 op/s 2024-03-11T23:15:51.232 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:50 smithi149 bash[18736]: cephadm 2024-03-11T23:15:49.634996+0000 mgr.smithi149.leptec (mgr.14197) 333 : cephadm 1 Removing orphan daemon nfs.foo.0.0.smithi149.vojmek... 2024-03-11T23:15:51.232 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:50 smithi149 bash[18736]: cephadm 2024-03-11T23:15:49.635200+0000 mgr.smithi149.leptec (mgr.14197) 334 : cephadm 1 Removing daemon nfs.foo.0.0.smithi149.vojmek from smithi149 -- ports [12049] 2024-03-11T23:15:51.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:50 smithi165 bash[22892]: cluster 2024-03-11T23:15:49.394008+0000 mgr.smithi149.leptec (mgr.14197) 332 : cluster 0 pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 B/s wr, 0 op/s 2024-03-11T23:15:51.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:50 smithi165 bash[22892]: cephadm 2024-03-11T23:15:49.634996+0000 mgr.smithi149.leptec (mgr.14197) 333 : cephadm 1 Removing orphan daemon nfs.foo.0.0.smithi149.vojmek... 2024-03-11T23:15:51.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:50 smithi165 bash[22892]: cephadm 2024-03-11T23:15:49.635200+0000 mgr.smithi149.leptec (mgr.14197) 334 : cephadm 1 Removing daemon nfs.foo.0.0.smithi149.vojmek from smithi149 -- ports [12049] 2024-03-11T23:15:51.793 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch status' 2024-03-11T23:15:53.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:52 smithi165 bash[22892]: cluster 2024-03-11T23:15:51.395003+0000 mgr.smithi149.leptec (mgr.14197) 335 : cluster 0 pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-03-11T23:15:53.492 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:53 smithi149 bash[18736]: cluster 2024-03-11T23:15:51.395003+0000 mgr.smithi149.leptec (mgr.14197) 335 : cluster 0 pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-03-11T23:15:55.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:55 smithi165 bash[22892]: cluster 2024-03-11T23:15:53.396747+0000 mgr.smithi149.leptec (mgr.14197) 336 : cluster 0 pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:15:55.374 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:55 smithi149 bash[18736]: cluster 2024-03-11T23:15:53.396747+0000 mgr.smithi149.leptec (mgr.14197) 336 : cluster 0 pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:15:56.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:56 smithi165 bash[22892]: audit 2024-03-11T23:15:55.311559+0000 mon.smithi149 (mon.0) 947 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:15:56.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:56 smithi165 bash[22892]: cluster 2024-03-11T23:15:55.398113+0000 mgr.smithi149.leptec (mgr.14197) 337 : cluster 0 pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:15:56.492 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:56 smithi149 bash[18736]: audit 2024-03-11T23:15:55.311559+0000 mon.smithi149 (mon.0) 947 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:15:56.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:56 smithi149 bash[18736]: cluster 2024-03-11T23:15:55.398113+0000 mgr.smithi149.leptec (mgr.14197) 337 : cluster 0 pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:15:56.620 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:15:58.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:15:58 smithi149 bash[18736]: cluster 2024-03-11T23:15:57.399492+0000 mgr.smithi149.leptec (mgr.14197) 338 : cluster 0 pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:15:58.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:15:58 smithi165 bash[22892]: cluster 2024-03-11T23:15:57.399492+0000 mgr.smithi149.leptec (mgr.14197) 338 : cluster 0 pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:15:59.640 INFO:teuthology.orchestra.run.smithi149.stdout:Backend: cephadm 2024-03-11T23:15:59.640 INFO:teuthology.orchestra.run.smithi149.stdout:Available: Yes 2024-03-11T23:15:59.640 INFO:teuthology.orchestra.run.smithi149.stdout:Paused: No 2024-03-11T23:16:00.343 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch ps' 2024-03-11T23:16:00.721 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:00 smithi149 bash[18736]: cluster 2024-03-11T23:15:59.400328+0000 mgr.smithi149.leptec (mgr.14197) 339 : cluster 0 pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:16:00.721 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:00 smithi149 bash[18736]: audit 2024-03-11T23:15:59.641176+0000 mgr.smithi149.leptec (mgr.14197) 340 : audit 0 from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:00.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:00 smithi165 bash[22892]: cluster 2024-03-11T23:15:59.400328+0000 mgr.smithi149.leptec (mgr.14197) 339 : cluster 0 pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:16:00.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:00 smithi165 bash[22892]: audit 2024-03-11T23:15:59.641176+0000 mgr.smithi149.leptec (mgr.14197) 340 : audit 0 from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:01.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:01 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:16:02.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:02 smithi149 bash[18736]: cluster 2024-03-11T23:16:01.400930+0000 mgr.smithi149.leptec (mgr.14197) 341 : cluster 0 pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:16:02.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:02 smithi149 bash[18736]: cephadm 2024-03-11T23:16:01.690120+0000 mgr.smithi149.leptec (mgr.14197) 342 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi149.vojmek 2024-03-11T23:16:02.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:02 smithi149 bash[18736]: audit 2024-03-11T23:16:01.690737+0000 mon.smithi149 (mon.0) 948 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi149.vojmek"}]: dispatch 2024-03-11T23:16:02.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:02 smithi149 bash[18736]: audit 2024-03-11T23:16:01.694322+0000 mon.smithi149 (mon.0) 949 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi149.vojmek"}]': finished 2024-03-11T23:16:02.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:02 smithi149 bash[18736]: cephadm 2024-03-11T23:16:01.699813+0000 mgr.smithi149.leptec (mgr.14197) 343 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi149.vojmek-rgw 2024-03-11T23:16:02.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:02 smithi149 bash[18736]: audit 2024-03-11T23:16:01.700358+0000 mon.smithi149 (mon.0) 950 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi149.vojmek-rgw"}]: dispatch 2024-03-11T23:16:02.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:02 smithi149 bash[18736]: audit 2024-03-11T23:16:01.703504+0000 mon.smithi149 (mon.0) 951 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi149.vojmek-rgw"}]': finished 2024-03-11T23:16:02.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:02 smithi149 bash[18736]: cephadm 2024-03-11T23:16:01.708408+0000 mgr.smithi149.leptec (mgr.14197) 344 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi149.jkqgfj... 2024-03-11T23:16:02.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:02 smithi149 bash[18736]: cephadm 2024-03-11T23:16:01.709004+0000 mgr.smithi149.leptec (mgr.14197) 345 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi149.jkqgfj from smithi149 -- ports [2049, 9049] 2024-03-11T23:16:02.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:02 smithi165 bash[22892]: cluster 2024-03-11T23:16:01.400930+0000 mgr.smithi149.leptec (mgr.14197) 341 : cluster 0 pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:16:02.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:02 smithi165 bash[22892]: cephadm 2024-03-11T23:16:01.690120+0000 mgr.smithi149.leptec (mgr.14197) 342 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi149.vojmek 2024-03-11T23:16:02.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:02 smithi165 bash[22892]: audit 2024-03-11T23:16:01.690737+0000 mon.smithi149 (mon.0) 948 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi149.vojmek"}]: dispatch 2024-03-11T23:16:02.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:02 smithi165 bash[22892]: audit 2024-03-11T23:16:01.694322+0000 mon.smithi149 (mon.0) 949 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi149.vojmek"}]': finished 2024-03-11T23:16:02.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:02 smithi165 bash[22892]: cephadm 2024-03-11T23:16:01.699813+0000 mgr.smithi149.leptec (mgr.14197) 343 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi149.vojmek-rgw 2024-03-11T23:16:02.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:02 smithi165 bash[22892]: audit 2024-03-11T23:16:01.700358+0000 mon.smithi149 (mon.0) 950 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi149.vojmek-rgw"}]: dispatch 2024-03-11T23:16:02.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:02 smithi165 bash[22892]: audit 2024-03-11T23:16:01.703504+0000 mon.smithi149 (mon.0) 951 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi149.vojmek-rgw"}]': finished 2024-03-11T23:16:02.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:02 smithi165 bash[22892]: cephadm 2024-03-11T23:16:01.708408+0000 mgr.smithi149.leptec (mgr.14197) 344 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi149.jkqgfj... 2024-03-11T23:16:02.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:02 smithi165 bash[22892]: cephadm 2024-03-11T23:16:01.709004+0000 mgr.smithi149.leptec (mgr.14197) 345 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi149.jkqgfj from smithi149 -- ports [2049, 9049] 2024-03-11T23:16:03.493 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:03 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:16:03.556 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:03 smithi149 bash[18736]: audit 2024-03-11T23:16:03.427883+0000 mon.smithi149 (mon.0) 952 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.jkqgfj"}]: dispatch 2024-03-11T23:16:03.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:03 smithi165 bash[22892]: audit 2024-03-11T23:16:03.427883+0000 mon.smithi149 (mon.0) 952 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.jkqgfj"}]: dispatch 2024-03-11T23:16:04.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:04 smithi149 bash[18736]: cluster 2024-03-11T23:16:03.402027+0000 mgr.smithi149.leptec (mgr.14197) 346 : cluster 0 pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:16:04.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:04 smithi149 bash[18736]: cephadm 2024-03-11T23:16:03.427360+0000 mgr.smithi149.leptec (mgr.14197) 347 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi149.jkqgfj 2024-03-11T23:16:04.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:04 smithi149 bash[18736]: cephadm 2024-03-11T23:16:03.428727+0000 mgr.smithi149.leptec (mgr.14197) 348 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi149.kufkiv... 2024-03-11T23:16:04.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:04 smithi149 bash[18736]: cephadm 2024-03-11T23:16:03.428939+0000 mgr.smithi149.leptec (mgr.14197) 349 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi149.kufkiv from smithi149 -- ports [] 2024-03-11T23:16:04.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:04 smithi165 bash[22892]: cluster 2024-03-11T23:16:03.402027+0000 mgr.smithi149.leptec (mgr.14197) 346 : cluster 0 pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-11T23:16:04.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:04 smithi165 bash[22892]: cephadm 2024-03-11T23:16:03.427360+0000 mgr.smithi149.leptec (mgr.14197) 347 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi149.jkqgfj 2024-03-11T23:16:04.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:04 smithi165 bash[22892]: cephadm 2024-03-11T23:16:03.428727+0000 mgr.smithi149.leptec (mgr.14197) 348 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi149.kufkiv... 2024-03-11T23:16:04.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:04 smithi165 bash[22892]: cephadm 2024-03-11T23:16:03.428939+0000 mgr.smithi149.leptec (mgr.14197) 349 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi149.kufkiv from smithi149 -- ports [] 2024-03-11T23:16:06.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:05 smithi149 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:16:06.250 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:16:06.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:06 smithi149 bash[18736]: cluster 2024-03-11T23:16:05.403575+0000 mgr.smithi149.leptec (mgr.14197) 350 : cluster 0 pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:06.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:06 smithi149 bash[18736]: audit 2024-03-11T23:16:06.099993+0000 mon.smithi149 (mon.0) 953 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.kufkiv"}]: dispatch 2024-03-11T23:16:06.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:06 smithi165 bash[22892]: cluster 2024-03-11T23:16:05.403575+0000 mgr.smithi149.leptec (mgr.14197) 350 : cluster 0 pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:06.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:06 smithi165 bash[22892]: audit 2024-03-11T23:16:06.099993+0000 mon.smithi149 (mon.0) 953 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.kufkiv"}]: dispatch 2024-03-11T23:16:07.674 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:07 smithi165 bash[22892]: cephadm 2024-03-11T23:16:06.099552+0000 mgr.smithi149.leptec (mgr.14197) 351 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi149.kufkiv 2024-03-11T23:16:07.674 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:07 smithi165 bash[22892]: cephadm 2024-03-11T23:16:06.102073+0000 mgr.smithi149.leptec (mgr.14197) 352 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi165.sbvonk... 2024-03-11T23:16:07.674 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:07 smithi165 bash[22892]: cephadm 2024-03-11T23:16:06.102326+0000 mgr.smithi149.leptec (mgr.14197) 353 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi165.sbvonk from smithi165 -- ports [2049, 9049] 2024-03-11T23:16:07.675 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:07 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:16:07.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:07 smithi149 bash[18736]: cephadm 2024-03-11T23:16:06.099552+0000 mgr.smithi149.leptec (mgr.14197) 351 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi149.kufkiv 2024-03-11T23:16:07.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:07 smithi149 bash[18736]: cephadm 2024-03-11T23:16:06.102073+0000 mgr.smithi149.leptec (mgr.14197) 352 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi165.sbvonk... 2024-03-11T23:16:07.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:07 smithi149 bash[18736]: cephadm 2024-03-11T23:16:06.102326+0000 mgr.smithi149.leptec (mgr.14197) 353 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi165.sbvonk from smithi165 -- ports [2049, 9049] 2024-03-11T23:16:08.558 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:08 smithi165 bash[22892]: cluster 2024-03-11T23:16:07.404564+0000 mgr.smithi149.leptec (mgr.14197) 354 : cluster 0 pgmap v285: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:08.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:08 smithi165 bash[22892]: cephadm 2024-03-11T23:16:07.820973+0000 mgr.smithi149.leptec (mgr.14197) 355 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi165.sbvonk 2024-03-11T23:16:08.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:08 smithi165 bash[22892]: audit 2024-03-11T23:16:07.821621+0000 mon.smithi149 (mon.0) 954 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi165.sbvonk"}]: dispatch 2024-03-11T23:16:08.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:08 smithi165 bash[22892]: cephadm 2024-03-11T23:16:07.823224+0000 mgr.smithi149.leptec (mgr.14197) 356 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi165.jdglth... 2024-03-11T23:16:08.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:08 smithi165 bash[22892]: cephadm 2024-03-11T23:16:07.823792+0000 mgr.smithi149.leptec (mgr.14197) 357 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi165.jdglth from smithi165 -- ports [] 2024-03-11T23:16:08.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:08 smithi149 bash[18736]: cluster 2024-03-11T23:16:07.404564+0000 mgr.smithi149.leptec (mgr.14197) 354 : cluster 0 pgmap v285: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:08.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:08 smithi149 bash[18736]: cephadm 2024-03-11T23:16:07.820973+0000 mgr.smithi149.leptec (mgr.14197) 355 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi165.sbvonk 2024-03-11T23:16:08.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:08 smithi149 bash[18736]: audit 2024-03-11T23:16:07.821621+0000 mon.smithi149 (mon.0) 954 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi165.sbvonk"}]: dispatch 2024-03-11T23:16:08.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:08 smithi149 bash[18736]: cephadm 2024-03-11T23:16:07.823224+0000 mgr.smithi149.leptec (mgr.14197) 356 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi165.jdglth... 2024-03-11T23:16:08.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:08 smithi149 bash[18736]: cephadm 2024-03-11T23:16:07.823792+0000 mgr.smithi149.leptec (mgr.14197) 357 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi165.jdglth from smithi165 -- ports [] 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:alertmanager.smithi149 smithi149 *:9093,9094 running (7m) 19s ago 8m 13.6M - 0.25.0 c8568f914cd2 c0653fe7708e 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:ceph-exporter.smithi149 smithi149 running (9m) 19s ago 9m 8775k - 19.0.0-1607-g94a53970 a6477a474d71 53e939a0d1f3 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:ceph-exporter.smithi165 smithi165 running (7m) 20s ago 7m 8708k - 19.0.0-1607-g94a53970 a6477a474d71 1f0cad527d0e 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:crash.smithi149 smithi149 running (9m) 19s ago 9m 7100k - 19.0.0-1607-g94a53970 a6477a474d71 fb47174ead55 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:crash.smithi165 smithi165 running (7m) 20s ago 7m 7079k - 19.0.0-1607-g94a53970 a6477a474d71 72c28da263db 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:grafana.smithi149 smithi149 *:3000 running (6m) 19s ago 8m 76.7M - 9.4.12 a0ea5e3c46d9 0fadcd961c18 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:keepalived.nfs.foo.smithi165.jdglth smithi165 running (80s) 20s ago 81s 2639k - 2.2.4 4a3a1ff181d9 9c7a8e384503 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:mgr.smithi149.leptec smithi149 *:9283,8765,8443 running (10m) 19s ago 10m 505M - 19.0.0-1607-g94a53970 a6477a474d71 bfaa2b41419e 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:mgr.smithi165.tfkohn smithi165 *:8443,9283,8765 running (7m) 20s ago 7m 436M - 19.0.0-1607-g94a53970 a6477a474d71 3372bc91a6df 2024-03-11T23:16:09.227 INFO:teuthology.orchestra.run.smithi149.stdout:mon.smithi149 smithi149 running (10m) 19s ago 10m 49.4M 2048M 19.0.0-1607-g94a53970 a6477a474d71 b7aef8024fce 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:mon.smithi165 smithi165 running (7m) 20s ago 7m 35.8M 2048M 19.0.0-1607-g94a53970 a6477a474d71 4967f094d12f 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:node-exporter.smithi149 smithi149 *:9100 running (8m) 19s ago 9m 8748k - 1.5.0 0da6a335fe13 0718f41f242f 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:node-exporter.smithi165 smithi165 *:9100 running (7m) 20s ago 7m 8735k - 1.5.0 0da6a335fe13 685fa13dedd2 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:osd.0 smithi165 running (5m) 20s ago 5m 52.1M 3772M 19.0.0-1607-g94a53970 a6477a474d71 e7de4818468b 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:osd.1 smithi149 running (5m) 19s ago 5m 59.0M 4096M 19.0.0-1607-g94a53970 a6477a474d71 5df038e9c15e 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:osd.2 smithi165 running (5m) 20s ago 5m 48.1M 3772M 19.0.0-1607-g94a53970 a6477a474d71 ab408743656d 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:osd.3 smithi149 running (5m) 19s ago 5m 53.2M 4096M 19.0.0-1607-g94a53970 a6477a474d71 420609d51538 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:osd.4 smithi165 running (5m) 20s ago 5m 55.3M 3772M 19.0.0-1607-g94a53970 a6477a474d71 6a8c0f764586 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:osd.5 smithi149 running (5m) 19s ago 5m 56.6M 4096M 19.0.0-1607-g94a53970 a6477a474d71 482105ec648d 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:osd.6 smithi165 running (5m) 20s ago 5m 47.8M 3772M 19.0.0-1607-g94a53970 a6477a474d71 baa8ddd80522 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:osd.7 smithi149 running (5m) 19s ago 5m 47.6M 4096M 19.0.0-1607-g94a53970 a6477a474d71 43ad65c05117 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:prometheus.smithi149 smithi149 *:9095 running (57s) 19s ago 8m 46.6M - 2.43.0 a07b618ecd1d 6ce337e483b9 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:rgw.foorgw.smithi149.qvrzak smithi149 *:8800 running (116s) 19s ago 116s 89.7M - 19.0.0-1607-g94a53970 a6477a474d71 7935fb6dc8c3 2024-03-11T23:16:09.228 INFO:teuthology.orchestra.run.smithi149.stdout:rgw.foorgw.smithi165.yimajc smithi165 *:8800 running (2m) 20s ago 2m 88.7M - 19.0.0-1607-g94a53970 a6477a474d71 dec556ac4ebf 2024-03-11T23:16:09.952 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch ls' 2024-03-11T23:16:10.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:10 smithi149 bash[18736]: audit 2024-03-11T23:16:09.178792+0000 mgr.smithi149.leptec (mgr.14197) 358 : audit 0 from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:10.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:10 smithi149 bash[18736]: cluster 2024-03-11T23:16:09.406109+0000 mgr.smithi149.leptec (mgr.14197) 359 : cluster 0 pgmap v286: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:10.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:10 smithi149 bash[18736]: audit 2024-03-11T23:16:10.311904+0000 mon.smithi149 (mon.0) 955 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:16:10.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:10 smithi165 bash[22892]: audit 2024-03-11T23:16:09.178792+0000 mgr.smithi149.leptec (mgr.14197) 358 : audit 0 from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:10.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:10 smithi165 bash[22892]: cluster 2024-03-11T23:16:09.406109+0000 mgr.smithi149.leptec (mgr.14197) 359 : cluster 0 pgmap v286: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:10.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:10 smithi165 bash[22892]: audit 2024-03-11T23:16:10.311904+0000 mon.smithi149 (mon.0) 955 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:16:10.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:10 smithi165 systemd[1]: /etc/systemd/system/ceph-ad95ae2e-dffb-11ee-95c8-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-11T23:16:11.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:11 smithi165 bash[22892]: cephadm 2024-03-11T23:16:10.732523+0000 mgr.smithi149.leptec (mgr.14197) 360 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi165.jdglth 2024-03-11T23:16:11.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:11 smithi165 bash[22892]: audit 2024-03-11T23:16:10.733357+0000 mon.smithi149 (mon.0) 956 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi165.jdglth"}]: dispatch 2024-03-11T23:16:11.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:11 smithi165 bash[22892]: cephadm 2024-03-11T23:16:10.746646+0000 mgr.smithi149.leptec (mgr.14197) 361 : cephadm 1 Purge service nfs.foo 2024-03-11T23:16:11.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:11 smithi165 bash[22892]: cephadm 2024-03-11T23:16:10.747043+0000 mgr.smithi149.leptec (mgr.14197) 362 : cephadm 1 Removing grace file for nfs.foo 2024-03-11T23:16:11.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:11 smithi165 bash[22892]: audit 2024-03-11T23:16:10.826621+0000 mon.smithi149 (mon.0) 957 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]: dispatch 2024-03-11T23:16:11.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:11 smithi165 bash[22892]: audit 2024-03-11T23:16:10.831990+0000 mon.smithi149 (mon.0) 958 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-03-11T23:16:11.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:11 smithi165 bash[22892]: cephadm 2024-03-11T23:16:10.832667+0000 mgr.smithi149.leptec (mgr.14197) 363 : cephadm 1 Purge service ingress.nfs.foo 2024-03-11T23:16:11.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:11 smithi165 bash[22892]: audit 2024-03-11T23:16:10.832995+0000 mon.smithi149 (mon.0) 959 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]: dispatch 2024-03-11T23:16:11.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:11 smithi165 bash[22892]: audit 2024-03-11T23:16:10.837969+0000 mon.smithi149 (mon.0) 960 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-03-11T23:16:11.810 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:11 smithi165 bash[22892]: audit 2024-03-11T23:16:10.839129+0000 mon.smithi149 (mon.0) 961 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:16:11.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:11 smithi149 bash[18736]: cephadm 2024-03-11T23:16:10.732523+0000 mgr.smithi149.leptec (mgr.14197) 360 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi165.jdglth 2024-03-11T23:16:11.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:11 smithi149 bash[18736]: audit 2024-03-11T23:16:10.733357+0000 mon.smithi149 (mon.0) 956 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi165.jdglth"}]: dispatch 2024-03-11T23:16:11.994 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:11 smithi149 bash[18736]: cephadm 2024-03-11T23:16:10.746646+0000 mgr.smithi149.leptec (mgr.14197) 361 : cephadm 1 Purge service nfs.foo 2024-03-11T23:16:11.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:11 smithi149 bash[18736]: cephadm 2024-03-11T23:16:10.747043+0000 mgr.smithi149.leptec (mgr.14197) 362 : cephadm 1 Removing grace file for nfs.foo 2024-03-11T23:16:11.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:11 smithi149 bash[18736]: audit 2024-03-11T23:16:10.826621+0000 mon.smithi149 (mon.0) 957 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]: dispatch 2024-03-11T23:16:11.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:11 smithi149 bash[18736]: audit 2024-03-11T23:16:10.831990+0000 mon.smithi149 (mon.0) 958 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-03-11T23:16:11.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:11 smithi149 bash[18736]: cephadm 2024-03-11T23:16:10.832667+0000 mgr.smithi149.leptec (mgr.14197) 363 : cephadm 1 Purge service ingress.nfs.foo 2024-03-11T23:16:11.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:11 smithi149 bash[18736]: audit 2024-03-11T23:16:10.832995+0000 mon.smithi149 (mon.0) 959 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]: dispatch 2024-03-11T23:16:11.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:11 smithi149 bash[18736]: audit 2024-03-11T23:16:10.837969+0000 mon.smithi149 (mon.0) 960 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-03-11T23:16:11.995 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:11 smithi149 bash[18736]: audit 2024-03-11T23:16:10.839129+0000 mon.smithi149 (mon.0) 961 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:16:13.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:12 smithi149 bash[18736]: cluster 2024-03-11T23:16:11.407413+0000 mgr.smithi149.leptec (mgr.14197) 364 : cluster 0 pgmap v287: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:13.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:12 smithi165 bash[22892]: cluster 2024-03-11T23:16:11.407413+0000 mgr.smithi149.leptec (mgr.14197) 364 : cluster 0 pgmap v287: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:14.739 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:16:15.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:14 smithi149 bash[18736]: cluster 2024-03-11T23:16:13.409131+0000 mgr.smithi149.leptec (mgr.14197) 365 : cluster 0 pgmap v288: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:15.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:14 smithi165 bash[22892]: cluster 2024-03-11T23:16:13.409131+0000 mgr.smithi149.leptec (mgr.14197) 365 : cluster 0 pgmap v288: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:17.170 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:16 smithi149 bash[18736]: cluster 2024-03-11T23:16:15.410733+0000 mgr.smithi149.leptec (mgr.14197) 366 : cluster 0 pgmap v289: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:17.170 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:16 smithi149 bash[18736]: audit 2024-03-11T23:16:16.382395+0000 mon.smithi149 (mon.0) 962 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:17.170 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:16 smithi149 bash[18736]: audit 2024-03-11T23:16:16.387651+0000 mon.smithi149 (mon.0) 963 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:17.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:16 smithi165 bash[22892]: cluster 2024-03-11T23:16:15.410733+0000 mgr.smithi149.leptec (mgr.14197) 366 : cluster 0 pgmap v289: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:17.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:16 smithi165 bash[22892]: audit 2024-03-11T23:16:16.382395+0000 mon.smithi149 (mon.0) 962 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:17.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:16 smithi165 bash[22892]: audit 2024-03-11T23:16:16.387651+0000 mon.smithi149 (mon.0) 963 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:17.566 INFO:teuthology.orchestra.run.smithi149.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-03-11T23:16:17.566 INFO:teuthology.orchestra.run.smithi149.stdout:alertmanager ?:9093,9094 1/1 0s ago 9m count:1 2024-03-11T23:16:17.566 INFO:teuthology.orchestra.run.smithi149.stdout:ceph-exporter 2/2 1s ago 9m * 2024-03-11T23:16:17.566 INFO:teuthology.orchestra.run.smithi149.stdout:crash 2/2 1s ago 9m * 2024-03-11T23:16:17.567 INFO:teuthology.orchestra.run.smithi149.stdout:grafana ?:3000 1/1 0s ago 9m count:1 2024-03-11T23:16:17.567 INFO:teuthology.orchestra.run.smithi149.stdout:mgr 2/2 1s ago 10m count:2 2024-03-11T23:16:17.567 INFO:teuthology.orchestra.run.smithi149.stdout:mon 2/2 1s ago 8m smithi149:172.21.15.149=smithi149;smithi165:172.21.15.165=smithi165;count:2 2024-03-11T23:16:17.567 INFO:teuthology.orchestra.run.smithi149.stdout:node-exporter ?:9100 2/2 1s ago 9m * 2024-03-11T23:16:17.567 INFO:teuthology.orchestra.run.smithi149.stdout:osd.all-available-devices 8 1s ago 7m * 2024-03-11T23:16:17.567 INFO:teuthology.orchestra.run.smithi149.stdout:prometheus ?:9095 1/1 0s ago 9m count:1 2024-03-11T23:16:17.567 INFO:teuthology.orchestra.run.smithi149.stdout:rgw.foorgw ?:8800 2/2 1s ago 2m count:2 2024-03-11T23:16:18.213 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:17 smithi149 bash[18736]: audit 2024-03-11T23:16:16.930818+0000 mon.smithi149 (mon.0) 964 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:18.214 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:17 smithi149 bash[18736]: audit 2024-03-11T23:16:16.935996+0000 mon.smithi149 (mon.0) 965 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:18.214 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:17 smithi149 bash[18736]: audit 2024-03-11T23:16:17.507654+0000 mon.smithi149 (mon.0) 966 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:16:18.214 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:17 smithi149 bash[18736]: audit 2024-03-11T23:16:17.509334+0000 mon.smithi149 (mon.0) 967 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:16:18.214 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:17 smithi149 bash[18736]: audit 2024-03-11T23:16:17.519425+0000 mon.smithi149 (mon.0) 968 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:18.214 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:17 smithi149 bash[18736]: audit 2024-03-11T23:16:17.527509+0000 mon.smithi149 (mon.0) 969 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:16:18.236 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch host ls' 2024-03-11T23:16:18.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:17 smithi165 bash[22892]: audit 2024-03-11T23:16:16.930818+0000 mon.smithi149 (mon.0) 964 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:17 smithi165 bash[22892]: audit 2024-03-11T23:16:16.935996+0000 mon.smithi149 (mon.0) 965 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:17 smithi165 bash[22892]: audit 2024-03-11T23:16:17.507654+0000 mon.smithi149 (mon.0) 966 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:16:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:17 smithi165 bash[22892]: audit 2024-03-11T23:16:17.509334+0000 mon.smithi149 (mon.0) 967 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:16:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:17 smithi165 bash[22892]: audit 2024-03-11T23:16:17.519425+0000 mon.smithi149 (mon.0) 968 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:18.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:17 smithi165 bash[22892]: audit 2024-03-11T23:16:17.527509+0000 mon.smithi149 (mon.0) 969 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:16:19.186 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:18 smithi165 bash[22892]: cluster 2024-03-11T23:16:17.411616+0000 mgr.smithi149.leptec (mgr.14197) 367 : cluster 0 pgmap v290: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:19.187 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:18 smithi165 bash[22892]: cluster 2024-03-11T23:16:17.513097+0000 mgr.smithi149.leptec (mgr.14197) 368 : cluster 0 pgmap v291: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:19.187 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:18 smithi165 bash[22892]: audit 2024-03-11T23:16:17.560698+0000 mgr.smithi149.leptec (mgr.14197) 369 : audit 0 from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:19.187 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:18 smithi165 bash[22892]: cephadm 2024-03-11T23:16:17.592439+0000 mgr.smithi149.leptec (mgr.14197) 370 : cephadm 1 Reconfiguring prometheus.smithi149 (dependencies changed)... 2024-03-11T23:16:19.187 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:18 smithi165 bash[22892]: cephadm 2024-03-11T23:16:17.827634+0000 mgr.smithi149.leptec (mgr.14197) 371 : cephadm 1 Reconfiguring daemon prometheus.smithi149 on smithi149 2024-03-11T23:16:19.187 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:18 smithi165 bash[22892]: cluster 2024-03-11T23:16:17.934713+0000 mon.smithi149 (mon.0) 970 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-11T23:16:19.199 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:18 smithi149 bash[18736]: cluster 2024-03-11T23:16:17.411616+0000 mgr.smithi149.leptec (mgr.14197) 367 : cluster 0 pgmap v290: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:19.199 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:18 smithi149 bash[18736]: cluster 2024-03-11T23:16:17.513097+0000 mgr.smithi149.leptec (mgr.14197) 368 : cluster 0 pgmap v291: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:19.199 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:18 smithi149 bash[18736]: audit 2024-03-11T23:16:17.560698+0000 mgr.smithi149.leptec (mgr.14197) 369 : audit 0 from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:19.199 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:18 smithi149 bash[18736]: cephadm 2024-03-11T23:16:17.592439+0000 mgr.smithi149.leptec (mgr.14197) 370 : cephadm 1 Reconfiguring prometheus.smithi149 (dependencies changed)... 2024-03-11T23:16:19.199 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:18 smithi149 bash[18736]: cephadm 2024-03-11T23:16:17.827634+0000 mgr.smithi149.leptec (mgr.14197) 371 : cephadm 1 Reconfiguring daemon prometheus.smithi149 on smithi149 2024-03-11T23:16:19.199 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:18 smithi149 bash[18736]: cluster 2024-03-11T23:16:17.934713+0000 mon.smithi149 (mon.0) 970 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-11T23:16:20.992 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:20 smithi149 bash[18736]: cluster 2024-03-11T23:16:19.514665+0000 mgr.smithi149.leptec (mgr.14197) 372 : cluster 0 pgmap v292: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:21.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:20 smithi165 bash[22892]: cluster 2024-03-11T23:16:19.514665+0000 mgr.smithi149.leptec (mgr.14197) 372 : cluster 0 pgmap v292: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:23.013 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:16:23.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:22 smithi149 bash[18736]: cluster 2024-03-11T23:16:21.515501+0000 mgr.smithi149.leptec (mgr.14197) 373 : cluster 0 pgmap v293: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:23.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:22 smithi149 bash[18736]: audit 2024-03-11T23:16:22.299755+0000 mon.smithi149 (mon.0) 971 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:23.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:22 smithi149 bash[18736]: audit 2024-03-11T23:16:22.307486+0000 mon.smithi149 (mon.0) 972 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:23.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:22 smithi149 bash[18736]: audit 2024-03-11T23:16:22.316702+0000 mon.smithi149 (mon.0) 973 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:16:23.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:22 smithi149 bash[18736]: audit 2024-03-11T23:16:22.322779+0000 mon.smithi149 (mon.0) 974 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:16:23.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:22 smithi149 bash[18736]: audit 2024-03-11T23:16:22.800613+0000 mon.smithi149 (mon.0) 975 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:23.243 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:22 smithi149 bash[18736]: audit 2024-03-11T23:16:22.812597+0000 mon.smithi149 (mon.0) 976 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:23.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:22 smithi165 bash[22892]: cluster 2024-03-11T23:16:21.515501+0000 mgr.smithi149.leptec (mgr.14197) 373 : cluster 0 pgmap v293: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:23.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:22 smithi165 bash[22892]: audit 2024-03-11T23:16:22.299755+0000 mon.smithi149 (mon.0) 971 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:23.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:22 smithi165 bash[22892]: audit 2024-03-11T23:16:22.307486+0000 mon.smithi149 (mon.0) 972 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:23.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:22 smithi165 bash[22892]: audit 2024-03-11T23:16:22.316702+0000 mon.smithi149 (mon.0) 973 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:16:23.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:22 smithi165 bash[22892]: audit 2024-03-11T23:16:22.322779+0000 mon.smithi149 (mon.0) 974 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-11T23:16:23.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:22 smithi165 bash[22892]: audit 2024-03-11T23:16:22.800613+0000 mon.smithi149 (mon.0) 975 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:23.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:22 smithi165 bash[22892]: audit 2024-03-11T23:16:22.812597+0000 mon.smithi149 (mon.0) 976 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:24.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:23 smithi149 bash[18736]: audit 2024-03-11T23:16:22.317174+0000 mgr.smithi149.leptec (mgr.14197) 374 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:16:24.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:23 smithi165 bash[22892]: audit 2024-03-11T23:16:22.317174+0000 mgr.smithi149.leptec (mgr.14197) 374 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-11T23:16:25.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:24 smithi149 bash[18736]: cluster 2024-03-11T23:16:23.516204+0000 mgr.smithi149.leptec (mgr.14197) 375 : cluster 0 pgmap v294: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:25.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:24 smithi165 bash[22892]: cluster 2024-03-11T23:16:23.516204+0000 mgr.smithi149.leptec (mgr.14197) 375 : cluster 0 pgmap v294: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:26.103 INFO:teuthology.orchestra.run.smithi149.stdout:HOST ADDR LABELS STATUS 2024-03-11T23:16:26.103 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 172.21.15.149 2024-03-11T23:16:26.103 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 172.21.15.165 2024-03-11T23:16:26.104 INFO:teuthology.orchestra.run.smithi149.stdout:2 hosts in cluster 2024-03-11T23:16:26.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:26 smithi149 bash[18736]: audit 2024-03-11T23:16:25.318635+0000 mon.smithi149 (mon.0) 977 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:26.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:26 smithi149 bash[18736]: audit 2024-03-11T23:16:25.320832+0000 mon.smithi149 (mon.0) 978 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:16:26.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:26 smithi149 bash[18736]: cluster 2024-03-11T23:16:25.517516+0000 mgr.smithi149.leptec (mgr.14197) 376 : cluster 0 pgmap v295: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:26.783 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch device ls' 2024-03-11T23:16:26.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:26 smithi165 bash[22892]: audit 2024-03-11T23:16:25.318635+0000 mon.smithi149 (mon.0) 977 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:26.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:26 smithi165 bash[22892]: audit 2024-03-11T23:16:25.320832+0000 mon.smithi149 (mon.0) 978 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:16:26.809 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:26 smithi165 bash[22892]: cluster 2024-03-11T23:16:25.517516+0000 mgr.smithi149.leptec (mgr.14197) 376 : cluster 0 pgmap v295: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:27.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:27 smithi149 bash[18736]: audit 2024-03-11T23:16:26.104746+0000 mgr.smithi149.leptec (mgr.14197) 377 : audit 0 from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:27.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:27 smithi165 bash[22892]: audit 2024-03-11T23:16:26.104746+0000 mgr.smithi149.leptec (mgr.14197) 377 : audit 0 from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:29.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:28 smithi149 bash[18736]: cluster 2024-03-11T23:16:27.518946+0000 mgr.smithi149.leptec (mgr.14197) 378 : cluster 0 pgmap v296: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:29.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:28 smithi149 bash[18736]: audit 2024-03-11T23:16:27.875252+0000 mon.smithi149 (mon.0) 979 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:29.242 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:28 smithi149 bash[18736]: audit 2024-03-11T23:16:27.887145+0000 mon.smithi149 (mon.0) 980 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:29.308 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:28 smithi165 bash[22892]: cluster 2024-03-11T23:16:27.518946+0000 mgr.smithi149.leptec (mgr.14197) 378 : cluster 0 pgmap v296: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:29.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:28 smithi165 bash[22892]: audit 2024-03-11T23:16:27.875252+0000 mon.smithi149 (mon.0) 979 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:29.309 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:28 smithi165 bash[22892]: audit 2024-03-11T23:16:27.887145+0000 mon.smithi149 (mon.0) 980 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:30.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:30 smithi165 bash[22892]: audit 2024-03-11T23:16:29.261391+0000 mon.smithi149 (mon.0) 981 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:30.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:30 smithi165 bash[22892]: audit 2024-03-11T23:16:29.268182+0000 mon.smithi149 (mon.0) 982 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:30.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:30 smithi165 bash[22892]: audit 2024-03-11T23:16:29.269295+0000 mon.smithi149 (mon.0) 983 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:16:30.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:30 smithi165 bash[22892]: audit 2024-03-11T23:16:29.269983+0000 mon.smithi149 (mon.0) 984 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:16:30.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:30 smithi165 bash[22892]: cluster 2024-03-11T23:16:29.271606+0000 mgr.smithi149.leptec (mgr.14197) 379 : cluster 0 pgmap v297: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:30.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:30 smithi165 bash[22892]: cluster 2024-03-11T23:16:29.271894+0000 mgr.smithi149.leptec (mgr.14197) 380 : cluster 0 pgmap v298: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:30.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:30 smithi165 bash[22892]: audit 2024-03-11T23:16:29.274980+0000 mon.smithi149 (mon.0) 985 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:30.559 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:30 smithi165 bash[22892]: audit 2024-03-11T23:16:29.277814+0000 mon.smithi149 (mon.0) 986 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:16:30.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:30 smithi149 bash[18736]: audit 2024-03-11T23:16:29.261391+0000 mon.smithi149 (mon.0) 981 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:30.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:30 smithi149 bash[18736]: audit 2024-03-11T23:16:29.268182+0000 mon.smithi149 (mon.0) 982 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:30.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:30 smithi149 bash[18736]: audit 2024-03-11T23:16:29.269295+0000 mon.smithi149 (mon.0) 983 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-11T23:16:30.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:30 smithi149 bash[18736]: audit 2024-03-11T23:16:29.269983+0000 mon.smithi149 (mon.0) 984 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-11T23:16:30.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:30 smithi149 bash[18736]: cluster 2024-03-11T23:16:29.271606+0000 mgr.smithi149.leptec (mgr.14197) 379 : cluster 0 pgmap v297: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:30.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:30 smithi149 bash[18736]: cluster 2024-03-11T23:16:29.271894+0000 mgr.smithi149.leptec (mgr.14197) 380 : cluster 0 pgmap v298: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:30.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:30 smithi149 bash[18736]: audit 2024-03-11T23:16:29.274980+0000 mon.smithi149 (mon.0) 985 : audit 1 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' 2024-03-11T23:16:30.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:30 smithi149 bash[18736]: audit 2024-03-11T23:16:29.277814+0000 mon.smithi149 (mon.0) 986 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-11T23:16:31.341 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:16:32.508 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:32 smithi149 bash[18736]: cluster 2024-03-11T23:16:31.272972+0000 mgr.smithi149.leptec (mgr.14197) 381 : cluster 0 pgmap v299: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:32.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:32 smithi165 bash[22892]: cluster 2024-03-11T23:16:31.272972+0000 mgr.smithi149.leptec (mgr.14197) 381 : cluster 0 pgmap v299: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:34.098 INFO:teuthology.orchestra.run.smithi149.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-03-11T23:16:34.098 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300CK400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-03-11T23:16:34.098 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme1n1 ssd Linux_90f182599f3cb9fb0439 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:16:34.098 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme2n1 ssd Linux_cc23feb170aa197f0b73 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:16:34.098 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme3n1 ssd Linux_bf4d0bd49a2b61db3fda 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:16:34.099 INFO:teuthology.orchestra.run.smithi149.stdout:smithi149 /dev/nvme4n1 ssd Linux_e77c1e670f3af105b990 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:16:34.099 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300CE400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-03-11T23:16:34.099 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme1n1 ssd Linux_da7476dad5fe92bef5f6 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:16:34.099 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme2n1 ssd Linux_4a02910ee5dfa0917e0d 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:16:34.099 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme3n1 ssd Linux_865cb9a989ef58f36d21 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:16:34.099 INFO:teuthology.orchestra.run.smithi149.stdout:smithi165 /dev/nvme4n1 ssd Linux_6ff710b594da79ccdcb9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-11T23:16:34.492 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:34 smithi149 bash[18736]: cluster 2024-03-11T23:16:33.274567+0000 mgr.smithi149.leptec (mgr.14197) 382 : cluster 0 pgmap v300: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:34.789 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:34 smithi165 bash[22892]: cluster 2024-03-11T23:16:33.274567+0000 mgr.smithi149.leptec (mgr.14197) 382 : cluster 0 pgmap v300: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:34.789 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:94a539707733325322964c6a187c6a1b41be1daf shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-03-11T23:16:35.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:35 smithi149 bash[18736]: audit 2024-03-11T23:16:34.096888+0000 mgr.smithi149.leptec (mgr.14197) 383 : audit 0 from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:35.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:35 smithi165 bash[22892]: audit 2024-03-11T23:16:34.096888+0000 mgr.smithi149.leptec (mgr.14197) 383 : audit 0 from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:36.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:36 smithi149 bash[18736]: cluster 2024-03-11T23:16:35.276165+0000 mgr.smithi149.leptec (mgr.14197) 384 : cluster 0 pgmap v301: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:36.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:36 smithi165 bash[22892]: cluster 2024-03-11T23:16:35.276165+0000 mgr.smithi149.leptec (mgr.14197) 384 : cluster 0 pgmap v301: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:38.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:38 smithi149 bash[18736]: cluster 2024-03-11T23:16:37.277521+0000 mgr.smithi149.leptec (mgr.14197) 385 : cluster 0 pgmap v302: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:38.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:38 smithi165 bash[22892]: cluster 2024-03-11T23:16:37.277521+0000 mgr.smithi149.leptec (mgr.14197) 385 : cluster 0 pgmap v302: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:39.597 INFO:teuthology.orchestra.run.smithi149.stderr:Inferring config /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/mon.smithi149/config 2024-03-11T23:16:40.715 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:40 smithi149 bash[18736]: cluster 2024-03-11T23:16:39.279140+0000 mgr.smithi149.leptec (mgr.14197) 386 : cluster 0 pgmap v303: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:40.715 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:40 smithi149 bash[18736]: audit 2024-03-11T23:16:40.312898+0000 mon.smithi149 (mon.0) 987 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:16:40.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:40 smithi165 bash[22892]: cluster 2024-03-11T23:16:39.279140+0000 mgr.smithi149.leptec (mgr.14197) 386 : cluster 0 pgmap v303: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:40.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:40 smithi165 bash[22892]: audit 2024-03-11T23:16:40.312898+0000 mon.smithi149 (mon.0) 987 : audit 0 from='mgr.14197 172.21.15.149:0/2885199084' entity='mgr.smithi149.leptec' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-11T23:16:42.431 INFO:teuthology.orchestra.run.smithi149.stdout:osd.all-available-devices 8 14s ago 7m * 2024-03-11T23:16:42.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:42 smithi149 bash[18736]: cluster 2024-03-11T23:16:41.279965+0000 mgr.smithi149.leptec (mgr.14197) 387 : cluster 0 pgmap v304: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:42.808 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:42 smithi165 bash[22892]: cluster 2024-03-11T23:16:41.279965+0000 mgr.smithi149.leptec (mgr.14197) 387 : cluster 0 pgmap v304: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-03-11T23:16:43.130 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-03-11T23:16:43.142 INFO:tasks.vip:Removing 10.0.15.149 (and any VIPs) on smithi149.front.sepia.ceph.com iface enp3s0f1... 2024-03-11T23:16:43.142 DEBUG:teuthology.orchestra.run.smithi149:> sudo ip addr del 10.0.15.149/16 dev enp3s0f1 2024-03-11T23:16:43.156 DEBUG:teuthology.orchestra.run.smithi149:> sudo ip addr del 10.0.31.149/16 dev enp3s0f1 2024-03-11T23:16:43.213 INFO:teuthology.orchestra.run.smithi149.stderr:RTNETLINK answers: Cannot assign requested address 2024-03-11T23:16:43.215 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-03-11T23:16:43.215 INFO:tasks.vip:Removing 10.0.15.165 (and any VIPs) on smithi165.front.sepia.ceph.com iface enp3s0f1... 2024-03-11T23:16:43.216 DEBUG:teuthology.orchestra.run.smithi165:> sudo ip addr del 10.0.15.165/16 dev enp3s0f1 2024-03-11T23:16:43.233 DEBUG:teuthology.orchestra.run.smithi165:> sudo ip addr del 10.0.31.149/16 dev enp3s0f1 2024-03-11T23:16:43.288 INFO:teuthology.orchestra.run.smithi165.stderr:RTNETLINK answers: Cannot assign requested address 2024-03-11T23:16:43.289 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-03-11T23:16:43.289 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-03-11T23:16:43.302 INFO:tasks.cephadm:Teardown begin 2024-03-11T23:16:43.303 DEBUG:teuthology.orchestra.run.smithi149:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-11T23:16:43.317 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-11T23:16:43.344 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-03-11T23:16:43.344 DEBUG:teuthology.orchestra.run.smithi149:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-03-11T23:16:43.362 DEBUG:teuthology.orchestra.run.smithi165:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-03-11T23:16:43.393 INFO:tasks.cephadm:Stopping all daemons... 2024-03-11T23:16:43.393 INFO:tasks.cephadm.mon.smithi149:Stopping mon.smithi149... 2024-03-11T23:16:43.394 DEBUG:teuthology.orchestra.run.smithi149:> sudo systemctl stop ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi149 2024-03-11T23:16:43.415 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:43 smithi149 bash[18736]: audit 2024-03-11T23:16:42.402032+0000 mgr.smithi149.leptec (mgr.14197) 388 : audit 0 from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:43.558 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:43 smithi165 bash[22892]: audit 2024-03-11T23:16:42.402032+0000 mgr.smithi149.leptec (mgr.14197) 388 : audit 0 from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-11T23:16:43.693 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:43 smithi149 systemd[1]: Stopping Ceph mon.smithi149 for ad95ae2e-dffb-11ee-95c8-87774f69a715... 2024-03-11T23:16:43.693 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:43 smithi149 bash[18736]: debug 2024-03-11T23:16:43.552+0000 7f2e5a434700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi149 -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-11T23:16:43.693 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:43 smithi149 bash[18736]: debug 2024-03-11T23:16:43.552+0000 7f2e5a434700 -1 mon.smithi149@0(leader) e2 *** Got Signal Terminated *** 2024-03-11T23:16:44.585 DEBUG:teuthology.orchestra.run.smithi149:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi149.service' 2024-03-11T23:16:44.638 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:44 smithi149 bash[81431]: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-mon-smithi149 2024-03-11T23:16:44.638 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:44 smithi149 bash[81525]: Error response from daemon: No such container: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715-mon-smithi149 2024-03-11T23:16:44.639 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:44 smithi149 systemd[1]: ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi149.service: Deactivated successfully. 2024-03-11T23:16:44.639 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Mar 11 23:16:44 smithi149 systemd[1]: Stopped Ceph mon.smithi149 for ad95ae2e-dffb-11ee-95c8-87774f69a715. 2024-03-11T23:16:44.671 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-11T23:16:44.671 INFO:tasks.cephadm.mon.smithi149:Stopped mon.smithi149 2024-03-11T23:16:44.671 INFO:tasks.cephadm.mon.smithi165:Stopping mon.smithi165... 2024-03-11T23:16:44.671 DEBUG:teuthology.orchestra.run.smithi165:> sudo systemctl stop ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi165 2024-03-11T23:16:44.995 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:44 smithi165 systemd[1]: Stopping Ceph mon.smithi165 for ad95ae2e-dffb-11ee-95c8-87774f69a715... 2024-03-11T23:16:44.995 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:44 smithi165 bash[22892]: debug 2024-03-11T23:16:44.806+0000 7f76b85c6700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi165 -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-11T23:16:44.995 INFO:journalctl@ceph.mon.smithi165.smithi165.stdout:Mar 11 23:16:44 smithi165 bash[22892]: debug 2024-03-11T23:16:44.806+0000 7f76b85c6700 -1 mon.smithi165@1(peon) e2 *** Got Signal Terminated *** 2024-03-11T23:16:45.978 DEBUG:teuthology.orchestra.run.smithi165:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad95ae2e-dffb-11ee-95c8-87774f69a715@mon.smithi165.service' 2024-03-11T23:16:46.029 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-11T23:16:46.029 INFO:tasks.cephadm.mon.smithi165:Stopped mon.smithi165 2024-03-11T23:16:46.029 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 --force --keep-logs 2024-03-11T23:16:46.196 INFO:teuthology.orchestra.run.smithi149.stdout:Deleting cluster with fsid: ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:17:44.803 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 --force --keep-logs 2024-03-11T23:17:44.969 INFO:teuthology.orchestra.run.smithi165.stdout:Deleting cluster with fsid: ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:18:39.870 DEBUG:teuthology.orchestra.run.smithi149:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-11T23:18:39.886 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-11T23:18:39.898 INFO:tasks.cephadm:Archiving crash dumps... 2024-03-11T23:18:39.900 DEBUG:teuthology.misc:Transferring archived files from smithi149:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/crash to /home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037/remote/smithi149/crash 2024-03-11T23:18:39.901 DEBUG:teuthology.orchestra.run.smithi149:> sudo tar c -f - -C /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/crash -- . 2024-03-11T23:18:39.942 INFO:teuthology.orchestra.run.smithi149.stderr:tar: /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/crash: Cannot open: No such file or directory 2024-03-11T23:18:39.942 INFO:teuthology.orchestra.run.smithi149.stderr:tar: Error is not recoverable: exiting now 2024-03-11T23:18:39.944 DEBUG:teuthology.misc:Transferring archived files from smithi165:/var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/crash to /home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037/remote/smithi165/crash 2024-03-11T23:18:39.945 DEBUG:teuthology.orchestra.run.smithi165:> sudo tar c -f - -C /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/crash -- . 2024-03-11T23:18:39.955 INFO:teuthology.orchestra.run.smithi165.stderr:tar: /var/lib/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/crash: Cannot open: No such file or directory 2024-03-11T23:18:39.955 INFO:teuthology.orchestra.run.smithi165.stderr:tar: Error is not recoverable: exiting now 2024-03-11T23:18:39.957 INFO:tasks.cephadm:Checking cluster log for badness... 2024-03-11T23:18:39.957 DEBUG:teuthology.orchestra.run.smithi149:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-03-11T23:18:40.000 INFO:teuthology.orchestra.run.smithi149.stdout:2024-03-11T23:08:42.461924+0000 mon.smithi149 (mon.0) 251 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-03-11T23:18:40.000 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-03-11T23:18:40.000 DEBUG:teuthology.orchestra.run.smithi149:> sudo egrep '\[SEC\]' /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-03-11T23:18:40.055 DEBUG:teuthology.orchestra.run.smithi149:> sudo egrep '\[ERR\]' /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-03-11T23:18:40.110 DEBUG:teuthology.orchestra.run.smithi149:> sudo egrep '\[WRN\]' /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-03-11T23:18:40.166 INFO:teuthology.orchestra.run.smithi149.stdout:2024-03-11T23:08:42.461924+0000 mon.smithi149 (mon.0) 251 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-03-11T23:18:40.166 INFO:tasks.cephadm:Compressing logs... 2024-03-11T23:18:40.166 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T23:18:40.211 DEBUG:teuthology.orchestra.run.smithi165:> 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-11T23:18:40.219 INFO:teuthology.orchestra.run.smithi149.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-03-11T23:18:40.225 INFO:teuthology.orchestra.run.smithi165.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-03-11T23:18:40.226 INFO:teuthology.orchestra.run.smithi149.stderr:gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.ceph-exporter.smithi149.log 2024-03-11T23:18:40.227 INFO:teuthology.orchestra.run.smithi149.stderr:gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.7.log 2024-03-11T23:18:40.227 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.ceph-exporter.smithi149.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ops-log-ceph-client.rgw.foorgw.smithi149.qvrzak.log 2024-03-11T23:18:40.229 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.rgw.foorgw.smithi149.qvrzak.log 2024-03-11T23:18:40.229 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ops-log-ceph-client.rgw.foorgw.smithi149.qvrzak.log: 94.2% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.ceph-exporter.smithi149.log.gz 2024-03-11T23:18:40.229 INFO:teuthology.orchestra.run.smithi149.stderr:gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.cephadm.log 2024-03-11T23:18:40.229 INFO:teuthology.orchestra.run.smithi149.stderr: 77.0% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ops-log-ceph-client.rgw.foorgw.smithi149.qvrzak.log.gz 2024-03-11T23:18:40.229 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.rgw.foorgw.smithi149.qvrzak.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.3.log 2024-03-11T23:18:40.229 INFO:teuthology.orchestra.run.smithi149.stderr: 71.6% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.rgw.foorgw.smithi149.qvrzak.log.gz 2024-03-11T23:18:40.229 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.5.log 2024-03-11T23:18:40.231 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.1.log 2024-03-11T23:18:40.231 INFO:teuthology.orchestra.run.smithi149.stderr: 83.4% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.cephadm.log.gz 2024-03-11T23:18:40.232 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mgr.smithi149.leptec.log 2024-03-11T23:18:40.232 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mon.smithi149.log 2024-03-11T23:18:40.232 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mgr.smithi149.leptec.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.log 2024-03-11T23:18:40.232 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mon.smithi149.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-volume.log 2024-03-11T23:18:40.232 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.audit.log 2024-03-11T23:18:40.233 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-volume.log: 87.5% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.log.gz 2024-03-11T23:18:40.233 INFO:teuthology.orchestra.run.smithi149.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-03-11T23:18:40.237 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.audit.log: 91.2% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.audit.log.gz 2024-03-11T23:18:40.238 INFO:teuthology.orchestra.run.smithi165.stderr:gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.0.log 2024-03-11T23:18:40.239 INFO:teuthology.orchestra.run.smithi165.stderr:gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mon.smithi165.log 2024-03-11T23:18:40.240 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.2.log 2024-03-11T23:18:40.240 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mon.smithi165.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.6.log 2024-03-11T23:18:40.240 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.cephadm.log 2024-03-11T23:18:40.241 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.rgw.foorgw.smithi165.yimajc.log 2024-03-11T23:18:40.242 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mgr.smithi165.tfkohn.log 2024-03-11T23:18:40.242 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.rgw.foorgw.smithi165.yimajc.log: 83.0% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.cephadm.log.gz 2024-03-11T23:18:40.242 INFO:teuthology.orchestra.run.smithi165.stderr:gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.log 2024-03-11T23:18:40.242 INFO:teuthology.orchestra.run.smithi165.stderr: 66.2% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.rgw.foorgw.smithi165.yimajc.log.gz 2024-03-11T23:18:40.242 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mgr.smithi165.tfkohn.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-volume.log 2024-03-11T23:18:40.243 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.audit.log 2024-03-11T23:18:40.243 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.4.log 2024-03-11T23:18:40.244 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.audit.log: 87.3% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.log.gz 2024-03-11T23:18:40.245 INFO:teuthology.orchestra.run.smithi165.stderr:gzip -5 --verbose -- /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.ceph-exporter.smithi165.log 2024-03-11T23:18:40.246 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/cephadm.log: 91.1% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-volume.log.gz 2024-03-11T23:18:40.246 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.4.log: 91.4% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph.audit.log.gz 2024-03-11T23:18:40.246 INFO:teuthology.orchestra.run.smithi165.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-03-11T23:18:40.248 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.ceph-exporter.smithi165.log: 94.5% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-client.ceph-exporter.smithi165.log.gz 2024-03-11T23:18:40.248 INFO:teuthology.orchestra.run.smithi165.stderr: 92.3% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mgr.smithi165.tfkohn.log.gz 2024-03-11T23:18:40.249 INFO:teuthology.orchestra.run.smithi149.stderr: 85.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-03-11T23:18:40.251 INFO:teuthology.orchestra.run.smithi165.stderr:/var/log/ceph/cephadm.log: 89.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-03-11T23:18:40.258 INFO:teuthology.orchestra.run.smithi165.stderr: 91.2% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-volume.log.gz 2024-03-11T23:18:40.341 INFO:teuthology.orchestra.run.smithi165.stderr: 93.0% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mon.smithi165.log.gz 2024-03-11T23:18:40.420 INFO:teuthology.orchestra.run.smithi149.stderr: 88.7% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mgr.smithi149.leptec.log.gz 2024-03-11T23:18:40.532 INFO:teuthology.orchestra.run.smithi149.stderr: 93.3% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.5.log.gz 2024-03-11T23:18:40.571 INFO:teuthology.orchestra.run.smithi149.stderr: 93.4% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.7.log.gz 2024-03-11T23:18:40.572 INFO:teuthology.orchestra.run.smithi165.stderr: 93.3% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.2.log.gz 2024-03-11T23:18:40.582 INFO:teuthology.orchestra.run.smithi165.stderr: 93.2% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.6.log.gz 2024-03-11T23:18:40.619 INFO:teuthology.orchestra.run.smithi149.stderr: 93.6% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.3.log.gz 2024-03-11T23:18:40.656 INFO:teuthology.orchestra.run.smithi149.stderr: 91.3% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-mon.smithi149.log.gz 2024-03-11T23:18:40.656 INFO:teuthology.orchestra.run.smithi165.stderr: 93.4% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.4.log.gz 2024-03-11T23:18:40.695 INFO:teuthology.orchestra.run.smithi149.stderr: 93.6% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.1.log.gz 2024-03-11T23:18:40.696 INFO:teuthology.orchestra.run.smithi149.stderr: 2024-03-11T23:18:40.696 INFO:teuthology.orchestra.run.smithi149.stderr:real 0m0.483s 2024-03-11T23:18:40.696 INFO:teuthology.orchestra.run.smithi149.stderr:user 0m2.071s 2024-03-11T23:18:40.696 INFO:teuthology.orchestra.run.smithi149.stderr:sys 0m0.103s 2024-03-11T23:18:40.717 INFO:teuthology.orchestra.run.smithi165.stderr: 93.4% -- replaced with /var/log/ceph/ad95ae2e-dffb-11ee-95c8-87774f69a715/ceph-osd.0.log.gz 2024-03-11T23:18:40.718 INFO:teuthology.orchestra.run.smithi165.stderr: 2024-03-11T23:18:40.718 INFO:teuthology.orchestra.run.smithi165.stderr:real 0m0.502s 2024-03-11T23:18:40.718 INFO:teuthology.orchestra.run.smithi165.stderr:user 0m1.654s 2024-03-11T23:18:40.718 INFO:teuthology.orchestra.run.smithi165.stderr:sys 0m0.072s 2024-03-11T23:18:40.719 INFO:tasks.cephadm:Archiving logs... 2024-03-11T23:18:40.719 DEBUG:teuthology.misc:Transferring archived files from smithi149:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037/remote/smithi149/log 2024-03-11T23:18:40.720 DEBUG:teuthology.orchestra.run.smithi149:> sudo tar c -f - -C /var/log/ceph -- . 2024-03-11T23:18:40.990 DEBUG:teuthology.misc:Transferring archived files from smithi165:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037/remote/smithi165/log 2024-03-11T23:18:40.991 DEBUG:teuthology.orchestra.run.smithi165:> sudo tar c -f - -C /var/log/ceph -- . 2024-03-11T23:18:41.201 INFO:tasks.cephadm:Removing cluster... 2024-03-11T23:18:41.201 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 --force 2024-03-11T23:18:41.365 INFO:teuthology.orchestra.run.smithi149.stdout:Deleting cluster with fsid: ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:18:42.495 DEBUG:teuthology.orchestra.run.smithi165:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad95ae2e-dffb-11ee-95c8-87774f69a715 --force 2024-03-11T23:18:42.653 INFO:teuthology.orchestra.run.smithi165.stdout:Deleting cluster with fsid: ad95ae2e-dffb-11ee-95c8-87774f69a715 2024-03-11T23:18:43.780 INFO:tasks.cephadm:Removing cephadm ... 2024-03-11T23:18:43.780 DEBUG:teuthology.orchestra.run.smithi149:> rm -rf /home/ubuntu/cephtest/cephadm 2024-03-11T23:18:43.786 DEBUG:teuthology.orchestra.run.smithi165:> rm -rf /home/ubuntu/cephtest/cephadm 2024-03-11T23:18:43.792 INFO:tasks.cephadm:Teardown complete 2024-03-11T23:18:43.792 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-03-11T23:18:43.805 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi149:/dev/vg_nvme/lv_1... 2024-03-11T23:18:43.806 DEBUG:teuthology.orchestra.run.smithi149:> sudo nvme disconnect -n lv_1 2024-03-11T23:18:44.078 INFO:teuthology.orchestra.run.smithi149.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-03-11T23:18:44.079 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T23:18:44.080 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi149:/dev/vg_nvme/lv_2... 2024-03-11T23:18:44.080 DEBUG:teuthology.orchestra.run.smithi149:> sudo nvme disconnect -n lv_2 2024-03-11T23:18:44.330 INFO:teuthology.orchestra.run.smithi149.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-03-11T23:18:44.331 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T23:18:44.332 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi149:/dev/vg_nvme/lv_3... 2024-03-11T23:18:44.332 DEBUG:teuthology.orchestra.run.smithi149:> sudo nvme disconnect -n lv_3 2024-03-11T23:18:44.658 INFO:teuthology.orchestra.run.smithi149.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-03-11T23:18:44.659 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T23:18:44.660 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi149:/dev/vg_nvme/lv_4... 2024-03-11T23:18:44.660 DEBUG:teuthology.orchestra.run.smithi149:> sudo nvme disconnect -n lv_4 2024-03-11T23:18:44.922 INFO:teuthology.orchestra.run.smithi149.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-03-11T23:18:44.923 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T23:18:44.924 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2024-03-11T23:18:44.924 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/scratch_devs 2024-03-11T23:18:44.936 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi165:/dev/vg_nvme/lv_1... 2024-03-11T23:18:44.937 DEBUG:teuthology.orchestra.run.smithi165:> sudo nvme disconnect -n lv_1 2024-03-11T23:18:45.216 INFO:teuthology.orchestra.run.smithi165.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-03-11T23:18:45.217 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T23:18:45.217 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi165:/dev/vg_nvme/lv_2... 2024-03-11T23:18:45.217 DEBUG:teuthology.orchestra.run.smithi165:> sudo nvme disconnect -n lv_2 2024-03-11T23:18:45.532 INFO:teuthology.orchestra.run.smithi165.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-03-11T23:18:45.533 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T23:18:45.534 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi165:/dev/vg_nvme/lv_3... 2024-03-11T23:18:45.534 DEBUG:teuthology.orchestra.run.smithi165:> sudo nvme disconnect -n lv_3 2024-03-11T23:18:45.819 INFO:teuthology.orchestra.run.smithi165.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-03-11T23:18:45.821 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T23:18:45.821 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi165:/dev/vg_nvme/lv_4... 2024-03-11T23:18:45.821 DEBUG:teuthology.orchestra.run.smithi165:> sudo nvme disconnect -n lv_4 2024-03-11T23:18:46.107 INFO:teuthology.orchestra.run.smithi165.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-03-11T23:18:46.109 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T23:18:46.109 DEBUG:teuthology.orchestra.run.smithi165:> set -ex 2024-03-11T23:18:46.109 DEBUG:teuthology.orchestra.run.smithi165:> sudo dd of=/scratch_devs 2024-03-11T23:18:46.122 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-03-11T23:18:46.135 INFO:teuthology.task.clock:Checking final clock skew... 2024-03-11T23:18:46.137 DEBUG:teuthology.orchestra.run.smithi149:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-11T23:18:46.139 DEBUG:teuthology.orchestra.run.smithi165:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-11T23:18:46.152 INFO:teuthology.orchestra.run.smithi149.stdout: remote refid st t when poll reach delay offset jitter 2024-03-11T23:18:46.152 INFO:teuthology.orchestra.run.smithi149.stdout:============================================================================== 2024-03-11T23:18:46.152 INFO:teuthology.orchestra.run.smithi149.stdout:*hv01.front.sepi 44.4.53.2 2 u 21 64 377 0.085 -8.194 2.048 2024-03-11T23:18:46.153 INFO:teuthology.orchestra.run.smithi149.stdout:+hv02.front.sepi 63.231.80.2 3 u 28 64 377 0.077 -4.080 2.185 2024-03-11T23:18:46.153 INFO:teuthology.orchestra.run.smithi149.stdout:+hv03.front.sepi 74.6.168.72 3 u 22 64 377 0.094 -4.626 2.141 2024-03-11T23:18:46.153 INFO:teuthology.orchestra.run.smithi149.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-03-11T23:18:46.174 INFO:teuthology.orchestra.run.smithi165.stdout: remote refid st t when poll reach delay offset jitter 2024-03-11T23:18:46.175 INFO:teuthology.orchestra.run.smithi165.stdout:============================================================================== 2024-03-11T23:18:46.175 INFO:teuthology.orchestra.run.smithi165.stdout:*hv01.front.sepi 44.4.53.2 2 u 20 64 377 0.105 -5.052 0.797 2024-03-11T23:18:46.175 INFO:teuthology.orchestra.run.smithi165.stdout:+hv02.front.sepi 63.231.80.2 3 u 23 64 377 0.089 +0.391 1.146 2024-03-11T23:18:46.175 INFO:teuthology.orchestra.run.smithi165.stdout:+hv03.front.sepi 74.6.168.72 3 u 17 64 377 0.085 -0.512 0.911 2024-03-11T23:18:46.175 INFO:teuthology.orchestra.run.smithi165.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-03-11T23:18:46.176 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-03-11T23:18:46.187 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-03-11T23:18:46.188 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-03-11T23:18:46.201 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-03-11T23:18:46.213 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-03-11T23:18:46.224 INFO:teuthology.task.internal:Duration was 1304.600251 seconds 2024-03-11T23:18:46.225 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-03-11T23:18:46.236 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-03-11T23:18:46.237 DEBUG:teuthology.orchestra.run.smithi149:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-11T23:18:46.239 DEBUG:teuthology.orchestra.run.smithi165:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-11T23:18:46.277 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-03-11T23:18:46.277 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi149.front.sepia.ceph.com 2024-03-11T23:18:46.277 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T23:18:46.331 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi165.front.sepia.ceph.com 2024-03-11T23:18:46.331 DEBUG:teuthology.orchestra.run.smithi165:> 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-11T23:18:46.341 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-03-11T23:18:46.342 DEBUG:teuthology.orchestra.run.smithi149:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-11T23:18:46.375 DEBUG:teuthology.orchestra.run.smithi165:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-11T23:18:46.418 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-03-11T23:18:46.419 DEBUG:teuthology.orchestra.run.smithi149:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-11T23:18:46.463 DEBUG:teuthology.orchestra.run.smithi165:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-11T23:18:46.573 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-03-11T23:18:46.584 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-03-11T23:18:46.584 DEBUG:teuthology.orchestra.run.smithi149:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-11T23:18:46.595 DEBUG:teuthology.orchestra.run.smithi165:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-11T23:18:46.608 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-03-11T23:18:46.639 DEBUG:teuthology.orchestra.run.smithi149:> 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-11T23:18:46.642 DEBUG:teuthology.orchestra.run.smithi165:> 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-11T23:18:46.650 INFO:teuthology.orchestra.run.smithi149.stdout:kernel.core_pattern = core 2024-03-11T23:18:46.662 INFO:teuthology.orchestra.run.smithi165.stdout:kernel.core_pattern = core 2024-03-11T23:18:46.689 DEBUG:teuthology.orchestra.run.smithi149:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-11T23:18:46.725 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T23:18:46.726 DEBUG:teuthology.orchestra.run.smithi165:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-11T23:18:46.734 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-11T23:18:46.735 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-03-11T23:18:46.747 INFO:teuthology.task.internal:Transferring archived files... 2024-03-11T23:18:46.748 DEBUG:teuthology.misc:Transferring archived files from smithi149:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037/remote/smithi149 2024-03-11T23:18:46.748 DEBUG:teuthology.orchestra.run.smithi149:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-11T23:18:46.794 DEBUG:teuthology.misc:Transferring archived files from smithi165:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037/remote/smithi165 2024-03-11T23:18:46.794 DEBUG:teuthology.orchestra.run.smithi165:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-11T23:18:46.816 INFO:teuthology.task.internal:Removing archive directory... 2024-03-11T23:18:46.816 DEBUG:teuthology.orchestra.run.smithi149:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-11T23:18:46.831 DEBUG:teuthology.orchestra.run.smithi165:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-11T23:18:46.863 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-03-11T23:18:46.876 INFO:teuthology.task.internal:Not uploading archives. 2024-03-11T23:18:46.876 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-03-11T23:18:46.889 INFO:teuthology.task.internal:Tidying up after the test... 2024-03-11T23:18:46.889 DEBUG:teuthology.orchestra.run.smithi149:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-11T23:18:46.891 DEBUG:teuthology.orchestra.run.smithi165:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-11T23:18:46.895 INFO:teuthology.orchestra.run.smithi149.stdout: 658623 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 11 23:18 /home/ubuntu/cephtest 2024-03-11T23:18:46.912 INFO:teuthology.orchestra.run.smithi165.stdout: 658615 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 11 23:18 /home/ubuntu/cephtest 2024-03-11T23:18:46.913 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-03-11T23:18:46.925 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-03-11T23:18:46.952 INFO:teuthology.nuke:Checking targets against current locks 2024-03-11T23:18:46.976 DEBUG:teuthology.nuke:shortname: smithi149 2024-03-11T23:18:46.976 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-11T23:18:47.000 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi149.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037', '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-11 22:48:05.761226', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKknTNXhsuVyrIIUPBUDmy6rluM288T3c3k6jSEHLZNNoScBAv6DVAMtLK/XSGyUL0PqXosUsjcd19eXDC5yvH8='} 2024-03-11T23:18:47.004 DEBUG:teuthology.nuke:shortname: smithi165 2024-03-11T23:18:47.005 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-11T23:18:47.028 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi165.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-11_21:08:02-orch-squid-distro-default-smithi/7592037', '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-11 22:48:05.762585', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDqZutkikeBLEBOYOSi+CPymWt7xWdsvqT7a4OH7yUZaJIN8J2p1aBgYQqAgkBlcKBcVlZa8vwdFeHuSNVLqiYs='} 2024-03-11T23:18:47.055 INFO:teuthology.orchestra.console.smithi149:Power off 2024-03-11T23:18:47.055 DEBUG:teuthology.orchestra.console.smithi149:pexpect command: ipmitool -H smithi149.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-11T23:18:47.079 DEBUG:teuthology.orchestra.console.smithi149:power off output: Chassis Power Control: Down/Off 2024-03-11T23:18:47.080 DEBUG:teuthology.orchestra.console.smithi149:pexpect command: ipmitool -H smithi149.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-11T23:18:47.096 INFO:teuthology.orchestra.console.smithi165:Power off 2024-03-11T23:18:47.096 DEBUG:teuthology.orchestra.console.smithi165:pexpect command: ipmitool -H smithi165.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-11T23:18:47.105 DEBUG:teuthology.orchestra.console.smithi149:check power output: Chassis Power is on 2024-03-11T23:18:47.118 DEBUG:teuthology.orchestra.console.smithi165:power off output: Chassis Power Control: Down/Off 2024-03-11T23:18:47.118 DEBUG:teuthology.orchestra.console.smithi165:pexpect command: ipmitool -H smithi165.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-11T23:18:47.142 DEBUG:teuthology.orchestra.console.smithi165:check power output: Chassis Power is on 2024-03-11T23:18:51.106 DEBUG:teuthology.orchestra.console.smithi149:pexpect command: ipmitool -H smithi149.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-11T23:18:51.143 DEBUG:teuthology.orchestra.console.smithi165:pexpect command: ipmitool -H smithi165.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-11T23:18:51.217 DEBUG:teuthology.orchestra.console.smithi149:check power output: Chassis Power is on 2024-03-11T23:18:51.253 DEBUG:teuthology.orchestra.console.smithi165:check power output: Chassis Power is on 2024-03-11T23:18:55.222 DEBUG:teuthology.orchestra.console.smithi149:pexpect command: ipmitool -H smithi149.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-11T23:18:55.254 DEBUG:teuthology.orchestra.console.smithi165:pexpect command: ipmitool -H smithi165.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-11T23:18:55.332 DEBUG:teuthology.orchestra.console.smithi149:check power output: Chassis Power is on 2024-03-11T23:18:55.364 DEBUG:teuthology.orchestra.console.smithi165:check power output: Chassis Power is on 2024-03-11T23:18:59.334 DEBUG:teuthology.orchestra.console.smithi149:pexpect command: ipmitool -H smithi149.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-11T23:18:59.365 DEBUG:teuthology.orchestra.console.smithi165:pexpect command: ipmitool -H smithi165.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-11T23:18:59.445 DEBUG:teuthology.orchestra.console.smithi149:check power output: Chassis Power is off 2024-03-11T23:18:59.474 DEBUG:teuthology.orchestra.console.smithi165:check power output: Chassis Power is off 2024-03-11T23:18:59.546 INFO:teuthology.orchestra.console.smithi149:Power off completed 2024-03-11T23:18:59.576 INFO:teuthology.orchestra.console.smithi165:Power off completed 2024-03-11T23:18:59.680 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: 1304.6002509593964 failure_reason: '"2024-03-11T23:08:42.461924+0000 mon.smithi149 (mon.0) 251 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s)" in cluster log' owner: scheduled_teuthology@teuthology success: false 2024-03-11T23:18:59.680 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-03-11T23:18:59.764 INFO:teuthology.run:FAIL