2024-04-02T06:35:22.274 INFO:root:teuthology version: 0.0.1.dev262+ge691533 2024-04-02T06:35:22.274 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990 --name teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi --description orch/cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} --verbose --owner scheduled_teuthology@teuthology -- /home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990/orig.config.yaml 2024-04-02T06:35:22.310 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-02T06:35:22.388 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990 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: '7634990' kernel: kdb: true sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-01_21:08:08-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: 6cec793d9073f0594e2364b9b687ecaf22424cca ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 6cec793d9073f0594e2364b9b687ecaf22424cca workunit: branch: squid sha1: 6cec793d9073f0594e2364b9b687ecaf22424cca owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 6530 sha1: 6cec793d9073f0594e2364b9b687ecaf22424cca sleep_before_teardown: 0 subset: 52/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_6cec793d9073f0594e2364b9b687ecaf22424cca/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 6cec793d9073f0594e2364b9b687ecaf22424cca targets: smithi037.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKsErhbvX5bPn96KfEGQDrjC/pmWaLul97+Q5i871aQ+me//apNn20mwENM6aHbX9JdqmOO4p3dKcwE9bZBV1LI= smithi052.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLs1MrrrNvcTBkFNc9knwOPrsSci4C9Wg/jMbE7xxaj1t9hNT6QDf3yX/D/JUKHdz6JwbuvdIjwLnJiDuGcAQzQ= 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-04-01_21:08:08 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-02T06:35:22.388 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_6cec793d9073f0594e2364b9b687ecaf22424cca/qa; will attempt to use it 2024-04-02T06:35:22.389 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_6cec793d9073f0594e2364b9b687ecaf22424cca/qa/tasks 2024-04-02T06:35:22.389 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-02T06:35:22.391 INFO:teuthology.task.internal:Checking packages... 2024-04-02T06:35:22.415 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '6cec793d9073f0594e2364b9b687ecaf22424cca' 2024-04-02T06:35:22.415 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-02T06:35:22.415 INFO:teuthology.packaging:ref: None 2024-04-02T06:35:22.415 INFO:teuthology.packaging:tag: None 2024-04-02T06:35:22.415 INFO:teuthology.packaging:branch: squid 2024-04-02T06:35:22.415 INFO:teuthology.packaging:sha1: 6cec793d9073f0594e2364b9b687ecaf22424cca 2024-04-02T06:35:22.416 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-04-02T06:35:22.593 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-1979-g6cec793d-1jammy 2024-04-02T06:35:22.595 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-02T06:35:22.601 INFO:teuthology.task.internal:no buildpackages task found 2024-04-02T06:35:22.601 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-02T06:35:22.621 INFO:teuthology.task.internal:Saving configuration 2024-04-02T06:35:22.634 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-02T06:35:22.640 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-02T06:35:22.664 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi037.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-02 06:29:55.894956', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFHetmsfH0RZjV0KmpSre9jbBIumppp3IGLeAKopff6N'} 2024-04-02T06:35:22.685 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi052.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-02 06:29:55.896097', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ0PkgB/mBg8L8Fnd77AvSKNZFIfdM+Sn4RgTdkyqhZC'} 2024-04-02T06:35:22.685 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-02T06:35:22.690 INFO:teuthology.task.internal:roles: ubuntu@smithi037.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-02T06:35:22.690 INFO:teuthology.task.internal:roles: ubuntu@smithi052.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-02T06:35:22.690 INFO:teuthology.run_tasks:Running task console_log... 2024-04-02T06:35:22.763 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f81fbfff310>, signals=[15]) 2024-04-02T06:35:22.763 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-02T06:35:22.769 INFO:teuthology.task.internal:Opening connections... 2024-04-02T06:35:22.769 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:35:22.771 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi037.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:35:22.853 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi052.front.sepia.ceph.com 2024-04-02T06:35:22.854 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi052.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:35:22.934 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-02T06:35:22.941 DEBUG:teuthology.orchestra.run.smithi037:> uname -m 2024-04-02T06:35:22.946 INFO:teuthology.orchestra.run.smithi037.stdout:x86_64 2024-04-02T06:35:22.946 DEBUG:teuthology.orchestra.run.smithi037:> cat /etc/os-release 2024-04-02T06:35:22.992 INFO:teuthology.orchestra.run.smithi037.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-02T06:35:22.992 INFO:teuthology.orchestra.run.smithi037.stdout:NAME="Ubuntu" 2024-04-02T06:35:22.992 INFO:teuthology.orchestra.run.smithi037.stdout:VERSION_ID="22.04" 2024-04-02T06:35:22.992 INFO:teuthology.orchestra.run.smithi037.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-02T06:35:22.992 INFO:teuthology.orchestra.run.smithi037.stdout:VERSION_CODENAME=jammy 2024-04-02T06:35:22.992 INFO:teuthology.orchestra.run.smithi037.stdout:ID=ubuntu 2024-04-02T06:35:22.992 INFO:teuthology.orchestra.run.smithi037.stdout:ID_LIKE=debian 2024-04-02T06:35:22.993 INFO:teuthology.orchestra.run.smithi037.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-02T06:35:22.993 INFO:teuthology.orchestra.run.smithi037.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-02T06:35:22.993 INFO:teuthology.orchestra.run.smithi037.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-02T06:35:22.993 INFO:teuthology.orchestra.run.smithi037.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-02T06:35:22.993 INFO:teuthology.orchestra.run.smithi037.stdout:UBUNTU_CODENAME=jammy 2024-04-02T06:35:22.993 INFO:teuthology.lock.ops:Updating smithi037.front.sepia.ceph.com on lock server 2024-04-02T06:35:23.016 DEBUG:teuthology.orchestra.run.smithi052:> uname -m 2024-04-02T06:35:23.021 INFO:teuthology.orchestra.run.smithi052.stdout:x86_64 2024-04-02T06:35:23.021 DEBUG:teuthology.orchestra.run.smithi052:> cat /etc/os-release 2024-04-02T06:35:23.070 INFO:teuthology.orchestra.run.smithi052.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-02T06:35:23.070 INFO:teuthology.orchestra.run.smithi052.stdout:NAME="Ubuntu" 2024-04-02T06:35:23.070 INFO:teuthology.orchestra.run.smithi052.stdout:VERSION_ID="22.04" 2024-04-02T06:35:23.070 INFO:teuthology.orchestra.run.smithi052.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-02T06:35:23.070 INFO:teuthology.orchestra.run.smithi052.stdout:VERSION_CODENAME=jammy 2024-04-02T06:35:23.070 INFO:teuthology.orchestra.run.smithi052.stdout:ID=ubuntu 2024-04-02T06:35:23.071 INFO:teuthology.orchestra.run.smithi052.stdout:ID_LIKE=debian 2024-04-02T06:35:23.071 INFO:teuthology.orchestra.run.smithi052.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-02T06:35:23.071 INFO:teuthology.orchestra.run.smithi052.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-02T06:35:23.071 INFO:teuthology.orchestra.run.smithi052.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-02T06:35:23.071 INFO:teuthology.orchestra.run.smithi052.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-02T06:35:23.071 INFO:teuthology.orchestra.run.smithi052.stdout:UBUNTU_CODENAME=jammy 2024-04-02T06:35:23.071 INFO:teuthology.lock.ops:Updating smithi052.front.sepia.ceph.com on lock server 2024-04-02T06:35:23.090 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-02T06:35:23.099 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-02T06:35:23.104 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-02T06:35:23.104 DEBUG:teuthology.orchestra.run.smithi037:> test '!' -e /home/ubuntu/cephtest 2024-04-02T06:35:23.106 DEBUG:teuthology.orchestra.run.smithi052:> test '!' -e /home/ubuntu/cephtest 2024-04-02T06:35:23.117 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-02T06:35:23.123 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-02T06:35:23.123 DEBUG:teuthology.orchestra.run.smithi037:> test -z $(ls -A /var/lib/ceph) 2024-04-02T06:35:23.153 DEBUG:teuthology.orchestra.run.smithi052:> test -z $(ls -A /var/lib/ceph) 2024-04-02T06:35:23.164 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-02T06:35:23.217 INFO:teuthology.run_tasks:Running task kernel... 2024-04-02T06:35:23.231 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-04-02T06:35:23.232 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-04-02T06:35:23.232 DEBUG:teuthology.orchestra.run.smithi037:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-02T06:35:23.232 DEBUG:teuthology.orchestra.run.smithi052:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-02T06:35:23.237 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T06:35:23.237 DEBUG:teuthology.orchestra.run.smithi037:> uname -r 2024-04-02T06:35:23.238 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T06:35:23.239 DEBUG:teuthology.orchestra.run.smithi052:> uname -r 2024-04-02T06:35:23.284 INFO:teuthology.orchestra.run.smithi037.stdout:5.15.0-56-generic 2024-04-02T06:35:23.285 INFO:teuthology.task.kernel:Running kernel on smithi037: 5.15.0-56-generic 2024-04-02T06:35:23.285 DEBUG:teuthology.orchestra.run.smithi037:> sudo apt-get clean 2024-04-02T06:35:23.287 INFO:teuthology.orchestra.run.smithi052.stdout:5.15.0-56-generic 2024-04-02T06:35:23.287 INFO:teuthology.task.kernel:Running kernel on smithi052: 5.15.0-56-generic 2024-04-02T06:35:23.287 DEBUG:teuthology.orchestra.run.smithi052:> sudo apt-get clean 2024-04-02T06:35:23.412 DEBUG:teuthology.orchestra.run.smithi052:> sudo apt-get update 2024-04-02T06:35:23.433 DEBUG:teuthology.orchestra.run.smithi037:> sudo apt-get update 2024-04-02T06:35:23.635 INFO:teuthology.orchestra.run.smithi052.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-02T06:35:23.640 INFO:teuthology.orchestra.run.smithi037.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-02T06:35:23.676 INFO:teuthology.orchestra.run.smithi037.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-02T06:35:23.712 INFO:teuthology.orchestra.run.smithi037.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-02T06:35:23.728 INFO:teuthology.orchestra.run.smithi052.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-02T06:35:23.789 INFO:teuthology.orchestra.run.smithi037.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-02T06:35:23.802 INFO:teuthology.orchestra.run.smithi052.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-02T06:35:23.892 INFO:teuthology.orchestra.run.smithi037.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [602 kB] 2024-04-02T06:35:23.977 INFO:teuthology.orchestra.run.smithi052.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,303 kB] 2024-04-02T06:35:24.023 INFO:teuthology.orchestra.run.smithi037.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,519 kB] 2024-04-02T06:35:24.096 INFO:teuthology.orchestra.run.smithi037.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [293 kB] 2024-04-02T06:35:24.106 INFO:teuthology.orchestra.run.smithi037.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-02T06:35:24.107 INFO:teuthology.orchestra.run.smithi037.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,644 kB] 2024-04-02T06:35:24.157 INFO:teuthology.orchestra.run.smithi037.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-04-02T06:35:24.157 INFO:teuthology.orchestra.run.smithi037.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [274 kB] 2024-04-02T06:35:24.161 INFO:teuthology.orchestra.run.smithi037.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,303 kB] 2024-04-02T06:35:24.168 INFO:teuthology.orchestra.run.smithi037.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-02T06:35:24.168 INFO:teuthology.orchestra.run.smithi037.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [698 kB] 2024-04-02T06:35:24.172 INFO:teuthology.orchestra.run.smithi052.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-02T06:35:24.187 INFO:teuthology.orchestra.run.smithi037.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,060 kB] 2024-04-02T06:35:24.210 INFO:teuthology.orchestra.run.smithi037.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [241 kB] 2024-04-02T06:35:24.279 INFO:teuthology.orchestra.run.smithi037.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-02T06:35:24.280 INFO:teuthology.orchestra.run.smithi052.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [436 kB] 2024-04-02T06:35:24.280 INFO:teuthology.orchestra.run.smithi037.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.6 kB] 2024-04-02T06:35:24.288 INFO:teuthology.orchestra.run.smithi052.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [233 kB] 2024-04-02T06:35:24.295 INFO:teuthology.orchestra.run.smithi052.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-02T06:35:24.302 INFO:teuthology.orchestra.run.smithi052.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,616 kB] 2024-04-02T06:35:24.314 INFO:teuthology.orchestra.run.smithi052.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [602 kB] 2024-04-02T06:35:24.336 INFO:teuthology.orchestra.run.smithi037.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-02T06:35:24.336 INFO:teuthology.orchestra.run.smithi037.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.0 kB] 2024-04-02T06:35:24.337 INFO:teuthology.orchestra.run.smithi037.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-02T06:35:24.337 INFO:teuthology.orchestra.run.smithi037.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-02T06:35:24.339 INFO:teuthology.orchestra.run.smithi037.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-02T06:35:24.340 INFO:teuthology.orchestra.run.smithi037.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-02T06:35:24.340 INFO:teuthology.orchestra.run.smithi037.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-02T06:35:24.341 INFO:teuthology.orchestra.run.smithi037.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-02T06:35:24.341 INFO:teuthology.orchestra.run.smithi037.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-02T06:35:24.346 INFO:teuthology.orchestra.run.smithi052.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-04-02T06:35:24.347 INFO:teuthology.orchestra.run.smithi052.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [271 kB] 2024-04-02T06:35:24.360 INFO:teuthology.orchestra.run.smithi052.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-02T06:35:24.360 INFO:teuthology.orchestra.run.smithi052.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-02T06:35:24.366 INFO:teuthology.orchestra.run.smithi037.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-02T06:35:24.384 INFO:teuthology.orchestra.run.smithi052.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [599 kB] 2024-04-02T06:35:24.399 INFO:teuthology.orchestra.run.smithi052.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-02T06:35:24.403 INFO:teuthology.orchestra.run.smithi037.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-02T06:35:24.416 INFO:teuthology.orchestra.run.smithi052.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-02T06:35:24.417 INFO:teuthology.orchestra.run.smithi052.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-02T06:35:24.417 INFO:teuthology.orchestra.run.smithi052.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-04-02T06:35:24.417 INFO:teuthology.orchestra.run.smithi052.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-04-02T06:35:24.418 INFO:teuthology.orchestra.run.smithi052.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-02T06:35:24.517 INFO:teuthology.orchestra.run.smithi052.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,519 kB] 2024-04-02T06:35:24.577 INFO:teuthology.orchestra.run.smithi037.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [436 kB] 2024-04-02T06:35:24.595 INFO:teuthology.orchestra.run.smithi037.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [233 kB] 2024-04-02T06:35:24.606 INFO:teuthology.orchestra.run.smithi037.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-02T06:35:24.607 INFO:teuthology.orchestra.run.smithi037.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-04-02T06:35:24.608 INFO:teuthology.orchestra.run.smithi037.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,616 kB] 2024-04-02T06:35:24.673 INFO:teuthology.orchestra.run.smithi052.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [293 kB] 2024-04-02T06:35:24.688 INFO:teuthology.orchestra.run.smithi052.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-02T06:35:24.689 INFO:teuthology.orchestra.run.smithi052.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-04-02T06:35:24.691 INFO:teuthology.orchestra.run.smithi052.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,644 kB] 2024-04-02T06:35:24.703 INFO:teuthology.orchestra.run.smithi037.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [271 kB] 2024-04-02T06:35:24.715 INFO:teuthology.orchestra.run.smithi037.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-02T06:35:24.715 INFO:teuthology.orchestra.run.smithi037.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [599 kB] 2024-04-02T06:35:24.739 INFO:teuthology.orchestra.run.smithi037.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-02T06:35:24.755 INFO:teuthology.orchestra.run.smithi052.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [274 kB] 2024-04-02T06:35:24.763 INFO:teuthology.orchestra.run.smithi052.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-02T06:35:24.938 INFO:teuthology.orchestra.run.smithi052.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,060 kB] 2024-04-02T06:35:24.939 INFO:teuthology.orchestra.run.smithi037.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-02T06:35:25.390 INFO:teuthology.orchestra.run.smithi037.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-02T06:35:25.395 INFO:teuthology.orchestra.run.smithi037.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-02T06:35:25.395 INFO:teuthology.orchestra.run.smithi037.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-04-02T06:35:25.410 INFO:teuthology.orchestra.run.smithi037.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-04-02T06:35:25.412 INFO:teuthology.orchestra.run.smithi037.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-02T06:35:25.630 INFO:teuthology.orchestra.run.smithi052.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [698 kB] 2024-04-02T06:35:25.672 INFO:teuthology.orchestra.run.smithi052.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [241 kB] 2024-04-02T06:35:25.685 INFO:teuthology.orchestra.run.smithi052.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-02T06:35:25.687 INFO:teuthology.orchestra.run.smithi052.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-02T06:35:25.687 INFO:teuthology.orchestra.run.smithi052.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.6 kB] 2024-04-02T06:35:25.690 INFO:teuthology.orchestra.run.smithi052.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.0 kB] 2024-04-02T06:35:25.691 INFO:teuthology.orchestra.run.smithi052.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-02T06:35:25.691 INFO:teuthology.orchestra.run.smithi052.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-02T06:35:25.717 INFO:teuthology.orchestra.run.smithi052.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-02T06:35:25.720 INFO:teuthology.orchestra.run.smithi052.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-02T06:35:25.888 INFO:teuthology.orchestra.run.smithi052.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-02T06:35:25.971 INFO:teuthology.orchestra.run.smithi052.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-02T06:35:26.056 INFO:teuthology.orchestra.run.smithi052.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-02T06:35:26.144 INFO:teuthology.orchestra.run.smithi052.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-02T06:35:26.178 INFO:teuthology.orchestra.run.smithi052.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-02T06:35:30.048 INFO:teuthology.orchestra.run.smithi037.stdout:Fetched 12.6 MB in 2s (6,334 kB/s) 2024-04-02T06:35:30.781 INFO:teuthology.orchestra.run.smithi052.stdout:Fetched 12.6 MB in 3s (4,658 kB/s) 2024-04-02T06:35:31.329 INFO:teuthology.orchestra.run.smithi037.stdout:Reading package lists... 2024-04-02T06:35:31.346 DEBUG:teuthology.orchestra.run.smithi037:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-02T06:35:31.411 INFO:teuthology.orchestra.run.smithi037.stdout:Reading package lists... 2024-04-02T06:35:31.610 INFO:teuthology.orchestra.run.smithi037.stdout:Building dependency tree... 2024-04-02T06:35:31.611 INFO:teuthology.orchestra.run.smithi037.stdout:Reading state information... 2024-04-02T06:35:31.791 INFO:teuthology.orchestra.run.smithi037.stdout:The following packages were automatically installed and are no longer required: 2024-04-02T06:35:31.791 INFO:teuthology.orchestra.run.smithi037.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-02T06:35:31.792 INFO:teuthology.orchestra.run.smithi037.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-02T06:35:31.792 INFO:teuthology.orchestra.run.smithi037.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-02T06:35:31.792 INFO:teuthology.orchestra.run.smithi037.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-02T06:35:31.792 INFO:teuthology.orchestra.run.smithi037.stdout: python2.7-minimal 2024-04-02T06:35:31.792 INFO:teuthology.orchestra.run.smithi037.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-02T06:35:31.794 INFO:teuthology.orchestra.run.smithi037.stdout:The following additional packages will be installed: 2024-04-02T06:35:31.794 INFO:teuthology.orchestra.run.smithi037.stdout: linux-generic linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-04-02T06:35:31.794 INFO:teuthology.orchestra.run.smithi037.stdout: linux-headers-generic linux-image-5.15.0-101-generic 2024-04-02T06:35:31.794 INFO:teuthology.orchestra.run.smithi037.stdout: linux-modules-5.15.0-101-generic linux-modules-extra-5.15.0-101-generic 2024-04-02T06:35:31.795 INFO:teuthology.orchestra.run.smithi037.stdout:Suggested packages: 2024-04-02T06:35:31.795 INFO:teuthology.orchestra.run.smithi037.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-02T06:35:31.796 INFO:teuthology.orchestra.run.smithi037.stdout:Recommended packages: 2024-04-02T06:35:31.796 INFO:teuthology.orchestra.run.smithi037.stdout: thermald 2024-04-02T06:35:31.849 INFO:teuthology.orchestra.run.smithi037.stdout:The following NEW packages will be installed: 2024-04-02T06:35:31.849 INFO:teuthology.orchestra.run.smithi037.stdout: linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-04-02T06:35:31.849 INFO:teuthology.orchestra.run.smithi037.stdout: linux-image-5.15.0-101-generic linux-modules-5.15.0-101-generic 2024-04-02T06:35:31.849 INFO:teuthology.orchestra.run.smithi037.stdout: linux-modules-extra-5.15.0-101-generic 2024-04-02T06:35:31.851 INFO:teuthology.orchestra.run.smithi037.stdout:The following packages will be upgraded: 2024-04-02T06:35:31.851 INFO:teuthology.orchestra.run.smithi037.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-02T06:35:32.034 INFO:teuthology.orchestra.run.smithi037.stdout:3 upgraded, 5 newly installed, 0 to remove and 312 not upgraded. 2024-04-02T06:35:32.034 INFO:teuthology.orchestra.run.smithi037.stdout:Need to get 113 MB of archives. 2024-04-02T06:35:32.034 INFO:teuthology.orchestra.run.smithi037.stdout:After this operation, 582 MB of additional disk space will be used. 2024-04-02T06:35:32.034 INFO:teuthology.orchestra.run.smithi037.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-101-generic amd64 5.15.0-101.111 [22.6 MB] 2024-04-02T06:35:32.195 INFO:teuthology.orchestra.run.smithi052.stdout:Reading package lists... 2024-04-02T06:35:32.214 DEBUG:teuthology.orchestra.run.smithi052:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-02T06:35:32.279 INFO:teuthology.orchestra.run.smithi052.stdout:Reading package lists... 2024-04-02T06:35:32.482 INFO:teuthology.orchestra.run.smithi052.stdout:Building dependency tree... 2024-04-02T06:35:32.482 INFO:teuthology.orchestra.run.smithi052.stdout:Reading state information... 2024-04-02T06:35:32.660 INFO:teuthology.orchestra.run.smithi052.stdout:The following packages were automatically installed and are no longer required: 2024-04-02T06:35:32.660 INFO:teuthology.orchestra.run.smithi052.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-02T06:35:32.660 INFO:teuthology.orchestra.run.smithi052.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-02T06:35:32.661 INFO:teuthology.orchestra.run.smithi052.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-02T06:35:32.661 INFO:teuthology.orchestra.run.smithi052.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-02T06:35:32.661 INFO:teuthology.orchestra.run.smithi052.stdout: python2.7-minimal 2024-04-02T06:35:32.661 INFO:teuthology.orchestra.run.smithi052.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-02T06:35:32.662 INFO:teuthology.orchestra.run.smithi052.stdout:The following additional packages will be installed: 2024-04-02T06:35:32.663 INFO:teuthology.orchestra.run.smithi052.stdout: linux-generic linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-04-02T06:35:32.663 INFO:teuthology.orchestra.run.smithi052.stdout: linux-headers-generic linux-image-5.15.0-101-generic 2024-04-02T06:35:32.663 INFO:teuthology.orchestra.run.smithi052.stdout: linux-modules-5.15.0-101-generic linux-modules-extra-5.15.0-101-generic 2024-04-02T06:35:32.664 INFO:teuthology.orchestra.run.smithi052.stdout:Suggested packages: 2024-04-02T06:35:32.664 INFO:teuthology.orchestra.run.smithi052.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-02T06:35:32.664 INFO:teuthology.orchestra.run.smithi052.stdout:Recommended packages: 2024-04-02T06:35:32.664 INFO:teuthology.orchestra.run.smithi052.stdout: thermald 2024-04-02T06:35:32.713 INFO:teuthology.orchestra.run.smithi052.stdout:The following NEW packages will be installed: 2024-04-02T06:35:32.713 INFO:teuthology.orchestra.run.smithi052.stdout: linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-04-02T06:35:32.713 INFO:teuthology.orchestra.run.smithi052.stdout: linux-image-5.15.0-101-generic linux-modules-5.15.0-101-generic 2024-04-02T06:35:32.713 INFO:teuthology.orchestra.run.smithi052.stdout: linux-modules-extra-5.15.0-101-generic 2024-04-02T06:35:32.714 INFO:teuthology.orchestra.run.smithi052.stdout:The following packages will be upgraded: 2024-04-02T06:35:32.715 INFO:teuthology.orchestra.run.smithi052.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-02T06:35:32.776 INFO:teuthology.orchestra.run.smithi052.stdout:3 upgraded, 5 newly installed, 0 to remove and 312 not upgraded. 2024-04-02T06:35:32.776 INFO:teuthology.orchestra.run.smithi052.stdout:Need to get 113 MB of archives. 2024-04-02T06:35:32.776 INFO:teuthology.orchestra.run.smithi052.stdout:After this operation, 582 MB of additional disk space will be used. 2024-04-02T06:35:32.776 INFO:teuthology.orchestra.run.smithi052.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-101-generic amd64 5.15.0-101.111 [22.6 MB] 2024-04-02T06:35:33.324 INFO:teuthology.orchestra.run.smithi052.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-101-generic amd64 5.15.0-101.111 [11.5 MB] 2024-04-02T06:35:33.465 INFO:teuthology.orchestra.run.smithi052.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-101-generic amd64 5.15.0-101.111 [63.9 MB] 2024-04-02T06:35:33.506 INFO:teuthology.orchestra.run.smithi037.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-101-generic amd64 5.15.0-101.111 [11.5 MB] 2024-04-02T06:35:33.857 INFO:teuthology.orchestra.run.smithi037.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-101-generic amd64 5.15.0-101.111 [63.9 MB] 2024-04-02T06:35:34.792 INFO:teuthology.orchestra.run.smithi052.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.101.98 [1,698 B] 2024-04-02T06:35:34.792 INFO:teuthology.orchestra.run.smithi052.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.101.98 [2,486 B] 2024-04-02T06:35:34.793 INFO:teuthology.orchestra.run.smithi052.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101 all 5.15.0-101.111 [12.3 MB] 2024-04-02T06:35:35.054 INFO:teuthology.orchestra.run.smithi052.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101-generic amd64 5.15.0-101.111 [2,876 kB] 2024-04-02T06:35:35.113 INFO:teuthology.orchestra.run.smithi052.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.101.98 [2,332 B] 2024-04-02T06:35:35.624 INFO:teuthology.orchestra.run.smithi052.stdout:Fetched 113 MB in 2s (47.3 MB/s) 2024-04-02T06:35:35.801 INFO:teuthology.orchestra.run.smithi052.stdout:Selecting previously unselected package linux-modules-5.15.0-101-generic. 2024-04-02T06:35:36.224 INFO:teuthology.orchestra.run.smithi037.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.101.98 [1,698 B] 2024-04-02T06:35:36.224 INFO:teuthology.orchestra.run.smithi037.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.101.98 [2,486 B] 2024-04-02T06:35:36.225 INFO:teuthology.orchestra.run.smithi037.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101 all 5.15.0-101.111 [12.3 MB] 2024-04-02T06:35:36.741 INFO:teuthology.orchestra.run.smithi037.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101-generic amd64 5.15.0-101.111 [2,876 kB] 2024-04-02T06:35:36.852 INFO:teuthology.orchestra.run.smithi037.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.101.98 [2,332 B] 2024-04-02T06:35:37.272 INFO:teuthology.orchestra.run.smithi037.stdout:Fetched 113 MB in 5s (22.7 MB/s) 2024-04-02T06:35:37.468 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package linux-modules-5.15.0-101-generic. 2024-04-02T06:35:37.853 INFO:teuthology.orchestra.run.smithi052.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-04-02T06:35:37.858 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../0-linux-modules-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-04-02T06:35:37.982 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:35:39.466 INFO:teuthology.orchestra.run.smithi037.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-04-02T06:35:39.473 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../0-linux-modules-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-04-02T06:35:39.531 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:35:40.300 INFO:teuthology.orchestra.run.smithi052.stdout:Selecting previously unselected package linux-image-5.15.0-101-generic. 2024-04-02T06:35:40.321 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../1-linux-image-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-04-02T06:35:40.419 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:35:40.944 INFO:teuthology.orchestra.run.smithi052.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-101-generic. 2024-04-02T06:35:40.965 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-04-02T06:35:41.205 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:35:41.573 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package linux-image-5.15.0-101-generic. 2024-04-02T06:35:41.595 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../1-linux-image-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-04-02T06:35:41.685 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:35:42.118 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-101-generic. 2024-04-02T06:35:42.138 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-04-02T06:35:42.184 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:35:48.116 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../3-linux-generic_5.15.0.101.98_amd64.deb ... 2024-04-02T06:35:48.232 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-04-02T06:35:48.591 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.101.98_amd64.deb ... 2024-04-02T06:35:48.736 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-image-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-04-02T06:35:49.056 INFO:teuthology.orchestra.run.smithi052.stdout:Selecting previously unselected package linux-headers-5.15.0-101. 2024-04-02T06:35:49.078 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../5-linux-headers-5.15.0-101_5.15.0-101.111_all.deb ... 2024-04-02T06:35:49.122 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-04-02T06:35:49.142 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../3-linux-generic_5.15.0.101.98_amd64.deb ... 2024-04-02T06:35:49.259 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking linux-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-04-02T06:35:49.560 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.101.98_amd64.deb ... 2024-04-02T06:35:49.681 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking linux-image-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-04-02T06:35:49.967 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package linux-headers-5.15.0-101. 2024-04-02T06:35:49.978 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../5-linux-headers-5.15.0-101_5.15.0-101.111_all.deb ... 2024-04-02T06:35:50.017 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-04-02T06:35:54.973 INFO:teuthology.orchestra.run.smithi052.stdout:Selecting previously unselected package linux-headers-5.15.0-101-generic. 2024-04-02T06:35:55.011 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../6-linux-headers-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-04-02T06:35:55.073 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:35:55.658 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package linux-headers-5.15.0-101-generic. 2024-04-02T06:35:55.696 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../6-linux-headers-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-04-02T06:35:55.733 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:35:58.356 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.101.98_amd64.deb ... 2024-04-02T06:35:58.519 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking linux-headers-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-04-02T06:35:58.535 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.101.98_amd64.deb ... 2024-04-02T06:35:58.660 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-headers-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-04-02T06:35:58.844 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-04-02T06:35:58.965 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:35:59.052 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-04-02T06:35:59.791 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up linux-headers-generic (5.15.0.101.98) ... 2024-04-02T06:35:59.895 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:35:59.998 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:36:00.125 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-headers-generic (5.15.0.101.98) ... 2024-04-02T06:36:00.271 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:36:01.275 INFO:teuthology.orchestra.run.smithi037.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-02T06:36:01.275 INFO:teuthology.orchestra.run.smithi037.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-02T06:36:01.276 INFO:teuthology.orchestra.run.smithi037.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-101-generic 2024-04-02T06:36:01.276 INFO:teuthology.orchestra.run.smithi037.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-101-generic 2024-04-02T06:36:01.441 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:36:01.614 INFO:teuthology.orchestra.run.smithi052.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-02T06:36:01.614 INFO:teuthology.orchestra.run.smithi052.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-02T06:36:01.614 INFO:teuthology.orchestra.run.smithi052.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-101-generic 2024-04-02T06:36:01.614 INFO:teuthology.orchestra.run.smithi052.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-101-generic 2024-04-02T06:36:01.775 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:36:02.883 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:36:03.208 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:36:04.301 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up linux-image-generic (5.15.0.101.98) ... 2024-04-02T06:36:04.402 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up linux-generic (5.15.0.101.98) ... 2024-04-02T06:36:04.520 INFO:teuthology.orchestra.run.smithi037.stdout:Processing triggers for linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:36:04.586 INFO:teuthology.orchestra.run.smithi037.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-02T06:36:04.586 INFO:teuthology.orchestra.run.smithi037.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-101-generic 2024-04-02T06:36:04.601 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-image-generic (5.15.0.101.98) ... 2024-04-02T06:36:04.736 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-generic (5.15.0.101.98) ... 2024-04-02T06:36:04.887 INFO:teuthology.orchestra.run.smithi052.stdout:Processing triggers for linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-04-02T06:36:04.951 INFO:teuthology.orchestra.run.smithi052.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-02T06:36:04.951 INFO:teuthology.orchestra.run.smithi052.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-101-generic 2024-04-02T06:36:19.087 INFO:teuthology.orchestra.run.smithi037.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-02T06:36:19.087 INFO:teuthology.orchestra.run.smithi037.stdout:Sourcing file `/etc/default/grub' 2024-04-02T06:36:19.096 INFO:teuthology.orchestra.run.smithi037.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-02T06:36:19.119 INFO:teuthology.orchestra.run.smithi037.stdout:Generating grub configuration file ... 2024-04-02T06:36:19.391 INFO:teuthology.orchestra.run.smithi037.stdout:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-04-02T06:36:19.413 INFO:teuthology.orchestra.run.smithi037.stdout:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-04-02T06:36:19.676 INFO:teuthology.orchestra.run.smithi037.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-02T06:36:19.681 INFO:teuthology.orchestra.run.smithi037.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-02T06:36:19.756 INFO:teuthology.orchestra.run.smithi037.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-02T06:36:19.762 INFO:teuthology.orchestra.run.smithi037.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-02T06:36:19.910 INFO:teuthology.orchestra.run.smithi037.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-02T06:36:19.910 INFO:teuthology.orchestra.run.smithi037.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-02T06:36:19.911 INFO:teuthology.orchestra.run.smithi037.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-02T06:36:19.951 INFO:teuthology.orchestra.run.smithi037.stdout:done 2024-04-02T06:36:20.340 INFO:teuthology.orchestra.run.smithi052.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-02T06:36:20.340 INFO:teuthology.orchestra.run.smithi052.stdout:Sourcing file `/etc/default/grub' 2024-04-02T06:36:20.361 DEBUG:teuthology.orchestra.run.smithi037:> dpkg -s linux-image-generic 2024-04-02T06:36:20.364 INFO:teuthology.orchestra.run.smithi052.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Package: linux-image-generic 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Status: install ok installed 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Priority: optional 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Section: kernel 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Installed-Size: 21 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Maintainer: Ubuntu Kernel Team 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Architecture: amd64 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Source: linux-meta 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Version: 5.15.0.101.98 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-02T06:36:20.390 INFO:teuthology.orchestra.run.smithi037.stdout:Recommends: thermald 2024-04-02T06:36:20.391 INFO:teuthology.orchestra.run.smithi037.stdout:Description: Generic Linux kernel image 2024-04-02T06:36:20.391 INFO:teuthology.orchestra.run.smithi037.stdout: This package will always depend on the latest generic kernel image 2024-04-02T06:36:20.391 INFO:teuthology.orchestra.run.smithi037.stdout: available. 2024-04-02T06:36:20.391 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-101-generic 2024-04-02T06:36:20.391 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-02T06:36:20.391 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-02T06:36:20.391 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-02T06:36:20.391 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi037.front.sepia.ceph.com, path=None, version=distro) 2024-04-02T06:36:20.391 DEBUG:teuthology.orchestra.run.smithi037:> sudo apt-get clean 2024-04-02T06:36:20.397 INFO:teuthology.orchestra.run.smithi052.stdout:Generating grub configuration file ... 2024-04-02T06:36:20.539 DEBUG:teuthology.orchestra.run.smithi037:> sudo apt-get update 2024-04-02T06:36:20.794 INFO:teuthology.orchestra.run.smithi052.stdout:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-04-02T06:36:20.796 INFO:teuthology.orchestra.run.smithi037.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-02T06:36:20.796 INFO:teuthology.orchestra.run.smithi037.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-02T06:36:20.817 INFO:teuthology.orchestra.run.smithi052.stdout:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-04-02T06:36:20.867 INFO:teuthology.orchestra.run.smithi037.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-02T06:36:20.949 INFO:teuthology.orchestra.run.smithi037.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-02T06:36:21.194 INFO:teuthology.orchestra.run.smithi052.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-02T06:36:21.201 INFO:teuthology.orchestra.run.smithi052.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-02T06:36:21.278 INFO:teuthology.orchestra.run.smithi052.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-02T06:36:21.284 INFO:teuthology.orchestra.run.smithi052.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-02T06:36:21.449 INFO:teuthology.orchestra.run.smithi052.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-02T06:36:21.449 INFO:teuthology.orchestra.run.smithi052.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-02T06:36:21.449 INFO:teuthology.orchestra.run.smithi052.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-02T06:36:21.496 INFO:teuthology.orchestra.run.smithi052.stdout:done 2024-04-02T06:36:22.007 DEBUG:teuthology.orchestra.run.smithi052:> dpkg -s linux-image-generic 2024-04-02T06:36:22.027 INFO:teuthology.orchestra.run.smithi052.stdout:Package: linux-image-generic 2024-04-02T06:36:22.027 INFO:teuthology.orchestra.run.smithi052.stdout:Status: install ok installed 2024-04-02T06:36:22.027 INFO:teuthology.orchestra.run.smithi052.stdout:Priority: optional 2024-04-02T06:36:22.027 INFO:teuthology.orchestra.run.smithi052.stdout:Section: kernel 2024-04-02T06:36:22.027 INFO:teuthology.orchestra.run.smithi052.stdout:Installed-Size: 21 2024-04-02T06:36:22.027 INFO:teuthology.orchestra.run.smithi052.stdout:Maintainer: Ubuntu Kernel Team 2024-04-02T06:36:22.028 INFO:teuthology.orchestra.run.smithi052.stdout:Architecture: amd64 2024-04-02T06:36:22.028 INFO:teuthology.orchestra.run.smithi052.stdout:Source: linux-meta 2024-04-02T06:36:22.028 INFO:teuthology.orchestra.run.smithi052.stdout:Version: 5.15.0.101.98 2024-04-02T06:36:22.028 INFO:teuthology.orchestra.run.smithi052.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-02T06:36:22.028 INFO:teuthology.orchestra.run.smithi052.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-02T06:36:22.028 INFO:teuthology.orchestra.run.smithi052.stdout:Recommends: thermald 2024-04-02T06:36:22.028 INFO:teuthology.orchestra.run.smithi052.stdout:Description: Generic Linux kernel image 2024-04-02T06:36:22.028 INFO:teuthology.orchestra.run.smithi052.stdout: This package will always depend on the latest generic kernel image 2024-04-02T06:36:22.028 INFO:teuthology.orchestra.run.smithi052.stdout: available. 2024-04-02T06:36:22.028 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-101-generic 2024-04-02T06:36:22.028 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-02T06:36:22.028 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-02T06:36:22.028 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-02T06:36:22.029 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi052.front.sepia.ceph.com, path=None, version=distro) 2024-04-02T06:36:22.029 DEBUG:teuthology.orchestra.run.smithi052:> sudo apt-get clean 2024-04-02T06:36:22.210 DEBUG:teuthology.orchestra.run.smithi052:> sudo apt-get update 2024-04-02T06:36:22.224 INFO:teuthology.orchestra.run.smithi037.stdout:Reading package lists... 2024-04-02T06:36:22.243 DEBUG:teuthology.orchestra.run.smithi037:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-02T06:36:22.307 INFO:teuthology.orchestra.run.smithi037.stdout:Reading package lists... 2024-04-02T06:36:22.454 INFO:teuthology.orchestra.run.smithi052.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-02T06:36:22.454 INFO:teuthology.orchestra.run.smithi052.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-02T06:36:22.509 INFO:teuthology.orchestra.run.smithi037.stdout:Building dependency tree... 2024-04-02T06:36:22.510 INFO:teuthology.orchestra.run.smithi037.stdout:Reading state information... 2024-04-02T06:36:22.524 INFO:teuthology.orchestra.run.smithi052.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-02T06:36:22.606 INFO:teuthology.orchestra.run.smithi052.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-02T06:36:22.682 INFO:teuthology.orchestra.run.smithi037.stdout:linux-image-generic is already the newest version (5.15.0.101.98). 2024-04-02T06:36:22.682 INFO:teuthology.orchestra.run.smithi037.stdout:The following packages were automatically installed and are no longer required: 2024-04-02T06:36:22.683 INFO:teuthology.orchestra.run.smithi037.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-02T06:36:22.683 INFO:teuthology.orchestra.run.smithi037.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-02T06:36:22.683 INFO:teuthology.orchestra.run.smithi037.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-02T06:36:22.683 INFO:teuthology.orchestra.run.smithi037.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-02T06:36:22.683 INFO:teuthology.orchestra.run.smithi037.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-02T06:36:22.683 INFO:teuthology.orchestra.run.smithi037.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-02T06:36:22.723 INFO:teuthology.orchestra.run.smithi037.stdout:0 upgraded, 0 newly installed, 0 to remove and 312 not upgraded. 2024-04-02T06:36:22.725 DEBUG:teuthology.orchestra.run.smithi037:> dpkg -s linux-image-generic 2024-04-02T06:36:22.741 INFO:teuthology.orchestra.run.smithi037.stdout:Package: linux-image-generic 2024-04-02T06:36:22.741 INFO:teuthology.orchestra.run.smithi037.stdout:Status: install ok installed 2024-04-02T06:36:22.741 INFO:teuthology.orchestra.run.smithi037.stdout:Priority: optional 2024-04-02T06:36:22.741 INFO:teuthology.orchestra.run.smithi037.stdout:Section: kernel 2024-04-02T06:36:22.741 INFO:teuthology.orchestra.run.smithi037.stdout:Installed-Size: 21 2024-04-02T06:36:22.741 INFO:teuthology.orchestra.run.smithi037.stdout:Maintainer: Ubuntu Kernel Team 2024-04-02T06:36:22.741 INFO:teuthology.orchestra.run.smithi037.stdout:Architecture: amd64 2024-04-02T06:36:22.741 INFO:teuthology.orchestra.run.smithi037.stdout:Source: linux-meta 2024-04-02T06:36:22.741 INFO:teuthology.orchestra.run.smithi037.stdout:Version: 5.15.0.101.98 2024-04-02T06:36:22.742 INFO:teuthology.orchestra.run.smithi037.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-02T06:36:22.742 INFO:teuthology.orchestra.run.smithi037.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-02T06:36:22.742 INFO:teuthology.orchestra.run.smithi037.stdout:Recommends: thermald 2024-04-02T06:36:22.742 INFO:teuthology.orchestra.run.smithi037.stdout:Description: Generic Linux kernel image 2024-04-02T06:36:22.742 INFO:teuthology.orchestra.run.smithi037.stdout: This package will always depend on the latest generic kernel image 2024-04-02T06:36:22.742 INFO:teuthology.orchestra.run.smithi037.stdout: available. 2024-04-02T06:36:22.742 DEBUG:teuthology.orchestra.run.smithi037:> mktemp 2024-04-02T06:36:22.787 INFO:teuthology.orchestra.run.smithi037.stdout:/tmp/tmp.a1aDmaiGd2 2024-04-02T06:36:22.787 DEBUG:teuthology.orchestra.run.smithi037:> sudo cp /boot/grub/grub.cfg /tmp/tmp.a1aDmaiGd2 2024-04-02T06:36:22.841 DEBUG:teuthology.orchestra.run.smithi037:> sudo chmod 0666 /tmp/tmp.a1aDmaiGd2 2024-04-02T06:36:22.956 DEBUG:teuthology.orchestra.remote:smithi037:/tmp/tmp.a1aDmaiGd2 is 10KB 2024-04-02T06:36:22.969 DEBUG:teuthology.orchestra.run.smithi037:> rm -fr /tmp/tmp.a1aDmaiGd2 2024-04-02T06:36:22.974 DEBUG:teuthology.orchestra.run.smithi037:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-02T06:36:23.025 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:36:23.025 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-02T06:36:23.025 DEBUG:teuthology.orchestra.run.smithi037:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-02T06:36:23.097 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-101-generic 2024-04-02T06:36:23.097 DEBUG:teuthology.orchestra.run.smithi037:> sudo update-grub 2024-04-02T06:36:23.889 INFO:teuthology.orchestra.run.smithi052.stdout:Reading package lists... 2024-04-02T06:36:23.908 DEBUG:teuthology.orchestra.run.smithi052:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-02T06:36:23.970 INFO:teuthology.orchestra.run.smithi052.stdout:Reading package lists... 2024-04-02T06:36:24.181 INFO:teuthology.orchestra.run.smithi052.stdout:Building dependency tree... 2024-04-02T06:36:24.181 INFO:teuthology.orchestra.run.smithi052.stdout:Reading state information... 2024-04-02T06:36:24.256 INFO:teuthology.orchestra.run.smithi037.stderr:Sourcing file `/etc/default/grub' 2024-04-02T06:36:24.257 INFO:teuthology.orchestra.run.smithi037.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-02T06:36:24.259 INFO:teuthology.orchestra.run.smithi037.stderr:Generating grub configuration file ... 2024-04-02T06:36:24.365 INFO:teuthology.orchestra.run.smithi052.stdout:linux-image-generic is already the newest version (5.15.0.101.98). 2024-04-02T06:36:24.365 INFO:teuthology.orchestra.run.smithi052.stdout:The following packages were automatically installed and are no longer required: 2024-04-02T06:36:24.365 INFO:teuthology.orchestra.run.smithi052.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-02T06:36:24.365 INFO:teuthology.orchestra.run.smithi052.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-02T06:36:24.365 INFO:teuthology.orchestra.run.smithi052.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-02T06:36:24.366 INFO:teuthology.orchestra.run.smithi052.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-02T06:36:24.366 INFO:teuthology.orchestra.run.smithi052.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-02T06:36:24.366 INFO:teuthology.orchestra.run.smithi052.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-02T06:36:24.409 INFO:teuthology.orchestra.run.smithi052.stdout:0 upgraded, 0 newly installed, 0 to remove and 312 not upgraded. 2024-04-02T06:36:24.411 DEBUG:teuthology.orchestra.run.smithi052:> dpkg -s linux-image-generic 2024-04-02T06:36:24.424 INFO:teuthology.orchestra.run.smithi052.stdout:Package: linux-image-generic 2024-04-02T06:36:24.424 INFO:teuthology.orchestra.run.smithi052.stdout:Status: install ok installed 2024-04-02T06:36:24.424 INFO:teuthology.orchestra.run.smithi052.stdout:Priority: optional 2024-04-02T06:36:24.424 INFO:teuthology.orchestra.run.smithi052.stdout:Section: kernel 2024-04-02T06:36:24.424 INFO:teuthology.orchestra.run.smithi052.stdout:Installed-Size: 21 2024-04-02T06:36:24.424 INFO:teuthology.orchestra.run.smithi052.stdout:Maintainer: Ubuntu Kernel Team 2024-04-02T06:36:24.425 INFO:teuthology.orchestra.run.smithi052.stdout:Architecture: amd64 2024-04-02T06:36:24.425 INFO:teuthology.orchestra.run.smithi052.stdout:Source: linux-meta 2024-04-02T06:36:24.425 INFO:teuthology.orchestra.run.smithi052.stdout:Version: 5.15.0.101.98 2024-04-02T06:36:24.425 INFO:teuthology.orchestra.run.smithi052.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-02T06:36:24.425 INFO:teuthology.orchestra.run.smithi052.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-02T06:36:24.425 INFO:teuthology.orchestra.run.smithi052.stdout:Recommends: thermald 2024-04-02T06:36:24.425 INFO:teuthology.orchestra.run.smithi052.stdout:Description: Generic Linux kernel image 2024-04-02T06:36:24.425 INFO:teuthology.orchestra.run.smithi052.stdout: This package will always depend on the latest generic kernel image 2024-04-02T06:36:24.425 INFO:teuthology.orchestra.run.smithi052.stdout: available. 2024-04-02T06:36:24.425 DEBUG:teuthology.orchestra.run.smithi052:> mktemp 2024-04-02T06:36:24.441 INFO:teuthology.orchestra.run.smithi037.stderr:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-04-02T06:36:24.447 INFO:teuthology.orchestra.run.smithi037.stderr:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-04-02T06:36:24.470 INFO:teuthology.orchestra.run.smithi052.stdout:/tmp/tmp.T1EitflFbn 2024-04-02T06:36:24.470 DEBUG:teuthology.orchestra.run.smithi052:> sudo cp /boot/grub/grub.cfg /tmp/tmp.T1EitflFbn 2024-04-02T06:36:24.530 DEBUG:teuthology.orchestra.run.smithi052:> sudo chmod 0666 /tmp/tmp.T1EitflFbn 2024-04-02T06:36:24.651 DEBUG:teuthology.orchestra.remote:smithi052:/tmp/tmp.T1EitflFbn is 10KB 2024-04-02T06:36:24.660 INFO:teuthology.orchestra.run.smithi037.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-02T06:36:24.664 DEBUG:teuthology.orchestra.run.smithi052:> rm -fr /tmp/tmp.T1EitflFbn 2024-04-02T06:36:24.665 INFO:teuthology.orchestra.run.smithi037.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-02T06:36:24.669 DEBUG:teuthology.orchestra.run.smithi052:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-02T06:36:24.704 INFO:teuthology.orchestra.run.smithi037.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-02T06:36:24.709 INFO:teuthology.orchestra.run.smithi037.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-02T06:36:24.727 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:36:24.727 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-02T06:36:24.727 DEBUG:teuthology.orchestra.run.smithi052:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-02T06:36:24.812 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-101-generic 2024-04-02T06:36:24.812 DEBUG:teuthology.orchestra.run.smithi052:> sudo update-grub 2024-04-02T06:36:24.850 INFO:teuthology.orchestra.run.smithi037.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-02T06:36:24.850 INFO:teuthology.orchestra.run.smithi037.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-02T06:36:24.850 INFO:teuthology.orchestra.run.smithi037.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-02T06:36:24.869 INFO:teuthology.orchestra.run.smithi037.stderr:done 2024-04-02T06:36:24.871 DEBUG:teuthology.orchestra.run.smithi037:> sudo shutdown -r now 2024-04-02T06:36:26.423 INFO:teuthology.orchestra.run.smithi052.stderr:Sourcing file `/etc/default/grub' 2024-04-02T06:36:26.424 INFO:teuthology.orchestra.run.smithi052.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-02T06:36:26.427 INFO:teuthology.orchestra.run.smithi052.stderr:Generating grub configuration file ... 2024-04-02T06:36:26.643 INFO:teuthology.orchestra.run.smithi052.stderr:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-04-02T06:36:26.650 INFO:teuthology.orchestra.run.smithi052.stderr:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-04-02T06:36:26.890 INFO:teuthology.orchestra.run.smithi052.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-02T06:36:26.895 INFO:teuthology.orchestra.run.smithi052.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-02T06:36:26.939 INFO:teuthology.orchestra.run.smithi052.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-02T06:36:26.944 INFO:teuthology.orchestra.run.smithi052.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-02T06:36:27.064 INFO:teuthology.orchestra.run.smithi052.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-02T06:36:27.064 INFO:teuthology.orchestra.run.smithi052.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-02T06:36:27.064 INFO:teuthology.orchestra.run.smithi052.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-02T06:36:27.080 INFO:teuthology.orchestra.run.smithi052.stderr:done 2024-04-02T06:36:27.089 DEBUG:teuthology.orchestra.run.smithi052:> sudo shutdown -r now 2024-04-02T06:36:54.901 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-02T06:36:54.902 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi037.front.sepia.ceph.com' 2024-04-02T06:36:54.903 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi037.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:36:57.134 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-02T06:36:57.134 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-04-02T06:36:57.135 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi052.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:37:13.374 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.37 2024-04-02T06:37:15.679 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.52 2024-04-02T06:37:22.382 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi037.front.sepia.ceph.com' 2024-04-02T06:37:22.383 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi037.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:37:24.680 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-04-02T06:37:24.681 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi052.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:37:40.766 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.37 2024-04-02T06:37:52.768 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi037.front.sepia.ceph.com' 2024-04-02T06:37:52.769 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi037.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:37:55.838 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.37 2024-04-02T06:38:10.850 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi037.front.sepia.ceph.com' 2024-04-02T06:38:10.851 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi037.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:38:11.071 DEBUG:teuthology.orchestra.run.smithi037:> true 2024-04-02T06:38:11.624 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi037.front.sepia.ceph.com' 2024-04-02T06:38:11.624 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-101-generic"... 2024-04-02T06:38:11.624 DEBUG:teuthology.orchestra.run.smithi037:> uname -r 2024-04-02T06:38:11.671 INFO:teuthology.orchestra.run.smithi037.stdout:5.15.0-101-generic 2024-04-02T06:38:11.672 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-101-generic vs 5.15.0-101-generic 2024-04-02T06:38:11.672 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-02T06:38:11.672 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-02T06:38:12.672 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-02T06:38:12.673 DEBUG:teuthology.orchestra.run.smithi037:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-02T06:38:12.739 INFO:teuthology.orchestra.run.smithi037.stdout:ttyS1 2024-04-02T06:38:12.757 DEBUG:teuthology.parallel:result is None 2024-04-02T06:38:24.683 DEBUG:teuthology.orchestra.remote:timed out 2024-04-02T06:38:36.683 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-04-02T06:38:36.684 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi052.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:38:36.918 DEBUG:teuthology.orchestra.run.smithi052:> true 2024-04-02T06:38:37.491 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-04-02T06:38:37.492 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-101-generic"... 2024-04-02T06:38:37.492 DEBUG:teuthology.orchestra.run.smithi052:> uname -r 2024-04-02T06:38:37.536 INFO:teuthology.orchestra.run.smithi052.stdout:5.15.0-101-generic 2024-04-02T06:38:37.537 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-101-generic vs 5.15.0-101-generic 2024-04-02T06:38:37.537 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-02T06:38:37.537 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-02T06:38:38.537 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-02T06:38:38.538 DEBUG:teuthology.orchestra.run.smithi052:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-02T06:38:38.632 INFO:teuthology.orchestra.run.smithi052.stdout:ttyS1 2024-04-02T06:38:38.659 DEBUG:teuthology.parallel:result is None 2024-04-02T06:38:38.659 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-02T06:38:38.667 INFO:teuthology.task.internal:Creating test directory... 2024-04-02T06:38:38.667 DEBUG:teuthology.orchestra.run.smithi037:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-02T06:38:38.670 DEBUG:teuthology.orchestra.run.smithi052:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-02T06:38:38.675 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-02T06:38:38.760 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-02T06:38:38.768 INFO:teuthology.task.internal:Creating archive directory... 2024-04-02T06:38:38.768 DEBUG:teuthology.orchestra.run.smithi037:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-02T06:38:38.771 DEBUG:teuthology.orchestra.run.smithi052:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-02T06:38:38.791 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-02T06:38:38.798 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-02T06:38:38.798 DEBUG:teuthology.orchestra.run.smithi037:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-02T06:38:38.824 DEBUG:teuthology.orchestra.run.smithi052:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-02T06:38:38.846 INFO:teuthology.orchestra.run.smithi037.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-02T06:38:38.856 INFO:teuthology.orchestra.run.smithi037.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-02T06:38:38.857 INFO:teuthology.orchestra.run.smithi052.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-02T06:38:38.866 INFO:teuthology.orchestra.run.smithi052.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-02T06:38:38.867 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-02T06:38:38.874 INFO:teuthology.task.internal:Configuring sudo... 2024-04-02T06:38:38.875 DEBUG:teuthology.orchestra.run.smithi037:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-02T06:38:38.900 DEBUG:teuthology.orchestra.run.smithi052:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-02T06:38:38.927 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-02T06:38:38.937 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-02T06:38:38.937 DEBUG:teuthology.orchestra.run.smithi037:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-02T06:38:38.972 DEBUG:teuthology.orchestra.run.smithi052:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-02T06:38:38.977 DEBUG:teuthology.orchestra.run.smithi037:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-02T06:38:39.023 DEBUG:teuthology.orchestra.run.smithi037:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-02T06:38:39.071 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:38:39.071 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-02T06:38:39.138 DEBUG:teuthology.orchestra.run.smithi052:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-02T06:38:39.144 DEBUG:teuthology.orchestra.run.smithi052:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-02T06:38:39.195 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:38:39.195 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-02T06:38:39.260 DEBUG:teuthology.orchestra.run.smithi037:> sudo service rsyslog restart 2024-04-02T06:38:39.263 DEBUG:teuthology.orchestra.run.smithi052:> sudo service rsyslog restart 2024-04-02T06:38:39.340 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-02T06:38:39.348 INFO:teuthology.task.internal:Starting timer... 2024-04-02T06:38:39.348 INFO:teuthology.run_tasks:Running task pcp... 2024-04-02T06:38:39.357 INFO:teuthology.run_tasks:Running task selinux... 2024-04-02T06:38:39.366 DEBUG:teuthology.task.selinux:Excluding smithi037: OS 'ubuntu' does not support SELinux 2024-04-02T06:38:39.366 DEBUG:teuthology.task.selinux:Excluding smithi052: OS 'ubuntu' does not support SELinux 2024-04-02T06:38:39.366 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-02T06:38:39.367 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-04-02T06:38:39.367 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-02T06:38:39.367 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-02T06:38:39.378 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-02T06:38:39.383 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-02T06:38:39.511 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-02T06:38:39.525 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-04-02T06:38:39.526 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi037.front.sepia.ceph.com,smithi052.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-02T06:45:48.391 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi037.front.sepia.ceph.com'), Remote(name='ubuntu@smithi052.front.sepia.ceph.com')] 2024-04-02T06:45:48.393 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi037.front.sepia.ceph.com' 2024-04-02T06:45:48.394 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi037.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:45:48.490 DEBUG:teuthology.orchestra.run.smithi037:> true 2024-04-02T06:45:48.567 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi037.front.sepia.ceph.com' 2024-04-02T06:45:48.568 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-04-02T06:45:48.569 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi052.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-02T06:45:48.663 DEBUG:teuthology.orchestra.run.smithi052:> true 2024-04-02T06:45:48.738 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-04-02T06:45:48.739 INFO:teuthology.run_tasks:Running task clock... 2024-04-02T06:45:48.749 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-02T06:45:48.750 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-02T06:45:48.750 DEBUG:teuthology.orchestra.run.smithi037:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-02T06:45:48.753 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-02T06:45:48.753 DEBUG:teuthology.orchestra.run.smithi052:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-02T06:45:48.781 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-02T06:45:48.781 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: Command line: ntpd -gq 2024-04-02T06:45:48.781 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: ---------------------------------------------------- 2024-04-02T06:45:48.781 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: ntp-4 is maintained by Network Time Foundation, 2024-04-02T06:45:48.781 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-02T06:45:48.781 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: corporation. Support and training for ntp-4 are 2024-04-02T06:45:48.781 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: available at https://www.nwtime.org/support 2024-04-02T06:45:48.781 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: ---------------------------------------------------- 2024-04-02T06:45:48.783 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: proto: precision = 0.070 usec (-24) 2024-04-02T06:45:48.783 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: basedate set to 2022-02-04 2024-04-02T06:45:48.783 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: gps base set to 2022-02-06 (week 2196) 2024-04-02T06:45:48.783 INFO:teuthology.orchestra.run.smithi037.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-02T06:45:48.784 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-02T06:45:48.784 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: restrict ::: KOD does nothing without LIMITED. 2024-04-02T06:45:48.784 INFO:teuthology.orchestra.run.smithi037.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-02T06:45:48.785 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: Listen and drop on 0 v6wildcard [::]:123 2024-04-02T06:45:48.785 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-02T06:45:48.785 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: Listen normally on 2 lo 127.0.0.1:123 2024-04-02T06:45:48.785 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: Listen normally on 3 ens1f0 172.21.15.37:123 2024-04-02T06:45:48.786 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: Listen normally on 4 lo [::1]:123 2024-04-02T06:45:48.786 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:fe88:7794%4]:123 2024-04-02T06:45:48.786 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:48 ntpd[17077]: Listening on routing socket on fd #22 for interface updates 2024-04-02T06:45:48.807 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-02T06:45:48.807 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: Command line: ntpd -gq 2024-04-02T06:45:48.807 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: ---------------------------------------------------- 2024-04-02T06:45:48.807 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: ntp-4 is maintained by Network Time Foundation, 2024-04-02T06:45:48.807 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-02T06:45:48.807 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: corporation. Support and training for ntp-4 are 2024-04-02T06:45:48.807 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: available at https://www.nwtime.org/support 2024-04-02T06:45:48.807 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: ---------------------------------------------------- 2024-04-02T06:45:48.807 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: proto: precision = 0.046 usec (-24) 2024-04-02T06:45:48.808 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: basedate set to 2022-02-04 2024-04-02T06:45:48.808 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: gps base set to 2022-02-06 (week 2196) 2024-04-02T06:45:48.808 INFO:teuthology.orchestra.run.smithi052.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-02T06:45:48.808 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-02T06:45:48.808 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: restrict ::: KOD does nothing without LIMITED. 2024-04-02T06:45:48.809 INFO:teuthology.orchestra.run.smithi052.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-02T06:45:48.809 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: Listen and drop on 0 v6wildcard [::]:123 2024-04-02T06:45:48.810 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-02T06:45:48.810 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: Listen normally on 2 lo 127.0.0.1:123 2024-04-02T06:45:48.810 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: Listen normally on 3 ens1f0 172.21.15.52:123 2024-04-02T06:45:48.810 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: Listen normally on 4 lo [::1]:123 2024-04-02T06:45:48.810 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:15de%4]:123 2024-04-02T06:45:48.810 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:48 ntpd[17078]: Listening on routing socket on fd #22 for interface updates 2024-04-02T06:45:49.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:49 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:49.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:49 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:49.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:49 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:49.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:49 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:49.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:49 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:49.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:49 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:49.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:49 ntpd[17077]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:49.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:49 ntpd[17077]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:50.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:50.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:50.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:50.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:50.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:50.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:50.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:50.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:50.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:50.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:50.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:50.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:50 ntpd[17077]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:50.807 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:50 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:50.807 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:50 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:51.781 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:51 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:51.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:51 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:51.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:51 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:51.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:51 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:51.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:51 ntpd[17077]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:51.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:51 ntpd[17077]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:51.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:51.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:51.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:51.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:51.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:51.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:51.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:51.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:51.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:51.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:51.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:51.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:51 ntpd[17078]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:52.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:52.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:52.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:52.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:52.784 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:52.784 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:52.784 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:52.784 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:52.784 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:52.784 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:52.784 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:52.785 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:52 ntpd[17077]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:53.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:53 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:53.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:53 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:53.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:53 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:53.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:53 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:53.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:53 ntpd[17077]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:53.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:53 ntpd[17077]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:53.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:53.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:53.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:53.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:53.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:53 ntpd[17078]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:54.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:54.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:54.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:54.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:54.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:54.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:54.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:54.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:54.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:54.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:54.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:54.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:54 ntpd[17077]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:55.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:55 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:55.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:55 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:55.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:55 ntpd[17077]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:55.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:55 ntpd[17077]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:55.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:55 ntpd[17077]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:55.782 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:55 ntpd[17077]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:55.782 INFO:teuthology.orchestra.run.smithi037.stdout: 2 Apr 06:45:55 ntpd[17077]: ntpd: time slew +0.000838 s 2024-04-02T06:45:55.783 INFO:teuthology.orchestra.run.smithi037.stdout:ntpd: time slew +0.000838s 2024-04-02T06:45:55.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:55 ntpd[17077]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-02T06:45:55.783 INFO:teuthology.orchestra.run.smithi037.stderr: 2 Apr 06:45:55 ntpd[17077]: can't open /var/log/ntpstats/loopstats.20240402: Permission denied 2024-04-02T06:45:55.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:55.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:55.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:55.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:55.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:55 ntpd[17078]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:55.836 INFO:teuthology.orchestra.run.smithi037.stdout: remote refid st t when poll reach delay offset jitter 2024-04-02T06:45:55.836 INFO:teuthology.orchestra.run.smithi037.stdout:============================================================================== 2024-04-02T06:45:55.836 INFO:teuthology.orchestra.run.smithi037.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-02T06:45:55.836 INFO:teuthology.orchestra.run.smithi037.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-02T06:45:55.836 INFO:teuthology.orchestra.run.smithi037.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-02T06:45:55.836 INFO:teuthology.orchestra.run.smithi037.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-02T06:45:57.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:57.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:57.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:57.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:57.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:57.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:57.808 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-02T06:45:57.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: can't open /var/log/ntpstats/rawstats.20240402: Permission denied 2024-04-02T06:45:57.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-02T06:45:57.809 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: can't open /var/log/ntpstats/peerstats.20240402: Permission denied 2024-04-02T06:45:57.809 INFO:teuthology.orchestra.run.smithi052.stdout: 2 Apr 06:45:57 ntpd[17078]: ntpd: time slew -0.000421 s 2024-04-02T06:45:57.809 INFO:teuthology.orchestra.run.smithi052.stdout:ntpd: time slew -0.000421s 2024-04-02T06:45:57.810 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-02T06:45:57.810 INFO:teuthology.orchestra.run.smithi052.stderr: 2 Apr 06:45:57 ntpd[17078]: can't open /var/log/ntpstats/loopstats.20240402: Permission denied 2024-04-02T06:45:57.858 INFO:teuthology.orchestra.run.smithi052.stdout: remote refid st t when poll reach delay offset jitter 2024-04-02T06:45:57.858 INFO:teuthology.orchestra.run.smithi052.stdout:============================================================================== 2024-04-02T06:45:57.859 INFO:teuthology.orchestra.run.smithi052.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-02T06:45:57.859 INFO:teuthology.orchestra.run.smithi052.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-02T06:45:57.859 INFO:teuthology.orchestra.run.smithi052.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-02T06:45:57.859 INFO:teuthology.orchestra.run.smithi052.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-02T06:45:57.859 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-04-02T06:45:57.876 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-04-02T06:45:57.876 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:45:57.876 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/scratch_devs of=/dev/stdout 2024-04-02T06:45:57.884 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-02T06:45:57.884 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/vg_nvme/lv_1 2024-04-02T06:45:57.930 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-02T06:45:57.930 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-02T06:45:57.930 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 881 Links: 1 2024-04-02T06:45:57.930 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-02T06:45:57.930 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-02 06:42:26.721260592 +0000 2024-04-02T06:45:57.930 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-02 06:42:26.469262843 +0000 2024-04-02T06:45:57.930 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-02 06:42:26.469262843 +0000 2024-04-02T06:45:57.930 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: - 2024-04-02T06:45:57.931 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-02T06:45:57.985 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-02T06:45:57.985 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-02T06:45:57.985 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000438177 s, 1.2 MB/s 2024-04-02T06:45:57.986 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-02T06:45:58.035 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/vg_nvme/lv_2 2024-04-02T06:45:58.081 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-02T06:45:58.082 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-02T06:45:58.082 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 897 Links: 1 2024-04-02T06:45:58.082 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-02T06:45:58.082 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-02 06:42:27.281255590 +0000 2024-04-02T06:45:58.082 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-02 06:42:27.017257948 +0000 2024-04-02T06:45:58.082 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-02 06:42:27.017257948 +0000 2024-04-02T06:45:58.082 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: - 2024-04-02T06:45:58.082 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-02T06:45:58.136 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-02T06:45:58.136 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-02T06:45:58.136 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000407677 s, 1.3 MB/s 2024-04-02T06:45:58.138 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-02T06:45:58.189 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/vg_nvme/lv_3 2024-04-02T06:45:58.237 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-02T06:45:58.237 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-02T06:45:58.237 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 918 Links: 1 2024-04-02T06:45:58.238 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-02T06:45:58.238 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-02 06:42:27.785251088 +0000 2024-04-02T06:45:58.238 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-02 06:42:27.509253553 +0000 2024-04-02T06:45:58.238 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-02 06:42:27.509253553 +0000 2024-04-02T06:45:58.238 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: - 2024-04-02T06:45:58.238 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-02T06:45:58.291 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-02T06:45:58.292 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-02T06:45:58.292 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000436963 s, 1.2 MB/s 2024-04-02T06:45:58.293 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-02T06:45:58.342 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/vg_nvme/lv_4 2024-04-02T06:45:58.389 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-02T06:45:58.389 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-02T06:45:58.390 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 935 Links: 1 2024-04-02T06:45:58.390 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-02T06:45:58.390 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-02 06:42:28.317246336 +0000 2024-04-02T06:45:58.390 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-02 06:42:28.025248945 +0000 2024-04-02T06:45:58.390 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-02 06:42:28.025248945 +0000 2024-04-02T06:45:58.390 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: - 2024-04-02T06:45:58.390 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-02T06:45:58.444 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-02T06:45:58.444 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-02T06:45:58.444 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000314223 s, 1.6 MB/s 2024-04-02T06:45:58.445 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-02T06:45:58.496 DEBUG:teuthology.orchestra.run.smithi037:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-04-02T06:45:58.642 INFO:teuthology.orchestra.run.smithi037.stdout:loop 2024-04-02T06:45:58.643 INFO:tasks.nvme_loop:Connecting nvme_loop smithi037:/dev/vg_nvme/lv_1... 2024-04-02T06:45:58.644 DEBUG:teuthology.orchestra.run.smithi037:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-02T06:45:58.661 INFO:teuthology.orchestra.run.smithi037.stdout:1 2024-04-02T06:45:58.683 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/vg_nvme/lv_11 2024-04-02T06:45:58.700 INFO:tasks.nvme_loop:Connecting nvme_loop smithi037:/dev/vg_nvme/lv_2... 2024-04-02T06:45:58.700 DEBUG:teuthology.orchestra.run.smithi037:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-02T06:45:58.757 INFO:teuthology.orchestra.run.smithi037.stdout:1 2024-04-02T06:45:58.776 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/vg_nvme/lv_21 2024-04-02T06:45:58.792 INFO:tasks.nvme_loop:Connecting nvme_loop smithi037:/dev/vg_nvme/lv_3... 2024-04-02T06:45:58.793 DEBUG:teuthology.orchestra.run.smithi037:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-02T06:45:58.852 INFO:teuthology.orchestra.run.smithi037.stdout:1 2024-04-02T06:45:58.870 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/vg_nvme/lv_31 2024-04-02T06:45:58.888 INFO:tasks.nvme_loop:Connecting nvme_loop smithi037:/dev/vg_nvme/lv_4... 2024-04-02T06:45:58.888 DEBUG:teuthology.orchestra.run.smithi037:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-02T06:45:58.948 INFO:teuthology.orchestra.run.smithi037.stdout:1 2024-04-02T06:45:58.970 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/vg_nvme/lv_41 2024-04-02T06:45:58.988 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:45:58.989 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/scratch_devs of=/dev/stdout 2024-04-02T06:45:59.041 DEBUG:teuthology.orchestra.run.smithi037:> sudo nvme list 2024-04-02T06:45:59.095 INFO:teuthology.orchestra.run.smithi037.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-02T06:45:59.095 INFO:teuthology.orchestra.run.smithi037.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-02T06:45:59.095 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/nvme0n1 CVFT5331005T400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-02T06:45:59.095 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/nvme1n1 3cf3d7e93623fc63b500 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-02T06:45:59.096 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/nvme2n1 2a9f2e1698ed0f8e0da8 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-02T06:45:59.096 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/nvme3n1 3b18cdc853e1f477a06e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-02T06:45:59.096 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/nvme4n1 39e9aa2f1f1627d2f86f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-02T06:45:59.097 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-02T06:45:59.097 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:45:59.097 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/scratch_devs 2024-04-02T06:45:59.151 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:45:59.151 DEBUG:teuthology.orchestra.run.smithi052:> dd if=/scratch_devs of=/dev/stdout 2024-04-02T06:45:59.160 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-02T06:45:59.160 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/vg_nvme/lv_1 2024-04-02T06:45:59.209 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-02T06:45:59.209 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-02T06:45:59.209 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 881 Links: 1 2024-04-02T06:45:59.209 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-02T06:45:59.209 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-04-02 06:42:26.160549516 +0000 2024-04-02T06:45:59.209 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-04-02 06:42:25.908551763 +0000 2024-04-02T06:45:59.209 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-04-02 06:42:25.908551763 +0000 2024-04-02T06:45:59.209 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-04-02T06:45:59.209 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-02T06:45:59.263 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-04-02T06:45:59.263 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-04-02T06:45:59.263 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000325386 s, 1.6 MB/s 2024-04-02T06:45:59.264 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-02T06:45:59.314 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/vg_nvme/lv_2 2024-04-02T06:45:59.360 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-02T06:45:59.361 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-02T06:45:59.361 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 895 Links: 1 2024-04-02T06:45:59.361 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-02T06:45:59.361 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-04-02 06:42:26.636545270 +0000 2024-04-02T06:45:59.361 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-04-02 06:42:26.368547661 +0000 2024-04-02T06:45:59.361 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-04-02 06:42:26.368547661 +0000 2024-04-02T06:45:59.361 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-04-02T06:45:59.361 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-02T06:45:59.415 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-04-02T06:45:59.415 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-04-02T06:45:59.415 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000317822 s, 1.6 MB/s 2024-04-02T06:45:59.416 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-02T06:45:59.466 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/vg_nvme/lv_3 2024-04-02T06:45:59.517 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-02T06:45:59.517 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-02T06:45:59.517 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 910 Links: 1 2024-04-02T06:45:59.517 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-02T06:45:59.517 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-04-02 06:42:27.108541058 +0000 2024-04-02T06:45:59.517 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-04-02 06:42:26.848543377 +0000 2024-04-02T06:45:59.517 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-04-02 06:42:26.848543377 +0000 2024-04-02T06:45:59.518 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-04-02T06:45:59.518 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-02T06:45:59.570 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-04-02T06:45:59.571 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-04-02T06:45:59.571 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000301338 s, 1.7 MB/s 2024-04-02T06:45:59.572 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-02T06:45:59.622 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/vg_nvme/lv_4 2024-04-02T06:45:59.669 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-02T06:45:59.669 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-02T06:45:59.669 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 927 Links: 1 2024-04-02T06:45:59.669 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-02T06:45:59.669 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-04-02 06:42:27.600536670 +0000 2024-04-02T06:45:59.669 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-04-02 06:42:27.328539095 +0000 2024-04-02T06:45:59.669 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-04-02 06:42:27.328539095 +0000 2024-04-02T06:45:59.669 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-04-02T06:45:59.669 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-02T06:45:59.723 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-04-02T06:45:59.723 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-04-02T06:45:59.723 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000301117 s, 1.7 MB/s 2024-04-02T06:45:59.725 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-02T06:45:59.774 DEBUG:teuthology.orchestra.run.smithi052:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-04-02T06:45:59.904 INFO:teuthology.orchestra.run.smithi052.stdout:loop 2024-04-02T06:45:59.905 INFO:tasks.nvme_loop:Connecting nvme_loop smithi052:/dev/vg_nvme/lv_1... 2024-04-02T06:45:59.905 DEBUG:teuthology.orchestra.run.smithi052:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-02T06:45:59.921 INFO:teuthology.orchestra.run.smithi052.stdout:1 2024-04-02T06:45:59.941 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/vg_nvme/lv_11 2024-04-02T06:45:59.957 INFO:tasks.nvme_loop:Connecting nvme_loop smithi052:/dev/vg_nvme/lv_2... 2024-04-02T06:45:59.958 DEBUG:teuthology.orchestra.run.smithi052:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-02T06:46:00.016 INFO:teuthology.orchestra.run.smithi052.stdout:1 2024-04-02T06:46:00.039 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/vg_nvme/lv_21 2024-04-02T06:46:00.058 INFO:tasks.nvme_loop:Connecting nvme_loop smithi052:/dev/vg_nvme/lv_3... 2024-04-02T06:46:00.058 DEBUG:teuthology.orchestra.run.smithi052:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-02T06:46:00.122 INFO:teuthology.orchestra.run.smithi052.stdout:1 2024-04-02T06:46:00.146 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/vg_nvme/lv_31 2024-04-02T06:46:00.162 INFO:tasks.nvme_loop:Connecting nvme_loop smithi052:/dev/vg_nvme/lv_4... 2024-04-02T06:46:00.162 DEBUG:teuthology.orchestra.run.smithi052:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-02T06:46:00.222 INFO:teuthology.orchestra.run.smithi052.stdout:1 2024-04-02T06:46:00.244 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/vg_nvme/lv_41 2024-04-02T06:46:00.262 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:46:00.263 DEBUG:teuthology.orchestra.run.smithi052:> dd if=/scratch_devs of=/dev/stdout 2024-04-02T06:46:00.313 DEBUG:teuthology.orchestra.run.smithi052:> sudo nvme list 2024-04-02T06:46:00.370 INFO:teuthology.orchestra.run.smithi052.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-02T06:46:00.371 INFO:teuthology.orchestra.run.smithi052.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-02T06:46:00.371 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/nvme0n1 PHMB7513010N480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-04-02T06:46:00.371 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/nvme1n1 43648c8302fcc97b56ba Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-02T06:46:00.371 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/nvme2n1 d16d799d86ccd10e32c9 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-02T06:46:00.371 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/nvme3n1 53dee4c11eab07978984 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-02T06:46:00.371 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/nvme4n1 f3902035cc7e36c0275f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-02T06:46:00.372 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-02T06:46:00.372 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:46:00.372 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/scratch_devs 2024-04-02T06:46:00.427 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-02T06:46:00.534 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': '6cec793d9073f0594e2364b9b687ecaf22424cca'} 2024-04-02T06:46:00.534 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca 2024-04-02T06:46:00.534 INFO:tasks.cephadm:Cluster fsid is aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:46:00.535 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-02T06:46:00.535 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-04-02T06:46:00.535 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi037': '172.21.15.37', 'mon.smithi052': '172.21.15.52'} 2024-04-02T06:46:00.535 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-02T06:46:00.535 DEBUG:teuthology.orchestra.run.smithi037:> sudo hostname $(hostname -s) 2024-04-02T06:46:00.551 DEBUG:teuthology.orchestra.run.smithi052:> sudo hostname $(hostname -s) 2024-04-02T06:46:00.565 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-02T06:46:00.566 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=6cec793d9073f0594e2364b9b687ecaf22424cca 2024-04-02T06:46:00.710 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '6cec793d9073f0594e2364b9b687ecaf22424cca', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/54776/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-1979-g6cec793d', 'node_name': '172.21.2.2+braggi02', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-1979-g6cec793d-1jammy'}, 'url': 'https://4.chacra.ceph.com/r/ceph/squid/6cec793d9073f0594e2364b9b687ecaf22424cca/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-04-01 18:21:29.623870', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/squid/6cec793d9073f0594e2364b9b687ecaf22424cca/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-04-02T06:46:00.928 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref squid, sha1 6cec793d9073f0594e2364b9b687ecaf22424cca from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=6cec793d9073f0594e2364b9b687ecaf22424cca 2024-04-02T06:46:00.930 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/squid/6cec793d9073f0594e2364b9b687ecaf22424cca/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-04-02T06:46:00.930 DEBUG:teuthology.orchestra.run.smithi037:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/squid/6cec793d9073f0594e2364b9b687ecaf22424cca/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-02T06:46:01.607 INFO:teuthology.orchestra.run.smithi037.stdout:-rw-rw-r-- 1 ubuntu ubuntu 774691 Apr 2 06:46 /home/ubuntu/cephtest/cephadm 2024-04-02T06:46:01.607 DEBUG:teuthology.orchestra.run.smithi052:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/squid/6cec793d9073f0594e2364b9b687ecaf22424cca/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-02T06:46:02.708 INFO:teuthology.orchestra.run.smithi052.stdout:-rw-rw-r-- 1 ubuntu ubuntu 774691 Apr 2 06:46 /home/ubuntu/cephtest/cephadm 2024-04-02T06:46:02.708 DEBUG:teuthology.orchestra.run.smithi037:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-02T06:46:02.716 DEBUG:teuthology.orchestra.run.smithi052:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-02T06:46:02.732 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca on all hosts... 2024-04-02T06:46:02.733 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca pull 2024-04-02T06:46:02.763 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca pull 2024-04-02T06:46:02.929 INFO:teuthology.orchestra.run.smithi037.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca... 2024-04-02T06:46:02.934 INFO:teuthology.orchestra.run.smithi052.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca... 2024-04-02T06:46:57.157 INFO:teuthology.orchestra.run.smithi052.stdout:{ 2024-04-02T06:46:57.158 INFO:teuthology.orchestra.run.smithi052.stdout: "ceph_version": "ceph version 19.0.0-1979-g6cec793d (6cec793d9073f0594e2364b9b687ecaf22424cca) squid (dev)", 2024-04-02T06:46:57.158 INFO:teuthology.orchestra.run.smithi052.stdout: "image_id": "78f830190839e38cac46d0f24741058bd5f6b4363a488caf8a9e060d9857e808", 2024-04-02T06:46:57.158 INFO:teuthology.orchestra.run.smithi052.stdout: "repo_digests": [ 2024-04-02T06:46:57.158 INFO:teuthology.orchestra.run.smithi052.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7bd5b84926d4a0d6c51e5562e965bff211cec2740c9f4dec9b5e00a2bbb75eae" 2024-04-02T06:46:57.158 INFO:teuthology.orchestra.run.smithi052.stdout: ] 2024-04-02T06:46:57.158 INFO:teuthology.orchestra.run.smithi052.stdout:} 2024-04-02T06:47:00.200 INFO:teuthology.orchestra.run.smithi037.stdout:{ 2024-04-02T06:47:00.200 INFO:teuthology.orchestra.run.smithi037.stdout: "ceph_version": "ceph version 19.0.0-1979-g6cec793d (6cec793d9073f0594e2364b9b687ecaf22424cca) squid (dev)", 2024-04-02T06:47:00.200 INFO:teuthology.orchestra.run.smithi037.stdout: "image_id": "78f830190839e38cac46d0f24741058bd5f6b4363a488caf8a9e060d9857e808", 2024-04-02T06:47:00.200 INFO:teuthology.orchestra.run.smithi037.stdout: "repo_digests": [ 2024-04-02T06:47:00.200 INFO:teuthology.orchestra.run.smithi037.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7bd5b84926d4a0d6c51e5562e965bff211cec2740c9f4dec9b5e00a2bbb75eae" 2024-04-02T06:47:00.200 INFO:teuthology.orchestra.run.smithi037.stdout: ] 2024-04-02T06:47:00.200 INFO:teuthology.orchestra.run.smithi037.stdout:} 2024-04-02T06:47:00.248 DEBUG:teuthology.orchestra.run.smithi037:> sudo mkdir -p /etc/ceph 2024-04-02T06:47:00.263 DEBUG:teuthology.orchestra.run.smithi052:> sudo mkdir -p /etc/ceph 2024-04-02T06:47:00.278 DEBUG:teuthology.orchestra.run.smithi037:> sudo chmod 777 /etc/ceph 2024-04-02T06:47:00.316 DEBUG:teuthology.orchestra.run.smithi052:> sudo chmod 777 /etc/ceph 2024-04-02T06:47:00.332 INFO:tasks.cephadm:Writing seed config... 2024-04-02T06:47:00.333 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-02T06:47:00.333 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-02T06:47:00.334 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-02T06:47:00.334 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-02T06:47:00.334 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-02T06:47:00.334 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-02T06:47:00.334 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-02T06:47:00.334 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-04-02T06:47:00.335 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:47:00.335 DEBUG:teuthology.orchestra.run.smithi037:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-02T06:47:00.366 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 = aad02026-f0bc-11ee-b647-cb9ed24678a4 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-04-02T06:47:00.367 DEBUG:teuthology.orchestra.run.smithi037:mon.smithi037> sudo journalctl -f -n 0 -u ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi037.service 2024-04-02T06:47:00.410 INFO:tasks.cephadm:Bootstrapping... 2024-04-02T06:47:00.411 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca -v bootstrap --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 --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.37 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-02T06:47:00.620 INFO:teuthology.orchestra.run.smithi037.stdout:-------------------------------------------------------------------------------- 2024-04-02T06:47:00.621 INFO:teuthology.orchestra.run.smithi037.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca', '-v', 'bootstrap', '--fsid', 'aad02026-f0bc-11ee-b647-cb9ed24678a4', '--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.37', '--skip-admin-label'] 2024-04-02T06:47:00.621 INFO:teuthology.orchestra.run.smithi037.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-02T06:47:00.622 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying podman|docker is present... 2024-04-02T06:47:00.622 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying lvm2 is present... 2024-04-02T06:47:00.622 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying time synchronization is in place... 2024-04-02T06:47:00.627 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-02T06:47:00.627 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-02T06:47:00.631 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-02T06:47:00.631 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-02T06:47:00.635 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-02T06:47:00.635 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-02T06:47:00.639 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-02T06:47:00.639 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-02T06:47:00.643 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-02T06:47:00.643 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout masked 2024-04-02T06:47:00.646 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-02T06:47:00.646 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-02T06:47:00.651 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-02T06:47:00.651 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-02T06:47:00.654 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-02T06:47:00.654 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-02T06:47:00.658 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout enabled 2024-04-02T06:47:00.662 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout active 2024-04-02T06:47:00.662 INFO:teuthology.orchestra.run.smithi037.stdout:Unit ntp.service is enabled and running 2024-04-02T06:47:00.663 INFO:teuthology.orchestra.run.smithi037.stdout:Repeating the final host check... 2024-04-02T06:47:00.663 INFO:teuthology.orchestra.run.smithi037.stdout:docker (/usr/bin/docker) is present 2024-04-02T06:47:00.663 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl is present 2024-04-02T06:47:00.663 INFO:teuthology.orchestra.run.smithi037.stdout:lvcreate is present 2024-04-02T06:47:00.666 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-02T06:47:00.666 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-02T06:47:00.670 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-02T06:47:00.670 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-02T06:47:00.673 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-02T06:47:00.673 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-02T06:47:00.677 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-02T06:47:00.677 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-02T06:47:00.681 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-02T06:47:00.681 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout masked 2024-04-02T06:47:00.684 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-02T06:47:00.684 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-02T06:47:00.688 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-02T06:47:00.688 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-02T06:47:00.695 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-02T06:47:00.696 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-02T06:47:00.696 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout enabled 2024-04-02T06:47:00.700 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout active 2024-04-02T06:47:00.701 INFO:teuthology.orchestra.run.smithi037.stdout:Unit ntp.service is enabled and running 2024-04-02T06:47:00.701 INFO:teuthology.orchestra.run.smithi037.stdout:Host looks OK 2024-04-02T06:47:00.701 INFO:teuthology.orchestra.run.smithi037.stdout:Cluster fsid: aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:00.702 INFO:teuthology.orchestra.run.smithi037.stdout:Acquiring lock 140593530109040 on /run/cephadm/aad02026-f0bc-11ee-b647-cb9ed24678a4.lock 2024-04-02T06:47:00.702 INFO:teuthology.orchestra.run.smithi037.stdout:Lock 140593530109040 acquired on /run/cephadm/aad02026-f0bc-11ee-b647-cb9ed24678a4.lock 2024-04-02T06:47:00.702 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying IP 172.21.15.37 port 3300 ... 2024-04-02T06:47:00.702 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying IP 172.21.15.37 port 6789 ... 2024-04-02T06:47:00.702 INFO:teuthology.orchestra.run.smithi037.stdout:Base mon IP(s) is [172.21.15.37:3300, 172.21.15.37:6789], mon addrv is [v2:172.21.15.37:3300,v1:172.21.15.37:6789] 2024-04-02T06:47:00.704 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-04-02T06:47:00.704 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-04-02T06:47:00.704 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.37 2024-04-02T06:47:00.705 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-02T06:47:00.705 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-04-02T06:47:00.705 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1792sec hoplimit 64 pref medium 2024-04-02T06:47:00.708 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-02T06:47:00.709 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-02T06:47:00.709 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-02T06:47:00.709 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-04-02T06:47:00.709 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe88:7794/64 scope link 2024-04-02T06:47:00.709 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-02T06:47:00.709 INFO:teuthology.orchestra.run.smithi037.stdout:Mon IP `172.21.15.37` is in CIDR network `172.21.0.0/20` 2024-04-02T06:47:00.709 INFO:teuthology.orchestra.run.smithi037.stdout:Mon IP `172.21.15.37` is in CIDR network `172.21.0.0/20` 2024-04-02T06:47:00.709 INFO:teuthology.orchestra.run.smithi037.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-02T06:47:00.709 INFO:teuthology.orchestra.run.smithi037.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-02T06:47:00.710 INFO:teuthology.orchestra.run.smithi037.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca... 2024-04-02T06:47:00.935 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/docker: stdout 6cec793d9073f0594e2364b9b687ecaf22424cca: Pulling from ceph-ci/ceph 2024-04-02T06:47:00.935 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/docker: stdout Digest: sha256:7bd5b84926d4a0d6c51e5562e965bff211cec2740c9f4dec9b5e00a2bbb75eae 2024-04-02T06:47:00.935 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca 2024-04-02T06:47:00.935 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca 2024-04-02T06:47:02.236 INFO:teuthology.orchestra.run.smithi037.stdout:ceph: stdout ceph version 19.0.0-1979-g6cec793d (6cec793d9073f0594e2364b9b687ecaf22424cca) squid (dev) 2024-04-02T06:47:02.236 INFO:teuthology.orchestra.run.smithi037.stdout:Ceph version: ceph version 19.0.0-1979-g6cec793d (6cec793d9073f0594e2364b9b687ecaf22424cca) squid (dev) 2024-04-02T06:47:02.237 INFO:teuthology.orchestra.run.smithi037.stdout:Extracting ceph user uid/gid from container image... 2024-04-02T06:47:03.475 INFO:teuthology.orchestra.run.smithi037.stdout:stat: stdout 167 167 2024-04-02T06:47:03.475 INFO:teuthology.orchestra.run.smithi037.stdout:Creating initial keys... 2024-04-02T06:47:04.579 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-authtool: stdout AQDoqQtm8dPTBRAA+2obCJTGb3sLSJWaB+6+bw== 2024-04-02T06:47:05.684 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-authtool: stdout AQDpqQtm0vYlDxAA40T6olhjHHpqEKIWI33mSA== 2024-04-02T06:47:06.763 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-authtool: stdout AQDqqQtmtO1LERAA3sZinU8AO5I2Oi8CB+VxzA== 2024-04-02T06:47:06.764 INFO:teuthology.orchestra.run.smithi037.stdout:Creating initial monmap... 2024-04-02T06:47:07.927 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-02T06:47:07.927 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-02T06:47:07.927 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:07.927 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-02T06:47:07.927 INFO:teuthology.orchestra.run.smithi037.stdout:monmaptool for smithi037 [v2:172.21.15.37:3300,v1:172.21.15.37:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-02T06:47:07.927 INFO:teuthology.orchestra.run.smithi037.stdout:setting min_mon_release = quincy 2024-04-02T06:47:07.927 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: set fsid to aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:07.927 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-02T06:47:07.927 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:47:07.927 INFO:teuthology.orchestra.run.smithi037.stdout:Creating mon... 2024-04-02T06:47:09.033 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-02T06:47:09.033 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 1 imported monmap: 2024-04-02T06:47:09.033 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-04-02T06:47:09.033 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:09.033 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-04-02T06:47:07.465194+0000 2024-04-02T06:47:09.033 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr created 2024-04-02T06:47:07.465194+0000 2024-04-02T06:47:09.033 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-04-02T06:47:09.033 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-04-02T06:47:09.033 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] mon.smithi037 2024-04-02T06:47:09.033 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.040 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 0 /usr/bin/ceph-mon: set fsid to aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:09.040 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: RocksDB version: 7.9.2 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Git sha 0 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Compile date 2024-04-01 15:23:26 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: DB SUMMARY 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: DB Session ID: 9WORN7YKAQ8339UCKECC 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi037/store.db dir, Total Num: 0, files: 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi037/store.db: 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.041 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.error_if_exists: 0 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.create_if_missing: 1 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.paranoid_checks: 1 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.env: 0x55b81cb60c60 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.info_log: 0x55b81e89ac80 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.statistics: (nil) 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.use_fsync: 0 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.max_log_file_size: 0 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.581+0000 7f85d869bc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-02T06:47:09.042 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.allow_fallocate: 1 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.use_direct_reads: 0 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.db_log_dir: 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.wal_dir: 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-02T06:47:09.043 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.write_buffer_manager: 0x55b81e86f360 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-02T06:47:09.044 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.unordered_write: 0 2024-04-02T06:47:09.045 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-02T06:47:09.045 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-02T06:47:09.045 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-02T06:47:09.045 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-02T06:47:09.045 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.row_cache: None 2024-04-02T06:47:09.045 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.wal_filter: None 2024-04-02T06:47:09.045 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-02T06:47:09.045 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-02T06:47:09.045 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.two_write_queues: 0 2024-04-02T06:47:09.045 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-02T06:47:09.046 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.wal_compression: 0 2024-04-02T06:47:09.046 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.atomic_flush: 0 2024-04-02T06:47:09.046 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-02T06:47:09.046 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-02T06:47:09.046 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-02T06:47:09.073 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.log_readahead_size: 0 2024-04-02T06:47:09.073 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_background_jobs: 2 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_background_compactions: -1 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_subcompactions: 1 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-02T06:47:09.074 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_open_files: -1 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_background_flushes: -1 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Compression algorithms supported: 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: kZSTD supported: 0 2024-04-02T06:47:09.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: kXpressCompression supported: 0 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: kZlibCompression supported: 1 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: kSnappyCompression supported: 1 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: kLZ4Compression supported: 1 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: kBZip2Compression supported: 0 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi037/store.db/MANIFEST-000001 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.076 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.merge_operator: 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_filter: None 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55b81e89ad80) 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-04-02T06:47:09.077 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55b81e89f090 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-04-02T06:47:09.078 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-04-02T06:47:09.079 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compression: NoCompression 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.num_levels: 7 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-02T06:47:09.080 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-02T06:47:09.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-02T06:47:09.082 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-02T06:47:09.083 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.table_properties_collectors: 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.inplace_update_support: 0 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-02T06:47:09.084 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.bloom_locality: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.max_successive_merges: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.ttl: 2592000 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.enable_blob_files: false 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.min_blob_size: 0 2024-04-02T06:47:09.085 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.585+0000 7f85d869bc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85d869bc80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi037/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85d869bc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85d869bc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 6a2852b3-e1f2-4366-89a6-5abffc291411 2024-04-02T06:47:09.086 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85d869bc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85d869bc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55b81e96a000 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85d869bc80 4 rocksdb: DB pointer 0x55b81e95a000 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85c8805700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85c8805700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-02T06:47:09.087 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-02T06:47:09.088 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55b81e89f090#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-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-04-02T06:47:09.089 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr 2024-04-02T06:47:09.090 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85d869bc80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-04-02T06:47:09.090 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85d869bc80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-04-02T06:47:09.090 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-02T06:47:08.589+0000 7f85d869bc80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi037 for mon.smithi037 2024-04-02T06:47:09.090 INFO:teuthology.orchestra.run.smithi037.stdout:create mon.smithi037 on 2024-04-02T06:47:09.528 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-04-02T06:47:09.784 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4.target -> /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4.target. 2024-04-02T06:47:09.784 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4.target -> /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4.target. 2024-04-02T06:47:10.092 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi037 2024-04-02T06:47:10.092 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to reset failed state of unit ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi037.service: Unit ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi037.service not loaded. 2024-04-02T06:47:10.294 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4.target.wants/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi037.service -> /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service. 2024-04-02T06:47:10.303 INFO:teuthology.orchestra.run.smithi037.stdout:firewalld does not appear to be present 2024-04-02T06:47:10.303 INFO:teuthology.orchestra.run.smithi037.stdout:Not possible to enable service . firewalld.service is not available 2024-04-02T06:47:10.303 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mon to start... 2024-04-02T06:47:10.303 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mon... 2024-04-02T06:47:11.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:11 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.586940+0000 mon.smithi037 (mon.0) 1 : cluster 1 mon.smithi037 is new leader, mons smithi037 in quorum (ranks 0) 2024-04-02T06:47:12.434 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout cluster: 2024-04-02T06:47:12.434 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout id: aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:12.434 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-02T06:47:12.434 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:12.434 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout services: 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi037 (age 0.319718s) 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout data: 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout pgs: 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:mon is available 2024-04-02T06:47:12.435 INFO:teuthology.orchestra.run.smithi037.stdout:Assimilating anything we can from ceph.conf... 2024-04-02T06:47:13.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.615052+0000 mon.smithi037 (mon.0) 2 : cluster 1 mon.smithi037 is new leader, mons smithi037 in quorum (ranks 0) 2024-04-02T06:47:13.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.615236+0000 mon.smithi037 (mon.0) 3 : cluster 0 monmap epoch 1 2024-04-02T06:47:13.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.615247+0000 mon.smithi037 (mon.0) 4 : cluster 0 fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:13.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.615256+0000 mon.smithi037 (mon.0) 5 : cluster 0 last_changed 2024-04-02T06:47:07.465194+0000 2024-04-02T06:47:13.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.615265+0000 mon.smithi037 (mon.0) 6 : cluster 0 created 2024-04-02T06:47:07.465194+0000 2024-04-02T06:47:13.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.615273+0000 mon.smithi037 (mon.0) 7 : cluster 0 min_mon_release 19 (squid) 2024-04-02T06:47:13.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.615280+0000 mon.smithi037 (mon.0) 8 : cluster 0 election_strategy: 1 2024-04-02T06:47:13.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.615287+0000 mon.smithi037 (mon.0) 9 : cluster 0 0: [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] mon.smithi037 2024-04-02T06:47:13.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.617263+0000 mon.smithi037 (mon.0) 10 : cluster 0 fsmap 2024-04-02T06:47:13.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.619446+0000 mon.smithi037 (mon.0) 11 : cluster 0 osdmap e1: 0 total, 0 up, 0 in 2024-04-02T06:47:13.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: cluster 2024-04-02T06:47:11.620103+0000 mon.smithi037 (mon.0) 12 : cluster 0 mgrmap e1: no daemons active 2024-04-02T06:47:13.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:12 smithi037 bash[18139]: audit 2024-04-02T06:47:11.934730+0000 mon.smithi037 (mon.0) 13 : audit 0 from='client.? 172.21.15.37:0/1061413921' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-02T06:47:13.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:13 smithi037 bash[18139]: audit 2024-04-02T06:47:13.405948+0000 mon.smithi037 (mon.0) 14 : audit 1 from='client.? 172.21.15.37:0/314584880' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-02T06:47:13.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:13 smithi037 bash[18139]: audit 2024-04-02T06:47:13.409516+0000 mon.smithi037 (mon.0) 15 : audit 1 from='client.? 172.21.15.37:0/314584880' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-02T06:47:13.931 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:13.931 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [global] 2024-04-02T06:47:13.931 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout fsid = aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:13.931 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.37:3300,v1:172.21.15.37:6789] 2024-04-02T06:47:13.931 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-02T06:47:13.931 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-02T06:47:13.932 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-02T06:47:13.932 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-02T06:47:13.932 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:13.932 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-02T06:47:13.932 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-02T06:47:13.932 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:13.932 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [osd] 2024-04-02T06:47:13.932 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-02T06:47:13.932 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-02T06:47:13.932 INFO:teuthology.orchestra.run.smithi037.stdout:Generating new minimal ceph.conf... 2024-04-02T06:47:15.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:14 smithi037 bash[18139]: audit 2024-04-02T06:47:14.931471+0000 mon.smithi037 (mon.0) 16 : audit 0 from='client.? 172.21.15.37:0/2422880018' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:47:15.410 INFO:teuthology.orchestra.run.smithi037.stdout:Restarting the monitor... 2024-04-02T06:47:15.764 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:15 smithi037 systemd[1]: Stopping Ceph mon.smithi037 for aad02026-f0bc-11ee-b647-cb9ed24678a4... 2024-04-02T06:47:15.764 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:15 smithi037 bash[18139]: debug 2024-04-02T06:47:15.545+0000 7fbce168b700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi037 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-04-02T06:47:15.764 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:15 smithi037 bash[18139]: debug 2024-04-02T06:47:15.545+0000 7fbce168b700 -1 mon.smithi037@0(leader) e1 *** Got Signal Terminated *** 2024-04-02T06:47:16.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:15 smithi037 bash[18530]: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-mon-smithi037 2024-04-02T06:47:16.138 INFO:teuthology.orchestra.run.smithi037.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-02T06:47:16.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:16 smithi037 bash[18589]: Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-mon-smithi037 2024-04-02T06:47:16.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:16 smithi037 systemd[1]: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi037.service: Deactivated successfully. 2024-04-02T06:47:16.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:16 smithi037 systemd[1]: Stopped Ceph mon.smithi037 for aad02026-f0bc-11ee-b647-cb9ed24678a4. 2024-04-02T06:47:16.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:16 smithi037 systemd[1]: Started Ceph mon.smithi037 for aad02026-f0bc-11ee-b647-cb9ed24678a4. 2024-04-02T06:47:17.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.117+0000 7f71e367cc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-02T06:47:17.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.117+0000 7f71e367cc80 0 ceph version 19.0.0-1979-g6cec793d (6cec793d9073f0594e2364b9b687ecaf22424cca) squid (dev), process ceph-mon, pid 7 2024-04-02T06:47:17.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.117+0000 7f71e367cc80 0 pidfile_write: ignore empty --pid-file 2024-04-02T06:47:17.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 0 load: jerasure load: lrc 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: RocksDB version: 7.9.2 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Git sha 0 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Compile date 2024-04-01 15:23:26 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: DB SUMMARY 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: DB Session ID: MVSDVP0AM1G8FZN57T57 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: CURRENT file: CURRENT 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi037/store.db dir, Total Num: 1, files: 000008.sst 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi037/store.db: 000009.log size: 89025 ; 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.error_if_exists: 0 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.create_if_missing: 0 2024-04-02T06:47:17.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.paranoid_checks: 1 2024-04-02T06:47:17.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-02T06:47:17.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-02T06:47:17.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-02T06:47:17.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.env: 0x561336ebdc60 2024-04-02T06:47:17.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-02T06:47:17.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.info_log: 0x56133892f9e0 2024-04-02T06:47:17.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-02T06:47:17.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.statistics: (nil) 2024-04-02T06:47:17.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.use_fsync: 0 2024-04-02T06:47:17.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_log_file_size: 0 2024-04-02T06:47:17.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-02T06:47:17.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-02T06:47:17.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-02T06:47:17.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.allow_fallocate: 1 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.use_direct_reads: 0 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.db_log_dir: 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.wal_dir: 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-02T06:47:17.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-02T06:47:17.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-02T06:47:17.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-02T06:47:17.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.write_buffer_manager: 0x5613389021e0 2024-04-02T06:47:17.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-02T06:47:17.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-02T06:47:17.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-02T06:47:17.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-02T06:47:17.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-02T06:47:17.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-02T06:47:17.307 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-02T06:47:17.307 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-02T06:47:17.307 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.unordered_write: 0 2024-04-02T06:47:17.307 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-02T06:47:17.307 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-02T06:47:17.307 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-02T06:47:17.307 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-02T06:47:17.307 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.row_cache: None 2024-04-02T06:47:17.307 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.wal_filter: None 2024-04-02T06:47:17.307 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.two_write_queues: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.wal_compression: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.atomic_flush: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.log_readahead_size: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-02T06:47:17.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_background_jobs: 2 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_background_compactions: -1 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_subcompactions: 1 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-02T06:47:17.309 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_open_files: -1 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_background_flushes: -1 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Compression algorithms supported: 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: kZSTD supported: 0 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: kXpressCompression supported: 0 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: kZlibCompression supported: 1 2024-04-02T06:47:17.310 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: kSnappyCompression supported: 1 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: kLZ4Compression supported: 1 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: kBZip2Compression supported: 0 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi037/store.db/MANIFEST-000010 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.merge_operator: 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_filter: None 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x56133892fae0) 2024-04-02T06:47:17.311 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cache_index_and_filter_blocks: 1 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: pin_top_level_index_and_filter: 1 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: index_type: 0 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: data_block_index_type: 0 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: index_shortening: 1 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: data_block_hash_table_util_ratio: 0.750000 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: checksum: 4 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: no_block_cache: 0 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: block_cache: 0x561338931090 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: block_cache_name: BinnedLRUCache 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: block_cache_options: 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: capacity : 536870912 2024-04-02T06:47:17.312 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: num_shard_bits : 4 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: strict_capacity_limit : 0 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: high_pri_pool_ratio: 0.000 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: block_cache_compressed: (nil) 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: persistent_cache: (nil) 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: block_size: 4096 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: block_size_deviation: 10 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: block_restart_interval: 16 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: index_block_restart_interval: 1 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: metadata_block_size: 4096 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: partition_filters: 0 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: use_delta_encoding: 1 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: filter_policy: bloomfilter 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: whole_key_filtering: 1 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: verify_compression: 0 2024-04-02T06:47:17.313 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: read_amp_bytes_per_bit: 0 2024-04-02T06:47:17.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: format_version: 5 2024-04-02T06:47:17.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: enable_index_compression: 1 2024-04-02T06:47:17.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: block_align: 0 2024-04-02T06:47:17.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: max_auto_readahead_size: 262144 2024-04-02T06:47:17.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: prepopulate_block_cache: 0 2024-04-02T06:47:17.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: initial_auto_readahead_size: 8192 2024-04-02T06:47:17.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: num_file_reads_for_auto_readahead: 2 2024-04-02T06:47:17.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-02T06:47:17.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-02T06:47:17.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compression: NoCompression 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.num_levels: 7 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-02T06:47:17.315 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-02T06:47:17.316 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-02T06:47:17.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-02T06:47:17.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-02T06:47:17.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-02T06:47:17.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-02T06:47:17.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-02T06:47:17.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-02T06:47:17.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-02T06:47:17.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-02T06:47:17.319 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-02T06:47:17.320 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.table_properties_collectors: 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.inplace_update_support: 0 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.bloom_locality: 0 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.max_successive_merges: 0 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-02T06:47:17.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.ttl: 2592000 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.enable_blob_files: false 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.min_blob_size: 0 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-02T06:47:17.322 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.125+0000 7f71e367cc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi037/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 6a2852b3-e1f2-4366-89a6-5abffc291411 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1712040437131092, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1712040437132235, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85725, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 256, "table_properties": {"data_size": 83898, "index_size": 237, "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": 10058, "raw_average_key_size": 46, "raw_value_size": 78129, "raw_average_value_size": 363, "num_data_blocks": 11, "num_entries": 215, "num_filter_entries": 215, "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": 1712040437, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "6a2852b3-e1f2-4366-89a6-5abffc291411", "db_session_id": "MVSDVP0AM1G8FZN57T57", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1712040437132368, "job": 1, "event": "recovery_finished"} 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi037/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x561338a26000 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71e367cc80 4 rocksdb: DB pointer 0x561338a10000 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71d1dde700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-02T06:47:17.323 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.129+0000 7f71d1dde700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: ** DB Stats ** 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: ** Compaction Stats [default] ** 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: L0 2/0 85.59 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 121.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Sum 2/0 85.59 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 121.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 121.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-02T06:47:17.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: ** Compaction Stats [default] ** 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 121.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: AddFile(Total Files): cumulative 0, interval 0 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: AddFile(Keys): cumulative 0, interval 0 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Cumulative compaction: 0.00 GB write, 15.60 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Interval compaction: 0.00 GB write, 15.60 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-04-02T06:47:17.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Block cache BinnedLRUCache@0x561338931090#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: ** File Read Latency Histogram By Level [default] ** 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.133+0000 7f71e367cc80 0 starting mon.smithi037 rank 0 at public addrs [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] at bind addrs [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi037 fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.133+0000 7f71e367cc80 1 mon.smithi037@-1(???) e1 preinit fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.133+0000 7f71e367cc80 0 mon.smithi037@-1(???).mds e1 new map 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.133+0000 7f71e367cc80 0 mon.smithi037@-1(???).mds e1 print_map 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: e1 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: legacy client fscid: -1 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: No filesystems configured 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.133+0000 7f71e367cc80 0 mon.smithi037@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-02T06:47:17.326 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.133+0000 7f71e367cc80 0 mon.smithi037@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.133+0000 7f71e367cc80 0 mon.smithi037@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.133+0000 7f71e367cc80 0 mon.smithi037@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: debug 2024-04-02T06:47:17.133+0000 7f71e367cc80 1 mon.smithi037@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.140111+0000 mon.smithi037 (mon.0) 1 : cluster 1 mon.smithi037 is new leader, mons smithi037 in quorum (ranks 0) 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.140199+0000 mon.smithi037 (mon.0) 2 : cluster 0 monmap epoch 1 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.140219+0000 mon.smithi037 (mon.0) 3 : cluster 0 fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.140233+0000 mon.smithi037 (mon.0) 4 : cluster 0 last_changed 2024-04-02T06:47:07.465194+0000 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.140256+0000 mon.smithi037 (mon.0) 5 : cluster 0 created 2024-04-02T06:47:07.465194+0000 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.140279+0000 mon.smithi037 (mon.0) 6 : cluster 0 min_mon_release 19 (squid) 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.140304+0000 mon.smithi037 (mon.0) 7 : cluster 0 election_strategy: 1 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.140323+0000 mon.smithi037 (mon.0) 8 : cluster 0 0: [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] mon.smithi037 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.140861+0000 mon.smithi037 (mon.0) 9 : cluster 0 fsmap 2024-04-02T06:47:17.327 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.140903+0000 mon.smithi037 (mon.0) 10 : cluster 0 osdmap e1: 0 total, 0 up, 0 in 2024-04-02T06:47:17.328 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:17 smithi037 bash[18626]: cluster 2024-04-02T06:47:17.141358+0000 mon.smithi037 (mon.0) 11 : cluster 0 mgrmap e1: no daemons active 2024-04-02T06:47:17.895 INFO:teuthology.orchestra.run.smithi037.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-02T06:47:17.912 INFO:teuthology.orchestra.run.smithi037.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-02T06:47:17.913 INFO:teuthology.orchestra.run.smithi037.stdout:Creating mgr... 2024-04-02T06:47:17.913 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-02T06:47:17.913 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-02T06:47:17.913 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying port 0.0.0.0:8443 ... 2024-04-02T06:47:18.253 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mgr.smithi037.yymbdj 2024-04-02T06:47:18.253 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to reset failed state of unit ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mgr.smithi037.yymbdj.service: Unit ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mgr.smithi037.yymbdj.service not loaded. 2024-04-02T06:47:18.257 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:18 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:47:18.477 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4.target.wants/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mgr.smithi037.yymbdj.service -> /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service. 2024-04-02T06:47:18.486 INFO:teuthology.orchestra.run.smithi037.stdout:firewalld does not appear to be present 2024-04-02T06:47:18.486 INFO:teuthology.orchestra.run.smithi037.stdout:Not possible to enable service . firewalld.service is not available 2024-04-02T06:47:18.486 INFO:teuthology.orchestra.run.smithi037.stdout:firewalld does not appear to be present 2024-04-02T06:47:18.486 INFO:teuthology.orchestra.run.smithi037.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-04-02T06:47:18.486 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mgr to start... 2024-04-02T06:47:18.486 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mgr... 2024-04-02T06:47:18.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:18 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:47:18.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:18 smithi037 bash[18626]: audit 2024-04-02T06:47:17.432159+0000 mon.smithi037 (mon.0) 12 : audit 1 from='client.? 172.21.15.37:0/3098318086' entity='client.admin' 2024-04-02T06:47:20.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:19 smithi037 bash[18626]: audit 2024-04-02T06:47:19.881279+0000 mon.smithi037 (mon.0) 13 : audit 0 from='client.? 172.21.15.37:0/595188203' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-02T06:47:20.432 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:20.432 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-02T06:47:20.432 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsid": "aad02026-f0bc-11ee-b647-cb9ed24678a4", 2024-04-02T06:47:20.432 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "health": { 2024-04-02T06:47:20.432 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-02T06:47:20.432 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-02T06:47:20.432 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-02T06:47:20.432 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:20.432 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-02T06:47:20.432 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 0 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "smithi037" 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:20.433 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-02T06:47:20.434 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-02T06:47:20.434 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-02T06:47:20.434 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-02T06:47:20.434 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-02T06:47:20.434 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-02T06:47:20.437 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:20.437 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-02T06:47:20.437 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-02T06:47:20.437 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-02T06:47:20.437 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-02T06:47:20.437 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-02T06:47:20.437 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-02T06:47:20.438 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "restful" 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modified": "2024-04-02T06:47:11.616367+0000", 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-02T06:47:20.439 INFO:teuthology.orchestra.run.smithi037.stdout:mgr not available, waiting (1/15)... 2024-04-02T06:47:23.724 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:23 smithi037 bash[18626]: audit 2024-04-02T06:47:23.403902+0000 mon.smithi037 (mon.0) 14 : audit 0 from='client.? 172.21.15.37:0/396808559' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-02T06:47:23.895 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:23.895 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-02T06:47:23.895 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsid": "aad02026-f0bc-11ee-b647-cb9ed24678a4", 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "health": { 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 0 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "smithi037" 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-04-02T06:47:23.896 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-02T06:47:23.897 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-02T06:47:23.900 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-02T06:47:23.901 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "restful" 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-02T06:47:23.902 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:23.903 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-02T06:47:23.903 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:23.903 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modified": "2024-04-02T06:47:11.616367+0000", 2024-04-02T06:47:23.903 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-02T06:47:23.903 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:23.903 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-02T06:47:23.903 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-02T06:47:23.903 INFO:teuthology.orchestra.run.smithi037.stdout:mgr not available, waiting (2/15)... 2024-04-02T06:47:27.144 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:26 smithi037 bash[18626]: audit 2024-04-02T06:47:26.834915+0000 mon.smithi037 (mon.0) 15 : audit 0 from='client.? 172.21.15.37:0/1268213025' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsid": "aad02026-f0bc-11ee-b647-cb9ed24678a4", 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "health": { 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 0 2024-04-02T06:47:27.358 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "smithi037" 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_age": 9, 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-02T06:47:27.359 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-02T06:47:27.360 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-02T06:47:27.360 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-02T06:47:27.363 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:27.363 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-02T06:47:27.363 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-02T06:47:27.363 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-02T06:47:27.363 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-02T06:47:27.363 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-02T06:47:27.363 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-02T06:47:27.363 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-02T06:47:27.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-02T06:47:27.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-02T06:47:27.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:27.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-02T06:47:27.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:27.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-02T06:47:27.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-02T06:47:27.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:27.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-02T06:47:27.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "restful" 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modified": "2024-04-02T06:47:11.616367+0000", 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:27.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-02T06:47:27.366 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-02T06:47:27.366 INFO:teuthology.orchestra.run.smithi037.stdout:mgr not available, waiting (3/15)... 2024-04-02T06:47:28.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:27 smithi037 bash[18626]: cluster 2024-04-02T06:47:27.880736+0000 mon.smithi037 (mon.0) 16 : cluster 1 Activating manager daemon smithi037.yymbdj 2024-04-02T06:47:29.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: cluster 2024-04-02T06:47:27.887500+0000 mon.smithi037 (mon.0) 17 : cluster 0 mgrmap e2: smithi037.yymbdj(active, starting, since 0.00726499s) 2024-04-02T06:47:29.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: audit 2024-04-02T06:47:27.892165+0000 mon.smithi037 (mon.0) 18 : audit 0 from='mgr.14100 172.21.15.37:0/3671387596' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-02T06:47:29.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: audit 2024-04-02T06:47:27.892426+0000 mon.smithi037 (mon.0) 19 : audit 0 from='mgr.14100 172.21.15.37:0/3671387596' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-02T06:47:29.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: audit 2024-04-02T06:47:27.892633+0000 mon.smithi037 (mon.0) 20 : audit 0 from='mgr.14100 172.21.15.37:0/3671387596' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-02T06:47:29.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: audit 2024-04-02T06:47:27.892852+0000 mon.smithi037 (mon.0) 21 : audit 0 from='mgr.14100 172.21.15.37:0/3671387596' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:47:29.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: audit 2024-04-02T06:47:27.893192+0000 mon.smithi037 (mon.0) 22 : audit 0 from='mgr.14100 172.21.15.37:0/3671387596' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr metadata", "who": "smithi037.yymbdj", "id": "smithi037.yymbdj"}]: dispatch 2024-04-02T06:47:29.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: cluster 2024-04-02T06:47:27.917782+0000 mon.smithi037 (mon.0) 23 : cluster 1 Manager daemon smithi037.yymbdj is now available 2024-04-02T06:47:29.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: audit 2024-04-02T06:47:27.931299+0000 mon.smithi037 (mon.0) 24 : audit 1 from='mgr.14100 172.21.15.37:0/3671387596' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.yymbdj/mirror_snapshot_schedule"}]: dispatch 2024-04-02T06:47:29.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: audit 2024-04-02T06:47:27.934674+0000 mon.smithi037 (mon.0) 25 : audit 1 from='mgr.14100 172.21.15.37:0/3671387596' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.yymbdj/trash_purge_schedule"}]: dispatch 2024-04-02T06:47:29.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: audit 2024-04-02T06:47:27.937531+0000 mon.smithi037 (mon.0) 26 : audit 1 from='mgr.14100 172.21.15.37:0/3671387596' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:29.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: audit 2024-04-02T06:47:27.940306+0000 mon.smithi037 (mon.0) 27 : audit 1 from='mgr.14100 172.21.15.37:0/3671387596' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:29.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:28 smithi037 bash[18626]: audit 2024-04-02T06:47:27.943141+0000 mon.smithi037 (mon.0) 28 : audit 1 from='mgr.14100 172.21.15.37:0/3671387596' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:30.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:29 smithi037 bash[18626]: cluster 2024-04-02T06:47:28.903087+0000 mon.smithi037 (mon.0) 29 : cluster 0 mgrmap e3: smithi037.yymbdj(active, since 1.02285s) 2024-04-02T06:47:31.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:30 smithi037 bash[18626]: cluster 2024-04-02T06:47:29.919658+0000 mon.smithi037 (mon.0) 30 : cluster 0 mgrmap e4: smithi037.yymbdj(active, since 2s) 2024-04-02T06:47:31.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:30 smithi037 bash[18626]: audit 2024-04-02T06:47:30.742883+0000 mon.smithi037 (mon.0) 31 : audit 0 from='client.? 172.21.15.37:0/2757757719' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-02T06:47:31.296 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:31.296 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-02T06:47:31.296 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsid": "aad02026-f0bc-11ee-b647-cb9ed24678a4", 2024-04-02T06:47:31.296 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "health": { 2024-04-02T06:47:31.296 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-02T06:47:31.296 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-02T06:47:31.297 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-02T06:47:31.297 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:31.297 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-02T06:47:31.304 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-02T06:47:31.304 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 0 2024-04-02T06:47:31.304 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:31.304 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "smithi037" 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_age": 13, 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-02T06:47:31.305 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:31.306 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "restful" 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-02T06:47:31.307 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:31.308 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-02T06:47:31.308 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-02T06:47:31.308 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modified": "2024-04-02T06:47:11.616367+0000", 2024-04-02T06:47:31.308 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-02T06:47:31.308 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-02T06:47:31.308 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-02T06:47:31.308 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-02T06:47:31.308 INFO:teuthology.orchestra.run.smithi037.stdout:mgr is available 2024-04-02T06:47:32.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:32 smithi037 bash[18626]: audit 2024-04-02T06:47:32.454128+0000 mon.smithi037 (mon.0) 32 : audit 1 from='client.? 172.21.15.37:0/3064568139' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-02T06:47:32.959 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:32.959 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [global] 2024-04-02T06:47:32.961 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout fsid = aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:32.961 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-02T06:47:32.961 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-02T06:47:32.961 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-02T06:47:32.961 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-02T06:47:32.962 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:32.962 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-02T06:47:32.962 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-02T06:47:32.962 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-02T06:47:32.962 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [osd] 2024-04-02T06:47:32.963 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-02T06:47:32.963 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-02T06:47:32.963 INFO:teuthology.orchestra.run.smithi037.stdout:Enabling cephadm module... 2024-04-02T06:47:34.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:34 smithi037 bash[18626]: audit 2024-04-02T06:47:34.228776+0000 mon.smithi037 (mon.0) 33 : audit 1 from='client.? 172.21.15.37:0/4024519777' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-02T06:47:35.550 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:35 smithi037 bash[18626]: audit 2024-04-02T06:47:34.280627+0000 mon.smithi037 (mon.0) 34 : audit 1 from='client.? 172.21.15.37:0/4024519777' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-02T06:47:35.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:35 smithi037 bash[18626]: cluster 2024-04-02T06:47:34.285024+0000 mon.smithi037 (mon.0) 35 : cluster 0 mgrmap e5: smithi037.yymbdj(active, since 6s) 2024-04-02T06:47:36.506 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:36 smithi037 bash[18626]: audit 2024-04-02T06:47:36.085207+0000 mon.smithi037 (mon.0) 36 : audit 0 from='client.? 172.21.15.37:0/3241238983' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-02T06:47:36.602 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-02T06:47:36.602 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-04-02T06:47:36.602 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-02T06:47:36.602 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "active_name": "smithi037.yymbdj", 2024-04-02T06:47:36.602 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-02T06:47:36.602 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-02T06:47:36.603 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for the mgr to restart... 2024-04-02T06:47:36.603 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mgr epoch 5... 2024-04-02T06:47:42.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:42 smithi037 bash[18626]: cluster 2024-04-02T06:47:42.676606+0000 mon.smithi037 (mon.0) 37 : cluster 1 Active manager daemon smithi037.yymbdj restarted 2024-04-02T06:47:42.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:42 smithi037 bash[18626]: cluster 2024-04-02T06:47:42.676836+0000 mon.smithi037 (mon.0) 38 : cluster 1 Activating manager daemon smithi037.yymbdj 2024-04-02T06:47:42.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:42 smithi037 bash[18626]: cluster 2024-04-02T06:47:42.685687+0000 mon.smithi037 (mon.0) 39 : cluster 0 osdmap e2: 0 total, 0 up, 0 in 2024-04-02T06:47:42.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:42 smithi037 bash[18626]: cluster 2024-04-02T06:47:42.685920+0000 mon.smithi037 (mon.0) 40 : cluster 0 mgrmap e6: smithi037.yymbdj(active, starting, since 0.00916776s) 2024-04-02T06:47:42.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:42 smithi037 bash[18626]: audit 2024-04-02T06:47:42.686691+0000 mon.smithi037 (mon.0) 41 : audit 0 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:47:42.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:42 smithi037 bash[18626]: audit 2024-04-02T06:47:42.689085+0000 mon.smithi037 (mon.0) 42 : audit 0 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr metadata", "who": "smithi037.yymbdj", "id": "smithi037.yymbdj"}]: dispatch 2024-04-02T06:47:42.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:42 smithi037 bash[18626]: audit 2024-04-02T06:47:42.690154+0000 mon.smithi037 (mon.0) 43 : audit 0 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-02T06:47:42.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:42 smithi037 bash[18626]: audit 2024-04-02T06:47:42.690313+0000 mon.smithi037 (mon.0) 44 : audit 0 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-02T06:47:42.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:42 smithi037 bash[18626]: audit 2024-04-02T06:47:42.690450+0000 mon.smithi037 (mon.0) 45 : audit 0 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-02T06:47:42.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:42 smithi037 bash[18626]: cluster 2024-04-02T06:47:42.716696+0000 mon.smithi037 (mon.0) 46 : cluster 1 Manager daemon smithi037.yymbdj is now available 2024-04-02T06:47:44.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: cephadm 2024-04-02T06:47:42.740615+0000 mgr.smithi037.yymbdj (mgr.14120) 1 : cephadm 1 Found migration_current of "None". Setting to last migration. 2024-04-02T06:47:44.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: audit 2024-04-02T06:47:42.745259+0000 mon.smithi037 (mon.0) 47 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: audit 2024-04-02T06:47:42.748680+0000 mon.smithi037 (mon.0) 48 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: audit 2024-04-02T06:47:42.752595+0000 mon.smithi037 (mon.0) 49 : audit 0 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: audit 2024-04-02T06:47:42.756430+0000 mon.smithi037 (mon.0) 50 : audit 0 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: audit 2024-04-02T06:47:42.767500+0000 mon.smithi037 (mon.0) 51 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.yymbdj/mirror_snapshot_schedule"}]: dispatch 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: audit 2024-04-02T06:47:42.771127+0000 mon.smithi037 (mon.0) 52 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.yymbdj/trash_purge_schedule"}]: dispatch 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: audit 2024-04-02T06:47:42.876158+0000 mon.smithi037 (mon.0) 53 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: audit 2024-04-02T06:47:42.881212+0000 mon.smithi037 (mon.0) 54 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: cephadm 2024-04-02T06:47:43.165411+0000 mgr.smithi037.yymbdj (mgr.14120) 2 : cephadm 1 [02/Apr/2024:06:47:43] ENGINE Bus STARTING 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: cephadm 2024-04-02T06:47:43.267152+0000 mgr.smithi037.yymbdj (mgr.14120) 3 : cephadm 1 [02/Apr/2024:06:47:43] ENGINE Serving on http://172.21.15.37:8765 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: audit 2024-04-02T06:47:43.426591+0000 mon.smithi037 (mon.0) 55 : audit 0 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:47:44.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:43 smithi037 bash[18626]: cluster 2024-04-02T06:47:43.688694+0000 mon.smithi037 (mon.0) 56 : cluster 0 mgrmap e7: smithi037.yymbdj(active, since 1.01194s) 2024-04-02T06:47:44.257 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-02T06:47:44.257 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-04-02T06:47:44.257 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-02T06:47:44.258 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-02T06:47:44.258 INFO:teuthology.orchestra.run.smithi037.stdout:mgr epoch 5 is available 2024-04-02T06:47:44.258 INFO:teuthology.orchestra.run.smithi037.stdout:Setting orchestrator backend to cephadm... 2024-04-02T06:47:45.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:44 smithi037 bash[18626]: cephadm 2024-04-02T06:47:43.388851+0000 mgr.smithi037.yymbdj (mgr.14120) 4 : cephadm 1 [02/Apr/2024:06:47:43] ENGINE Serving on https://172.21.15.37:7150 2024-04-02T06:47:45.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:44 smithi037 bash[18626]: cephadm 2024-04-02T06:47:43.389066+0000 mgr.smithi037.yymbdj (mgr.14120) 5 : cephadm 1 [02/Apr/2024:06:47:43] ENGINE Bus STARTED 2024-04-02T06:47:45.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:44 smithi037 bash[18626]: audit 2024-04-02T06:47:43.687247+0000 mgr.smithi037.yymbdj (mgr.14120) 6 : audit 0 from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-02T06:47:45.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:44 smithi037 bash[18626]: audit 2024-04-02T06:47:43.701196+0000 mgr.smithi037.yymbdj (mgr.14120) 7 : audit 0 from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-02T06:47:46.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:45 smithi037 bash[18626]: cluster 2024-04-02T06:47:44.758891+0000 mon.smithi037 (mon.0) 57 : cluster 0 mgrmap e8: smithi037.yymbdj(active, since 2s) 2024-04-02T06:47:46.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:45 smithi037 bash[18626]: audit 2024-04-02T06:47:45.439570+0000 mon.smithi037 (mon.0) 58 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:46.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:45 smithi037 bash[18626]: audit 2024-04-02T06:47:45.499011+0000 mon.smithi037 (mon.0) 59 : audit 0 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:47:47.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:46 smithi037 bash[18626]: audit 2024-04-02T06:47:45.431566+0000 mgr.smithi037.yymbdj (mgr.14120) 8 : audit 0 from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:47:47.726 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout value unchanged 2024-04-02T06:47:47.727 INFO:teuthology.orchestra.run.smithi037.stdout:Generating ssh key... 2024-04-02T06:47:48.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:47 smithi037 bash[18626]: audit 2024-04-02T06:47:47.174203+0000 mgr.smithi037.yymbdj (mgr.14120) 9 : audit 0 from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:47:50.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:50 smithi037 bash[18626]: audit 2024-04-02T06:47:48.972965+0000 mgr.smithi037.yymbdj (mgr.14120) 10 : audit 0 from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:47:50.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:50 smithi037 bash[18626]: cephadm 2024-04-02T06:47:48.973215+0000 mgr.smithi037.yymbdj (mgr.14120) 11 : cephadm 1 Generating ssh key... 2024-04-02T06:47:50.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:50 smithi037 bash[18626]: audit 2024-04-02T06:47:49.220829+0000 mon.smithi037 (mon.0) 60 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:50.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:50 smithi037 bash[18626]: audit 2024-04-02T06:47:49.226534+0000 mon.smithi037 (mon.0) 61 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:51.354 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQD7nTfd4E0rIdrUjBWU+ZeGrA6YBMjXzZbg1qquWiN6OzKVb0/IuCHanakBX3A/OPaCmSZsw+31Xk39KR0YPkxWtPe/dxsVoyOFPbOpNbU7Mep1S/x4J5kis316oC8yhAEHgdKcHLMxfYd3JWIatRisIlp1Try0+LfDBhSee1hqHBSrhRJRoCz3BrTR2OCdMBlDRnJBIjyH1nky73yatyqI4QH1sBK9BG6kfy6Qt3mDBDrgrqUNHR4FsnAvXG6Djx7iLDqdlMCypvxBo1IPEDrMbmUML6GpP+PAZxTajyTH9y559K6bvjHaqPIqje/VPW/98yV6zUaP2z3/3A2TErAC2bKBaq8+1s46p93n/0zoqb/nCZ8GbMC6+N7ExQ8k5jtcBXr0JOnu2LdA1yrC2PLOvEsM8rdZD2n3/e3j/WyYdCGjzUrAUPxYyToFRXmxdTyooXuiFc+Inja2Ftufjf7lMP12aRCL/SjmVkKAFutMxUm2lESrmk6ueXZK41ymYhk= ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:47:51.354 INFO:teuthology.orchestra.run.smithi037.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-04-02T06:47:51.354 INFO:teuthology.orchestra.run.smithi037.stdout:Adding key to root@localhost authorized_keys... 2024-04-02T06:47:51.355 INFO:teuthology.orchestra.run.smithi037.stdout:Adding host smithi037... 2024-04-02T06:47:51.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:51 smithi037 bash[18626]: audit 2024-04-02T06:47:50.859606+0000 mgr.smithi037.yymbdj (mgr.14120) 12 : audit 0 from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:47:53.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:53 smithi037 bash[18626]: audit 2024-04-02T06:47:52.594183+0000 mgr.smithi037.yymbdj (mgr.14120) 13 : audit 0 from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi037", "addr": "172.21.15.37", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:47:53.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:53 smithi037 bash[18626]: cephadm 2024-04-02T06:47:53.210691+0000 mgr.smithi037.yymbdj (mgr.14120) 14 : cephadm 1 Deploying cephadm binary to smithi037 2024-04-02T06:47:58.877 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Added host 'smithi037' with addr '172.21.15.37' 2024-04-02T06:47:58.877 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying mon service with default placement... 2024-04-02T06:47:59.441 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:59 smithi037 bash[18626]: audit 2024-04-02T06:47:58.183498+0000 mon.smithi037 (mon.0) 62 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:47:59.441 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:59 smithi037 bash[18626]: cephadm 2024-04-02T06:47:58.183943+0000 mgr.smithi037.yymbdj (mgr.14120) 15 : cephadm 1 Added host smithi037 2024-04-02T06:47:59.441 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:47:59 smithi037 bash[18626]: audit 2024-04-02T06:47:58.231141+0000 mon.smithi037 (mon.0) 63 : audit 0 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:48:01.236 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-04-02T06:48:01.237 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying mgr service with default placement... 2024-04-02T06:48:01.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:01 smithi037 bash[18626]: audit 2024-04-02T06:48:00.485603+0000 mgr.smithi037.yymbdj (mgr.14120) 16 : audit 0 from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:48:01.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:01 smithi037 bash[18626]: cephadm 2024-04-02T06:48:00.486970+0000 mgr.smithi037.yymbdj (mgr.14120) 17 : cephadm 1 Saving service mon spec with placement count:5 2024-04-02T06:48:01.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:01 smithi037 bash[18626]: audit 2024-04-02T06:48:00.489214+0000 mon.smithi037 (mon.0) 64 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:01.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:01 smithi037 bash[18626]: audit 2024-04-02T06:48:01.255947+0000 mon.smithi037 (mon.0) 65 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:02.986 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-04-02T06:48:02.986 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying crash service with default placement... 2024-04-02T06:48:03.006 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:02 smithi037 bash[18626]: audit 2024-04-02T06:48:01.736858+0000 mon.smithi037 (mon.0) 66 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:03.006 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:02 smithi037 bash[18626]: audit 2024-04-02T06:48:02.449388+0000 mon.smithi037 (mon.0) 67 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:04.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:03 smithi037 bash[18626]: audit 2024-04-02T06:48:02.444165+0000 mgr.smithi037.yymbdj (mgr.14120) 18 : audit 0 from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:48:04.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:03 smithi037 bash[18626]: cephadm 2024-04-02T06:48:02.446492+0000 mgr.smithi037.yymbdj (mgr.14120) 19 : cephadm 1 Saving service mgr spec with placement count:2 2024-04-02T06:48:04.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:03 smithi037 bash[18626]: cluster 2024-04-02T06:48:02.691705+0000 mgr.smithi037.yymbdj (mgr.14120) 20 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:04.782 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-04-02T06:48:04.782 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying ceph-exporter service with default placement... 2024-04-02T06:48:05.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:05 smithi037 bash[18626]: audit 2024-04-02T06:48:04.245932+0000 mgr.smithi037.yymbdj (mgr.14120) 21 : audit 0 from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:48:05.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:05 smithi037 bash[18626]: cephadm 2024-04-02T06:48:04.247568+0000 mgr.smithi037.yymbdj (mgr.14120) 22 : cephadm 1 Saving service crash spec with placement * 2024-04-02T06:48:05.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:05 smithi037 bash[18626]: audit 2024-04-02T06:48:04.251192+0000 mon.smithi037 (mon.0) 68 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:06.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:06 smithi037 bash[18626]: cluster 2024-04-02T06:48:04.692178+0000 mgr.smithi037.yymbdj (mgr.14120) 23 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:06.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:06 smithi037 bash[18626]: audit 2024-04-02T06:48:06.021825+0000 mon.smithi037 (mon.0) 69 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:06.515 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-04-02T06:48:06.515 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying prometheus service with default placement... 2024-04-02T06:48:07.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:07 smithi037 bash[18626]: audit 2024-04-02T06:48:06.014190+0000 mgr.smithi037.yymbdj (mgr.14120) 24 : audit 0 from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:48:07.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:07 smithi037 bash[18626]: cephadm 2024-04-02T06:48:06.017276+0000 mgr.smithi037.yymbdj (mgr.14120) 25 : cephadm 1 Saving service ceph-exporter spec with placement * 2024-04-02T06:48:08.303 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-04-02T06:48:08.303 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying grafana service with default placement... 2024-04-02T06:48:08.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:08 smithi037 bash[18626]: cluster 2024-04-02T06:48:06.692605+0000 mgr.smithi037.yymbdj (mgr.14120) 26 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:08.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:08 smithi037 bash[18626]: audit 2024-04-02T06:48:07.754595+0000 mon.smithi037 (mon.0) 70 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:09.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:09 smithi037 bash[18626]: audit 2024-04-02T06:48:07.747251+0000 mgr.smithi037.yymbdj (mgr.14120) 27 : audit 0 from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:48:09.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:09 smithi037 bash[18626]: cephadm 2024-04-02T06:48:07.749257+0000 mgr.smithi037.yymbdj (mgr.14120) 28 : cephadm 1 Saving service prometheus spec with placement count:1 2024-04-02T06:48:09.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:09 smithi037 bash[18626]: audit 2024-04-02T06:48:09.021538+0000 mon.smithi037 (mon.0) 71 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:10.115 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-04-02T06:48:10.115 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying node-exporter service with default placement... 2024-04-02T06:48:10.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:10 smithi037 bash[18626]: cluster 2024-04-02T06:48:08.692992+0000 mgr.smithi037.yymbdj (mgr.14120) 29 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:10.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:10 smithi037 bash[18626]: audit 2024-04-02T06:48:09.595362+0000 mon.smithi037 (mon.0) 72 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:10.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:10 smithi037 bash[18626]: audit 2024-04-02T06:48:10.060914+0000 mon.smithi037 (mon.0) 73 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:11.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:11 smithi037 bash[18626]: audit 2024-04-02T06:48:09.589548+0000 mgr.smithi037.yymbdj (mgr.14120) 30 : audit 0 from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:48:11.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:11 smithi037 bash[18626]: cephadm 2024-04-02T06:48:09.591454+0000 mgr.smithi037.yymbdj (mgr.14120) 31 : cephadm 1 Saving service grafana spec with placement count:1 2024-04-02T06:48:11.898 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-04-02T06:48:11.899 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying alertmanager service with default placement... 2024-04-02T06:48:12.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:12 smithi037 bash[18626]: cluster 2024-04-02T06:48:10.693407+0000 mgr.smithi037.yymbdj (mgr.14120) 32 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:12.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:12 smithi037 bash[18626]: audit 2024-04-02T06:48:11.358688+0000 mgr.smithi037.yymbdj (mgr.14120) 33 : audit 0 from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:48:12.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:12 smithi037 bash[18626]: cephadm 2024-04-02T06:48:11.360655+0000 mgr.smithi037.yymbdj (mgr.14120) 34 : cephadm 1 Saving service node-exporter spec with placement * 2024-04-02T06:48:12.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:12 smithi037 bash[18626]: audit 2024-04-02T06:48:11.365555+0000 mon.smithi037 (mon.0) 74 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:13.653 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-04-02T06:48:14.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:14 smithi037 bash[18626]: cluster 2024-04-02T06:48:12.693716+0000 mgr.smithi037.yymbdj (mgr.14120) 35 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:14.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:14 smithi037 bash[18626]: audit 2024-04-02T06:48:13.088385+0000 mgr.smithi037.yymbdj (mgr.14120) 36 : audit 0 from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:48:14.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:14 smithi037 bash[18626]: cephadm 2024-04-02T06:48:13.090659+0000 mgr.smithi037.yymbdj (mgr.14120) 37 : cephadm 1 Saving service alertmanager spec with placement count:1 2024-04-02T06:48:14.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:14 smithi037 bash[18626]: audit 2024-04-02T06:48:13.095317+0000 mon.smithi037 (mon.0) 75 : audit 1 from='mgr.14120 172.21.15.37:0/3309711831' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:16.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:15 smithi037 bash[18626]: cluster 2024-04-02T06:48:14.693974+0000 mgr.smithi037.yymbdj (mgr.14120) 38 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:16.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:15 smithi037 bash[18626]: audit 2024-04-02T06:48:14.851168+0000 mon.smithi037 (mon.0) 76 : audit 1 from='client.? 172.21.15.37:0/505598792' entity='client.admin' 2024-04-02T06:48:17.048 INFO:teuthology.orchestra.run.smithi037.stdout:Enabling the dashboard module... 2024-04-02T06:48:17.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:17 smithi037 bash[18626]: audit 2024-04-02T06:48:16.540488+0000 mon.smithi037 (mon.0) 77 : audit 1 from='client.? 172.21.15.37:0/926322957' entity='client.admin' 2024-04-02T06:48:17.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:17 smithi037 bash[18626]: cluster 2024-04-02T06:48:16.694335+0000 mgr.smithi037.yymbdj (mgr.14120) 39 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:18.979 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:18 smithi037 bash[18626]: audit 2024-04-02T06:48:18.732898+0000 mon.smithi037 (mon.0) 78 : audit 1 from='client.? 172.21.15.37:0/741789072' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-02T06:48:20.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:19 smithi037 bash[18626]: audit 2024-04-02T06:48:18.784932+0000 mon.smithi037 (mon.0) 79 : audit 1 from='client.? 172.21.15.37:0/741789072' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-02T06:48:20.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:19 smithi037 bash[18626]: cluster 2024-04-02T06:48:18.790030+0000 mon.smithi037 (mon.0) 80 : cluster 0 mgrmap e9: smithi037.yymbdj(active, since 36s) 2024-04-02T06:48:20.969 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:20 smithi037 bash[18626]: audit 2024-04-02T06:48:20.632965+0000 mon.smithi037 (mon.0) 81 : audit 0 from='client.? 172.21.15.37:0/1162786250' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-02T06:48:21.205 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-02T06:48:21.205 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-04-02T06:48:21.205 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-02T06:48:21.205 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "active_name": "smithi037.yymbdj", 2024-04-02T06:48:21.205 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-02T06:48:21.205 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-02T06:48:21.205 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for the mgr to restart... 2024-04-02T06:48:21.205 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mgr epoch 9... 2024-04-02T06:48:27.317 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:27 smithi037 bash[18626]: cluster 2024-04-02T06:48:27.208749+0000 mon.smithi037 (mon.0) 82 : cluster 1 Active manager daemon smithi037.yymbdj restarted 2024-04-02T06:48:27.317 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:27 smithi037 bash[18626]: cluster 2024-04-02T06:48:27.208991+0000 mon.smithi037 (mon.0) 83 : cluster 1 Activating manager daemon smithi037.yymbdj 2024-04-02T06:48:27.317 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:27 smithi037 bash[18626]: cluster 2024-04-02T06:48:27.218039+0000 mon.smithi037 (mon.0) 84 : cluster 0 osdmap e3: 0 total, 0 up, 0 in 2024-04-02T06:48:27.317 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:27 smithi037 bash[18626]: cluster 2024-04-02T06:48:27.218273+0000 mon.smithi037 (mon.0) 85 : cluster 0 mgrmap e10: smithi037.yymbdj(active, starting, since 0.00937808s) 2024-04-02T06:48:27.317 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:27 smithi037 bash[18626]: audit 2024-04-02T06:48:27.219526+0000 mon.smithi037 (mon.0) 86 : audit 0 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:48:27.317 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:27 smithi037 bash[18626]: audit 2024-04-02T06:48:27.221520+0000 mon.smithi037 (mon.0) 87 : audit 0 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr metadata", "who": "smithi037.yymbdj", "id": "smithi037.yymbdj"}]: dispatch 2024-04-02T06:48:27.317 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:27 smithi037 bash[18626]: audit 2024-04-02T06:48:27.222543+0000 mon.smithi037 (mon.0) 88 : audit 0 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-02T06:48:27.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:27 smithi037 bash[18626]: audit 2024-04-02T06:48:27.222682+0000 mon.smithi037 (mon.0) 89 : audit 0 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-02T06:48:27.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:27 smithi037 bash[18626]: audit 2024-04-02T06:48:27.222830+0000 mon.smithi037 (mon.0) 90 : audit 0 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-02T06:48:27.318 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:27 smithi037 bash[18626]: cluster 2024-04-02T06:48:27.248726+0000 mon.smithi037 (mon.0) 91 : cluster 1 Manager daemon smithi037.yymbdj is now available 2024-04-02T06:48:28.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:28 smithi037 bash[18626]: audit 2024-04-02T06:48:27.274134+0000 mon.smithi037 (mon.0) 92 : audit 0 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:48:28.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:28 smithi037 bash[18626]: audit 2024-04-02T06:48:27.292281+0000 mon.smithi037 (mon.0) 93 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.yymbdj/mirror_snapshot_schedule"}]: dispatch 2024-04-02T06:48:28.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:28 smithi037 bash[18626]: audit 2024-04-02T06:48:27.295252+0000 mon.smithi037 (mon.0) 94 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.yymbdj/trash_purge_schedule"}]: dispatch 2024-04-02T06:48:28.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:28 smithi037 bash[18626]: cluster 2024-04-02T06:48:28.220114+0000 mon.smithi037 (mon.0) 95 : cluster 0 mgrmap e11: smithi037.yymbdj(active, since 1.01121s) 2024-04-02T06:48:28.810 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-02T06:48:28.810 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-04-02T06:48:28.811 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-02T06:48:28.811 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-02T06:48:28.811 INFO:teuthology.orchestra.run.smithi037.stdout:mgr epoch 9 is available 2024-04-02T06:48:28.811 INFO:teuthology.orchestra.run.smithi037.stdout:Generating a dashboard self-signed certificate... 2024-04-02T06:48:29.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:29 smithi037 bash[18626]: cephadm 2024-04-02T06:48:28.114860+0000 mgr.smithi037.yymbdj (mgr.14164) 1 : cephadm 1 [02/Apr/2024:06:48:28] ENGINE Bus STARTING 2024-04-02T06:48:29.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:29 smithi037 bash[18626]: cephadm 2024-04-02T06:48:28.217039+0000 mgr.smithi037.yymbdj (mgr.14164) 2 : cephadm 1 [02/Apr/2024:06:48:28] ENGINE Serving on http://172.21.15.37:8765 2024-04-02T06:48:29.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:29 smithi037 bash[18626]: audit 2024-04-02T06:48:28.218626+0000 mgr.smithi037.yymbdj (mgr.14164) 3 : audit 0 from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-02T06:48:29.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:29 smithi037 bash[18626]: audit 2024-04-02T06:48:28.230767+0000 mgr.smithi037.yymbdj (mgr.14164) 4 : audit 0 from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-02T06:48:29.552 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:29 smithi037 bash[18626]: cephadm 2024-04-02T06:48:28.339799+0000 mgr.smithi037.yymbdj (mgr.14164) 5 : cephadm 1 [02/Apr/2024:06:48:28] ENGINE Serving on https://172.21.15.37:7150 2024-04-02T06:48:29.552 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:29 smithi037 bash[18626]: cephadm 2024-04-02T06:48:28.339982+0000 mgr.smithi037.yymbdj (mgr.14164) 6 : cephadm 1 [02/Apr/2024:06:48:28] ENGINE Bus STARTED 2024-04-02T06:48:30.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:30 smithi037 bash[18626]: cluster 2024-04-02T06:48:29.276002+0000 mon.smithi037 (mon.0) 96 : cluster 0 mgrmap e12: smithi037.yymbdj(active, since 2s) 2024-04-02T06:48:30.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:30 smithi037 bash[18626]: audit 2024-04-02T06:48:30.078316+0000 mon.smithi037 (mon.0) 97 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:30.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:30 smithi037 bash[18626]: audit 2024-04-02T06:48:30.083512+0000 mon.smithi037 (mon.0) 98 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:30.607 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-04-02T06:48:30.607 INFO:teuthology.orchestra.run.smithi037.stdout:Creating initial admin user... 2024-04-02T06:48:31.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:31 smithi037 bash[18626]: audit 2024-04-02T06:48:29.953023+0000 mgr.smithi037.yymbdj (mgr.14164) 7 : audit 0 from='client.14176 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:48:32.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:32 smithi037 bash[18626]: audit 2024-04-02T06:48:31.790816+0000 mgr.smithi037.yymbdj (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-04-02T06:48:32.572 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:32 smithi037 bash[18626]: audit 2024-04-02T06:48:32.094616+0000 mon.smithi037 (mon.0) 99 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:32.616 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$rS0dh4vU9EREbqIEp939aepF5nb5b2Vncfbz49rRzqfHRm4mZPSom", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1712040512, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-04-02T06:48:32.616 INFO:teuthology.orchestra.run.smithi037.stdout:Fetching dashboard port number... 2024-04-02T06:48:34.314 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 8443 2024-04-02T06:48:34.314 INFO:teuthology.orchestra.run.smithi037.stdout:firewalld does not appear to be present 2024-04-02T06:48:34.314 INFO:teuthology.orchestra.run.smithi037.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-04-02T06:48:34.315 INFO:teuthology.orchestra.run.smithi037.stdout:Ceph Dashboard is now available at: 2024-04-02T06:48:34.315 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:48:34.315 INFO:teuthology.orchestra.run.smithi037.stdout: URL: https://smithi037.front.sepia.ceph.com:8443/ 2024-04-02T06:48:34.315 INFO:teuthology.orchestra.run.smithi037.stdout: User: admin 2024-04-02T06:48:34.315 INFO:teuthology.orchestra.run.smithi037.stdout: Password: xt7h66dnil 2024-04-02T06:48:34.315 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:48:34.316 INFO:teuthology.orchestra.run.smithi037.stdout:Saving cluster configuration to /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config directory 2024-04-02T06:48:34.316 INFO:teuthology.orchestra.run.smithi037.stdout:Enabling autotune for osd_memory_target 2024-04-02T06:48:34.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:34 smithi037 bash[18626]: cluster 2024-04-02T06:48:33.276984+0000 mon.smithi037 (mon.0) 100 : cluster 0 mgrmap e13: smithi037.yymbdj(active, since 6s) 2024-04-02T06:48:34.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:34 smithi037 bash[18626]: audit 2024-04-02T06:48:33.813986+0000 mon.smithi037 (mon.0) 101 : audit 0 from='client.? 172.21.15.37:0/728548304' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-02T06:48:34.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:34 smithi037 bash[18626]: audit 2024-04-02T06:48:33.840451+0000 mon.smithi037 (mon.0) 102 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:36.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:35 smithi037 bash[18626]: audit 2024-04-02T06:48:34.885821+0000 mon.smithi037 (mon.0) 103 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:37.979 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout:Or, if you are only running a single cluster on this host: 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout:Please consider enabling telemetry to help improve Ceph: 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout: ceph telemetry on 2024-04-02T06:48:37.980 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:48:37.981 INFO:teuthology.orchestra.run.smithi037.stdout:For more information see: 2024-04-02T06:48:37.981 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:48:37.981 INFO:teuthology.orchestra.run.smithi037.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-04-02T06:48:37.981 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:48:37.981 INFO:teuthology.orchestra.run.smithi037.stdout:Bootstrap complete. 2024-04-02T06:48:38.038 INFO:tasks.cephadm:Fetching config... 2024-04-02T06:48:38.038 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:48:38.039 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-04-02T06:48:38.044 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-04-02T06:48:38.044 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:48:38.044 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-04-02T06:48:38.090 INFO:tasks.cephadm:Fetching mon keyring... 2024-04-02T06:48:38.090 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:48:38.090 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/keyring of=/dev/stdout 2024-04-02T06:48:38.143 INFO:tasks.cephadm:Fetching pub ssh key... 2024-04-02T06:48:38.143 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:48:38.144 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-04-02T06:48:38.189 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-04-02T06:48:38.189 DEBUG:teuthology.orchestra.run.smithi037:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQD7nTfd4E0rIdrUjBWU+ZeGrA6YBMjXzZbg1qquWiN6OzKVb0/IuCHanakBX3A/OPaCmSZsw+31Xk39KR0YPkxWtPe/dxsVoyOFPbOpNbU7Mep1S/x4J5kis316oC8yhAEHgdKcHLMxfYd3JWIatRisIlp1Try0+LfDBhSee1hqHBSrhRJRoCz3BrTR2OCdMBlDRnJBIjyH1nky73yatyqI4QH1sBK9BG6kfy6Qt3mDBDrgrqUNHR4FsnAvXG6Djx7iLDqdlMCypvxBo1IPEDrMbmUML6GpP+PAZxTajyTH9y559K6bvjHaqPIqje/VPW/98yV6zUaP2z3/3A2TErAC2bKBaq8+1s46p93n/0zoqb/nCZ8GbMC6+N7ExQ8k5jtcBXr0JOnu2LdA1yrC2PLOvEsM8rdZD2n3/e3j/WyYdCGjzUrAUPxYyToFRXmxdTyooXuiFc+Inja2Ftufjf7lMP12aRCL/SjmVkKAFutMxUm2lESrmk6ueXZK41ymYhk= ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-02T06:48:38.254 INFO:teuthology.orchestra.run.smithi037.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQD7nTfd4E0rIdrUjBWU+ZeGrA6YBMjXzZbg1qquWiN6OzKVb0/IuCHanakBX3A/OPaCmSZsw+31Xk39KR0YPkxWtPe/dxsVoyOFPbOpNbU7Mep1S/x4J5kis316oC8yhAEHgdKcHLMxfYd3JWIatRisIlp1Try0+LfDBhSee1hqHBSrhRJRoCz3BrTR2OCdMBlDRnJBIjyH1nky73yatyqI4QH1sBK9BG6kfy6Qt3mDBDrgrqUNHR4FsnAvXG6Djx7iLDqdlMCypvxBo1IPEDrMbmUML6GpP+PAZxTajyTH9y559K6bvjHaqPIqje/VPW/98yV6zUaP2z3/3A2TErAC2bKBaq8+1s46p93n/0zoqb/nCZ8GbMC6+N7ExQ8k5jtcBXr0JOnu2LdA1yrC2PLOvEsM8rdZD2n3/e3j/WyYdCGjzUrAUPxYyToFRXmxdTyooXuiFc+Inja2Ftufjf7lMP12aRCL/SjmVkKAFutMxUm2lESrmk6ueXZK41ymYhk= ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:48:38.263 DEBUG:teuthology.orchestra.run.smithi052:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQD7nTfd4E0rIdrUjBWU+ZeGrA6YBMjXzZbg1qquWiN6OzKVb0/IuCHanakBX3A/OPaCmSZsw+31Xk39KR0YPkxWtPe/dxsVoyOFPbOpNbU7Mep1S/x4J5kis316oC8yhAEHgdKcHLMxfYd3JWIatRisIlp1Try0+LfDBhSee1hqHBSrhRJRoCz3BrTR2OCdMBlDRnJBIjyH1nky73yatyqI4QH1sBK9BG6kfy6Qt3mDBDrgrqUNHR4FsnAvXG6Djx7iLDqdlMCypvxBo1IPEDrMbmUML6GpP+PAZxTajyTH9y559K6bvjHaqPIqje/VPW/98yV6zUaP2z3/3A2TErAC2bKBaq8+1s46p93n/0zoqb/nCZ8GbMC6+N7ExQ8k5jtcBXr0JOnu2LdA1yrC2PLOvEsM8rdZD2n3/e3j/WyYdCGjzUrAUPxYyToFRXmxdTyooXuiFc+Inja2Ftufjf7lMP12aRCL/SjmVkKAFutMxUm2lESrmk6ueXZK41ymYhk= ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-02T06:48:38.288 INFO:teuthology.orchestra.run.smithi052.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQD7nTfd4E0rIdrUjBWU+ZeGrA6YBMjXzZbg1qquWiN6OzKVb0/IuCHanakBX3A/OPaCmSZsw+31Xk39KR0YPkxWtPe/dxsVoyOFPbOpNbU7Mep1S/x4J5kis316oC8yhAEHgdKcHLMxfYd3JWIatRisIlp1Try0+LfDBhSee1hqHBSrhRJRoCz3BrTR2OCdMBlDRnJBIjyH1nky73yatyqI4QH1sBK9BG6kfy6Qt3mDBDrgrqUNHR4FsnAvXG6Djx7iLDqdlMCypvxBo1IPEDrMbmUML6GpP+PAZxTajyTH9y559K6bvjHaqPIqje/VPW/98yV6zUaP2z3/3A2TErAC2bKBaq8+1s46p93n/0zoqb/nCZ8GbMC6+N7ExQ8k5jtcBXr0JOnu2LdA1yrC2PLOvEsM8rdZD2n3/e3j/WyYdCGjzUrAUPxYyToFRXmxdTyooXuiFc+Inja2Ftufjf7lMP12aRCL/SjmVkKAFutMxUm2lESrmk6ueXZK41ymYhk= ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:48:38.298 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-04-02T06:48:38.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:38 smithi037 bash[18626]: audit 2024-04-02T06:48:37.491853+0000 mon.smithi037 (mon.0) 104 : audit 1 from='client.? 172.21.15.37:0/3945247799' entity='client.admin' 2024-04-02T06:48:43.468 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:48:46.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:46 smithi037 bash[18626]: audit 2024-04-02T06:48:45.431469+0000 mon.smithi037 (mon.0) 105 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:46.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:46 smithi037 bash[18626]: audit 2024-04-02T06:48:45.435929+0000 mon.smithi037 (mon.0) 106 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:46.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:46 smithi037 bash[18626]: audit 2024-04-02T06:48:45.437334+0000 mon.smithi037 (mon.0) 107 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd/host:smithi037", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:48:46.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:46 smithi037 bash[18626]: audit 2024-04-02T06:48:45.443793+0000 mon.smithi037 (mon.0) 108 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:46.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:46 smithi037 bash[18626]: audit 2024-04-02T06:48:45.447241+0000 mon.smithi037 (mon.0) 109 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi037", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-02T06:48:46.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:46 smithi037 bash[18626]: audit 2024-04-02T06:48:45.448793+0000 mon.smithi037 (mon.0) 110 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi037", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-02T06:48:46.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:46 smithi037 bash[18626]: audit 2024-04-02T06:48:45.453313+0000 mon.smithi037 (mon.0) 111 : audit 0 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:48:46.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:46 smithi037 bash[18626]: cephadm 2024-04-02T06:48:45.455641+0000 mgr.smithi037.yymbdj (mgr.14164) 9 : cephadm 1 Deploying daemon ceph-exporter.smithi037 on smithi037 2024-04-02T06:48:46.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:46 smithi037 bash[18626]: audit 2024-04-02T06:48:45.925321+0000 mon.smithi037 (mon.0) 112 : audit 1 from='client.? 172.21.15.37:0/3707885361' entity='client.admin' 2024-04-02T06:48:46.972 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-04-02T06:48:46.973 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-04-02T06:48:48.079 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:47 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:48:48.364 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:48 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:48:48.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:48 smithi037 bash[18626]: cluster 2024-04-02T06:48:47.224335+0000 mgr.smithi037.yymbdj (mgr.14164) 10 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:48.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:48 smithi037 bash[18626]: audit 2024-04-02T06:48:48.363278+0000 mon.smithi037 (mon.0) 113 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:48.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:48 smithi037 bash[18626]: audit 2024-04-02T06:48:48.366392+0000 mon.smithi037 (mon.0) 114 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:48.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:48 smithi037 bash[18626]: audit 2024-04-02T06:48:48.379057+0000 mon.smithi037 (mon.0) 115 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:48.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:48 smithi037 bash[18626]: audit 2024-04-02T06:48:48.381393+0000 mon.smithi037 (mon.0) 116 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:48.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:48 smithi037 bash[18626]: audit 2024-04-02T06:48:48.382677+0000 mon.smithi037 (mon.0) 117 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi037", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-02T06:48:48.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:48 smithi037 bash[18626]: audit 2024-04-02T06:48:48.384113+0000 mon.smithi037 (mon.0) 118 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi037", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-02T06:48:48.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:48 smithi037 bash[18626]: audit 2024-04-02T06:48:48.385843+0000 mon.smithi037 (mon.0) 119 : audit 0 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:48:49.680 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:49 smithi037 bash[18626]: cephadm 2024-04-02T06:48:48.386702+0000 mgr.smithi037.yymbdj (mgr.14164) 11 : cephadm 1 Deploying daemon crash.smithi037 on smithi037 2024-04-02T06:48:50.658 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:50 smithi037 bash[18626]: cluster 2024-04-02T06:48:49.224820+0000 mgr.smithi037.yymbdj (mgr.14164) 12 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:50.658 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:50 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:48:51.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:50 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:48:51.680 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:48:51.938 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:51 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:48:51.938 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:51 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:48:52.252 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:51 smithi037 bash[18626]: audit 2024-04-02T06:48:50.944184+0000 mon.smithi037 (mon.0) 120 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:52.252 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:51 smithi037 bash[18626]: audit 2024-04-02T06:48:50.947095+0000 mon.smithi037 (mon.0) 121 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:52.252 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:51 smithi037 bash[18626]: audit 2024-04-02T06:48:50.958093+0000 mon.smithi037 (mon.0) 122 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:52.252 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:51 smithi037 bash[18626]: audit 2024-04-02T06:48:50.960498+0000 mon.smithi037 (mon.0) 123 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:52.252 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:51 smithi037 bash[18626]: cephadm 2024-04-02T06:48:50.962746+0000 mgr.smithi037.yymbdj (mgr.14164) 13 : cephadm 1 Deploying daemon node-exporter.smithi037 on smithi037 2024-04-02T06:48:52.252 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:51 smithi037 bash[18626]: cluster 2024-04-02T06:48:51.225238+0000 mgr.smithi037.yymbdj (mgr.14164) 14 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:53.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:53 smithi037 bash[18626]: audit 2024-04-02T06:48:52.042928+0000 mon.smithi037 (mon.0) 124 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:53.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:53 smithi037 bash[18626]: audit 2024-04-02T06:48:52.048347+0000 mon.smithi037 (mon.0) 125 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:53.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:53 smithi037 bash[18626]: audit 2024-04-02T06:48:52.083797+0000 mon.smithi037 (mon.0) 126 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:53.051 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:53 smithi037 bash[18626]: audit 2024-04-02T06:48:52.088804+0000 mon.smithi037 (mon.0) 127 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:53.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:53 smithi037 bash[18626]: cephadm 2024-04-02T06:48:52.100454+0000 mgr.smithi037.yymbdj (mgr.14164) 15 : cephadm 1 Deploying daemon alertmanager.smithi037 on smithi037 2024-04-02T06:48:53.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:53 smithi037 bash[18626]: audit 2024-04-02T06:48:52.295958+0000 mon.smithi037 (mon.0) 128 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:54.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:54 smithi037 bash[18626]: cluster 2024-04-02T06:48:53.225600+0000 mgr.smithi037.yymbdj (mgr.14164) 16 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:56.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:56 smithi037 bash[18626]: cluster 2024-04-02T06:48:55.225927+0000 mgr.smithi037.yymbdj (mgr.14164) 17 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:48:56.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:56 smithi037 bash[18626]: audit 2024-04-02T06:48:55.945135+0000 mon.smithi037 (mon.0) 129 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:48:57.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:57 smithi037 bash[18626]: audit 2024-04-02T06:48:55.942091+0000 mgr.smithi037.yymbdj (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-04-02T06:48:57.557 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi052 2024-04-02T06:48:57.557 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:48:57.557 DEBUG:teuthology.orchestra.run.smithi052:> dd of=/etc/ceph/ceph.conf 2024-04-02T06:48:57.563 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:48:57.564 DEBUG:teuthology.orchestra.run.smithi052:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-02T06:48:57.609 INFO:tasks.cephadm:Adding host smithi052 to orchestrator... 2024-04-02T06:48:57.609 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph orch host add smithi052 2024-04-02T06:48:58.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:48:58 smithi037 bash[18626]: cluster 2024-04-02T06:48:57.226325+0000 mgr.smithi037.yymbdj (mgr.14164) 19 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:00.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:00 smithi037 bash[18626]: cluster 2024-04-02T06:48:59.226813+0000 mgr.smithi037.yymbdj (mgr.14164) 20 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:02.341 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:49:02.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:02 smithi037 bash[18626]: cluster 2024-04-02T06:49:01.227249+0000 mgr.smithi037.yymbdj (mgr.14164) 21 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:04.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:04 smithi037 bash[18626]: cluster 2024-04-02T06:49:03.227655+0000 mgr.smithi037.yymbdj (mgr.14164) 22 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:06.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:06 smithi037 bash[18626]: cluster 2024-04-02T06:49:05.228046+0000 mgr.smithi037.yymbdj (mgr.14164) 23 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:06.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:06 smithi037 bash[18626]: audit 2024-04-02T06:49:05.308147+0000 mgr.smithi037.yymbdj (mgr.14164) 24 : audit 0 from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi052", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:49:07.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:07 smithi037 bash[18626]: cephadm 2024-04-02T06:49:06.020158+0000 mgr.smithi037.yymbdj (mgr.14164) 25 : cephadm 1 Deploying cephadm binary to smithi052 2024-04-02T06:49:08.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:08 smithi037 bash[18626]: cluster 2024-04-02T06:49:07.228423+0000 mgr.smithi037.yymbdj (mgr.14164) 26 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:10.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:10 smithi037 bash[18626]: cluster 2024-04-02T06:49:09.228768+0000 mgr.smithi037.yymbdj (mgr.14164) 27 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:11.322 INFO:teuthology.orchestra.run.smithi037.stdout:Added host 'smithi052' with addr '172.21.15.52' 2024-04-02T06:49:11.952 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph orch host ls --format=json 2024-04-02T06:49:12.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:12 smithi037 bash[18626]: cluster 2024-04-02T06:49:11.229184+0000 mgr.smithi037.yymbdj (mgr.14164) 28 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:12.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:12 smithi037 bash[18626]: audit 2024-04-02T06:49:11.325432+0000 mon.smithi037 (mon.0) 130 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:12.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:12 smithi037 bash[18626]: cephadm 2024-04-02T06:49:11.326295+0000 mgr.smithi037.yymbdj (mgr.14164) 29 : cephadm 1 Added host smithi052 2024-04-02T06:49:14.764 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:14 smithi037 bash[18626]: cluster 2024-04-02T06:49:13.229630+0000 mgr.smithi037.yymbdj (mgr.14164) 30 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:16.694 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:49:16.717 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:16 smithi037 bash[18626]: cluster 2024-04-02T06:49:15.230048+0000 mgr.smithi037.yymbdj (mgr.14164) 31 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:18.551 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:18 smithi037 bash[18626]: cluster 2024-04-02T06:49:17.230445+0000 mgr.smithi037.yymbdj (mgr.14164) 32 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:19.118 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:49:19.118 INFO:teuthology.orchestra.run.smithi037.stdout:[{"addr": "172.21.15.37", "hostname": "smithi037", "labels": [], "status": ""}, {"addr": "172.21.15.52", "hostname": "smithi052", "labels": [], "status": ""}] 2024-04-02T06:49:19.750 INFO:tasks.cephadm:Setting crush tunables to default 2024-04-02T06:49:19.750 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd crush tunables default 2024-04-02T06:49:20.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:20 smithi037 bash[18626]: audit 2024-04-02T06:49:19.122056+0000 mgr.smithi037.yymbdj (mgr.14164) 33 : audit 0 from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-02T06:49:20.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:20 smithi037 bash[18626]: cluster 2024-04-02T06:49:19.230860+0000 mgr.smithi037.yymbdj (mgr.14164) 34 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:22.801 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:22 smithi037 bash[18626]: cluster 2024-04-02T06:49:21.231256+0000 mgr.smithi037.yymbdj (mgr.14164) 35 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:24.490 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:49:24.785 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:24 smithi037 bash[18626]: cluster 2024-04-02T06:49:23.231671+0000 mgr.smithi037.yymbdj (mgr.14164) 36 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:26.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:26 smithi037 bash[18626]: cluster 2024-04-02T06:49:25.232003+0000 mgr.smithi037.yymbdj (mgr.14164) 37 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:27.343 INFO:teuthology.orchestra.run.smithi037.stderr:adjusted tunables profile to default 2024-04-02T06:49:27.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:27 smithi037 bash[18626]: audit 2024-04-02T06:49:26.837187+0000 mon.smithi037 (mon.0) 131 : audit 1 from='client.? 172.21.15.37:0/1280809406' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-02T06:49:27.934 INFO:tasks.cephadm:Adding mon.smithi037 on smithi037 2024-04-02T06:49:27.935 INFO:tasks.cephadm:Adding mon.smithi052 on smithi052 2024-04-02T06:49:27.935 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph orch apply mon '2;smithi037:172.21.15.37=smithi037;smithi052:172.21.15.52=smithi052' 2024-04-02T06:49:28.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:28 smithi037 bash[18626]: cluster 2024-04-02T06:49:27.232360+0000 mgr.smithi037.yymbdj (mgr.14164) 38 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:28.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:28 smithi037 bash[18626]: audit 2024-04-02T06:49:27.341797+0000 mon.smithi037 (mon.0) 132 : audit 1 from='client.? 172.21.15.37:0/1280809406' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-02T06:49:28.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:28 smithi037 bash[18626]: cluster 2024-04-02T06:49:27.346995+0000 mon.smithi037 (mon.0) 133 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-04-02T06:49:29.150 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:30.199 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:30.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:30 smithi037 bash[18626]: cluster 2024-04-02T06:49:29.232821+0000 mgr.smithi037.yymbdj (mgr.14164) 39 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:32.531 INFO:teuthology.orchestra.run.smithi052.stdout:Scheduled mon update... 2024-04-02T06:49:32.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:32 smithi037 bash[18626]: cluster 2024-04-02T06:49:31.233231+0000 mgr.smithi037.yymbdj (mgr.14164) 40 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:33.058 DEBUG:teuthology.orchestra.run.smithi052:mon.smithi052> sudo journalctl -f -n 0 -u ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi052.service 2024-04-02T06:49:33.061 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:49:33.061 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:49:33.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:33 smithi037 bash[18626]: audit 2024-04-02T06:49:32.522994+0000 mgr.smithi037.yymbdj (mgr.14164) 41 : audit 0 from='client.14197 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi037:172.21.15.37=smithi037;smithi052:172.21.15.52=smithi052", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:49:33.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:33 smithi037 bash[18626]: cephadm 2024-04-02T06:49:32.528737+0000 mgr.smithi037.yymbdj (mgr.14164) 42 : cephadm 1 Saving service mon spec with placement smithi037:172.21.15.37=smithi037;smithi052:172.21.15.52=smithi052;count:2 2024-04-02T06:49:33.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:33 smithi037 bash[18626]: audit 2024-04-02T06:49:32.533720+0000 mon.smithi037 (mon.0) 134 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:34.318 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:34.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:34 smithi037 bash[18626]: cluster 2024-04-02T06:49:33.233633+0000 mgr.smithi037.yymbdj (mgr.14164) 43 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:35.366 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:36.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:36 smithi037 bash[18626]: cluster 2024-04-02T06:49:35.233990+0000 mgr.smithi037.yymbdj (mgr.14164) 44 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:37.740 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:49:37.740 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:49:37.743 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:49:38.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:38 smithi037 bash[18626]: cluster 2024-04-02T06:49:37.234373+0000 mgr.smithi037.yymbdj (mgr.14164) 45 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:38.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:38 smithi037 bash[18626]: audit 2024-04-02T06:49:37.743215+0000 mon.smithi037 (mon.0) 135 : audit 0 from='client.? 172.21.15.52:0/1992282628' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:49:39.256 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:49:39.256 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:49:40.466 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:40.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:40 smithi037 bash[18626]: cluster 2024-04-02T06:49:39.234770+0000 mgr.smithi037.yymbdj (mgr.14164) 46 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:41.514 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:42.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:42 smithi037 bash[18626]: cluster 2024-04-02T06:49:41.235181+0000 mgr.smithi037.yymbdj (mgr.14164) 47 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:43.900 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:49:43.900 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:49:43.903 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:49:44.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:44 smithi037 bash[18626]: cluster 2024-04-02T06:49:43.235553+0000 mgr.smithi037.yymbdj (mgr.14164) 48 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:44.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:44 smithi037 bash[18626]: audit 2024-04-02T06:49:43.902832+0000 mon.smithi037 (mon.0) 136 : audit 0 from='client.? 172.21.15.52:0/162216603' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:49:45.418 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:49:45.418 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:49:46.631 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:46.802 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:46 smithi037 bash[18626]: cluster 2024-04-02T06:49:45.235950+0000 mgr.smithi037.yymbdj (mgr.14164) 49 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:47.679 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:48.699 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:48 smithi037 bash[18626]: cluster 2024-04-02T06:49:47.236383+0000 mgr.smithi037.yymbdj (mgr.14164) 50 : cluster 0 pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:50.033 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:49:50.033 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:49:50.036 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:49:50.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:50 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:49:50.726 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:50 smithi037 bash[18626]: cluster 2024-04-02T06:49:49.236925+0000 mgr.smithi037.yymbdj (mgr.14164) 51 : cluster 0 pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:50.726 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:50 smithi037 bash[18626]: audit 2024-04-02T06:49:50.035668+0000 mon.smithi037 (mon.0) 137 : audit 0 from='client.? 172.21.15.52:0/535043338' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:49:50.726 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:50 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:49:51.551 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:49:51.552 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:49:51.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:51 smithi037 bash[18626]: audit 2024-04-02T06:49:50.783278+0000 mon.smithi037 (mon.0) 138 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:51.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:51 smithi037 bash[18626]: audit 2024-04-02T06:49:50.789186+0000 mon.smithi037 (mon.0) 139 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:51.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:51 smithi037 bash[18626]: audit 2024-04-02T06:49:50.830534+0000 mon.smithi037 (mon.0) 140 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:51.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:51 smithi037 bash[18626]: audit 2024-04-02T06:49:50.835013+0000 mon.smithi037 (mon.0) 141 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:51.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:51 smithi037 bash[18626]: audit 2024-04-02T06:49:50.840268+0000 mon.smithi037 (mon.0) 142 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:51.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:51 smithi037 bash[18626]: audit 2024-04-02T06:49:50.844746+0000 mon.smithi037 (mon.0) 143 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:51.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:51 smithi037 bash[18626]: audit 2024-04-02T06:49:50.955801+0000 mon.smithi037 (mon.0) 144 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:51.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:51 smithi037 bash[18626]: audit 2024-04-02T06:49:50.961065+0000 mon.smithi037 (mon.0) 145 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:51.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:51 smithi037 bash[18626]: audit 2024-04-02T06:49:50.963572+0000 mon.smithi037 (mon.0) 146 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-02T06:49:51.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:51 smithi037 bash[18626]: audit 2024-04-02T06:49:50.969178+0000 mon.smithi037 (mon.0) 147 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:52.769 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:53.052 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:52 smithi037 bash[18626]: cephadm 2024-04-02T06:49:50.869097+0000 mgr.smithi037.yymbdj (mgr.14164) 52 : cephadm 1 Regenerating cephadm self-signed grafana TLS certificates 2024-04-02T06:49:53.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:52 smithi037 bash[18626]: audit 2024-04-02T06:49:50.964547+0000 mgr.smithi037.yymbdj (mgr.14164) 53 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-02T06:49:53.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:52 smithi037 bash[18626]: cephadm 2024-04-02T06:49:51.004114+0000 mgr.smithi037.yymbdj (mgr.14164) 54 : cephadm 1 Deploying daemon grafana.smithi037 on smithi037 2024-04-02T06:49:53.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:52 smithi037 bash[18626]: cluster 2024-04-02T06:49:51.237278+0000 mgr.smithi037.yymbdj (mgr.14164) 55 : cluster 0 pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:53.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:52 smithi037 bash[18626]: audit 2024-04-02T06:49:52.313936+0000 mon.smithi037 (mon.0) 148 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:49:53.817 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:55.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:54 smithi037 bash[18626]: cluster 2024-04-02T06:49:53.237526+0000 mgr.smithi037.yymbdj (mgr.14164) 56 : cluster 0 pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:56.097 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:49:56.097 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:49:56.099 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:49:57.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:56 smithi037 bash[18626]: cluster 2024-04-02T06:49:55.237885+0000 mgr.smithi037.yymbdj (mgr.14164) 57 : cluster 0 pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:57.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:56 smithi037 bash[18626]: audit 2024-04-02T06:49:56.098518+0000 mon.smithi037 (mon.0) 149 : audit 0 from='client.? 172.21.15.52:0/2783581154' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:49:57.559 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:49:57.560 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:49:58.775 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:49:59.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:49:58 smithi037 bash[18626]: cluster 2024-04-02T06:49:57.238172+0000 mgr.smithi037.yymbdj (mgr.14164) 58 : cluster 0 pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:49:59.823 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:01.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:00 smithi037 bash[18626]: cluster 2024-04-02T06:49:59.238583+0000 mgr.smithi037.yymbdj (mgr.14164) 59 : cluster 0 pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:02.140 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:50:02.140 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:50:02.146 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:50:03.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:02 smithi037 bash[18626]: cluster 2024-04-02T06:50:01.239030+0000 mgr.smithi037.yymbdj (mgr.14164) 60 : cluster 0 pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:03.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:02 smithi037 bash[18626]: audit 2024-04-02T06:50:02.142352+0000 mon.smithi037 (mon.0) 150 : audit 0 from='client.? 172.21.15.52:0/2138752392' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:03.620 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:50:03.620 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:50:04.836 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:05.050 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:04 smithi037 bash[18626]: cluster 2024-04-02T06:50:03.239461+0000 mgr.smithi037.yymbdj (mgr.14164) 61 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:05.885 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:06.667 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:06 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:50:06.937 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:06 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:50:06.937 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:06 smithi037 bash[18626]: cluster 2024-04-02T06:50:05.239870+0000 mgr.smithi037.yymbdj (mgr.14164) 62 : cluster 0 pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:08.136 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:50:08.137 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:50:08.139 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:50:08.148 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: audit 2024-04-02T06:50:06.935835+0000 mon.smithi037 (mon.0) 151 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:08.148 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: audit 2024-04-02T06:50:06.941899+0000 mon.smithi037 (mon.0) 152 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:08.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: audit 2024-04-02T06:50:06.964270+0000 mon.smithi037 (mon.0) 153 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:08.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: audit 2024-04-02T06:50:06.969521+0000 mon.smithi037 (mon.0) 154 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:08.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: audit 2024-04-02T06:50:06.974634+0000 mon.smithi037 (mon.0) 155 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:08.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: audit 2024-04-02T06:50:06.980276+0000 mon.smithi037 (mon.0) 156 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:08.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: audit 2024-04-02T06:50:06.985519+0000 mon.smithi037 (mon.0) 157 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:08.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: audit 2024-04-02T06:50:06.990757+0000 mon.smithi037 (mon.0) 158 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:08.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: cluster 2024-04-02T06:50:07.240205+0000 mgr.smithi037.yymbdj (mgr.14164) 63 : cluster 0 pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:08.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: cephadm 2024-04-02T06:50:07.249686+0000 mgr.smithi037.yymbdj (mgr.14164) 64 : cephadm 1 Deploying daemon prometheus.smithi037 on smithi037 2024-04-02T06:50:08.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:07 smithi037 bash[18626]: audit 2024-04-02T06:50:07.334172+0000 mon.smithi037 (mon.0) 159 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:09.209 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:08 smithi037 bash[18626]: audit 2024-04-02T06:50:08.138756+0000 mon.smithi037 (mon.0) 160 : audit 0 from='client.? 172.21.15.52:0/58367607' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:09.612 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:50:09.613 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:50:10.243 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:09 smithi037 bash[18626]: cluster 2024-04-02T06:50:09.240482+0000 mgr.smithi037.yymbdj (mgr.14164) 65 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:10.824 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:11.873 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:12.422 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:12 smithi037 bash[18626]: cluster 2024-04-02T06:50:11.240753+0000 mgr.smithi037.yymbdj (mgr.14164) 66 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:14.165 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:50:14.165 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:50:14.168 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:50:14.505 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:14 smithi037 bash[18626]: cluster 2024-04-02T06:50:13.241103+0000 mgr.smithi037.yymbdj (mgr.14164) 67 : cluster 0 pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:14.505 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:14 smithi037 bash[18626]: audit 2024-04-02T06:50:14.167360+0000 mon.smithi037 (mon.0) 161 : audit 0 from='client.? 172.21.15.52:0/2938922757' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:15.646 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:50:15.647 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:50:16.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:16 smithi037 bash[18626]: cluster 2024-04-02T06:50:15.241464+0000 mgr.smithi037.yymbdj (mgr.14164) 68 : cluster 0 pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:16.862 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:17.909 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:18.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:18 smithi037 bash[18626]: cluster 2024-04-02T06:50:17.241807+0000 mgr.smithi037.yymbdj (mgr.14164) 69 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:20.207 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:50:20.207 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:50:20.211 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:50:20.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:20 smithi037 bash[18626]: cluster 2024-04-02T06:50:19.242180+0000 mgr.smithi037.yymbdj (mgr.14164) 70 : cluster 0 pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:20.301 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:20 smithi037 bash[18626]: audit 2024-04-02T06:50:20.209553+0000 mon.smithi037 (mon.0) 162 : audit 0 from='client.? 172.21.15.52:0/3688948332' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:20.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:20 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:50:20.834 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:20 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:50:21.739 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:50:21.739 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:50:22.081 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:21 smithi037 bash[18626]: audit 2024-04-02T06:50:20.876194+0000 mon.smithi037 (mon.0) 163 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:22.081 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:21 smithi037 bash[18626]: audit 2024-04-02T06:50:20.882119+0000 mon.smithi037 (mon.0) 164 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:22.081 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:21 smithi037 bash[18626]: audit 2024-04-02T06:50:20.907357+0000 mon.smithi037 (mon.0) 165 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:22.081 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:21 smithi037 bash[18626]: audit 2024-04-02T06:50:20.909316+0000 mon.smithi037 (mon.0) 166 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-04-02T06:50:22.081 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:21 smithi037 bash[18626]: cluster 2024-04-02T06:50:21.242592+0000 mgr.smithi037.yymbdj (mgr.14164) 71 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:22.950 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:23.132 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:22 smithi037 bash[18626]: audit 2024-04-02T06:50:21.908240+0000 mon.smithi037 (mon.0) 167 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-04-02T06:50:23.133 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:22 smithi037 bash[18626]: cluster 2024-04-02T06:50:21.914526+0000 mon.smithi037 (mon.0) 168 : cluster 0 mgrmap e14: smithi037.yymbdj(active, since 114s) 2024-04-02T06:50:23.999 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:26.523 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:50:26.523 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:50:26.526 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:50:26.762 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:26 smithi037 bash[18626]: audit 2024-04-02T06:50:26.524440+0000 mon.smithi037 (mon.0) 169 : audit 0 from='client.? 172.21.15.52:0/2947043752' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:28.064 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:50:28.064 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:50:29.278 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:30.325 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: cluster 2024-04-02T06:50:30.388009+0000 mon.smithi037 (mon.0) 170 : cluster 1 Active manager daemon smithi037.yymbdj restarted 2024-04-02T06:50:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: cluster 2024-04-02T06:50:30.388642+0000 mon.smithi037 (mon.0) 171 : cluster 1 Activating manager daemon smithi037.yymbdj 2024-04-02T06:50:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: cluster 2024-04-02T06:50:30.392383+0000 mon.smithi037 (mon.0) 172 : cluster 0 osdmap e5: 0 total, 0 up, 0 in 2024-04-02T06:50:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: cluster 2024-04-02T06:50:30.392521+0000 mon.smithi037 (mon.0) 173 : cluster 0 mgrmap e15: smithi037.yymbdj(active, starting, since 0.00409706s) 2024-04-02T06:50:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: audit 2024-04-02T06:50:30.395253+0000 mon.smithi037 (mon.0) 174 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:50:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: audit 2024-04-02T06:50:30.397515+0000 mon.smithi037 (mon.0) 175 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr metadata", "who": "smithi037.yymbdj", "id": "smithi037.yymbdj"}]: dispatch 2024-04-02T06:50:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: audit 2024-04-02T06:50:30.399044+0000 mon.smithi037 (mon.0) 176 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-02T06:50:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: audit 2024-04-02T06:50:30.399301+0000 mon.smithi037 (mon.0) 177 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-02T06:50:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: audit 2024-04-02T06:50:30.399454+0000 mon.smithi037 (mon.0) 178 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-02T06:50:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: cluster 2024-04-02T06:50:30.411497+0000 mon.smithi037 (mon.0) 179 : cluster 1 Manager daemon smithi037.yymbdj is now available 2024-04-02T06:50:30.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:30 smithi037 bash[18626]: audit 2024-04-02T06:50:30.438791+0000 mon.smithi037 (mon.0) 180 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:50:31.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:31 smithi037 bash[18626]: audit 2024-04-02T06:50:30.458319+0000 mon.smithi037 (mon.0) 181 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:31.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:31 smithi037 bash[18626]: audit 2024-04-02T06:50:30.462059+0000 mon.smithi037 (mon.0) 182 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:50:31.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:31 smithi037 bash[18626]: audit 2024-04-02T06:50:30.470400+0000 mon.smithi037 (mon.0) 183 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.yymbdj/mirror_snapshot_schedule"}]: dispatch 2024-04-02T06:50:31.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:31 smithi037 bash[18626]: audit 2024-04-02T06:50:30.473638+0000 mon.smithi037 (mon.0) 184 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.yymbdj/trash_purge_schedule"}]: dispatch 2024-04-02T06:50:31.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:31 smithi037 bash[18626]: audit 2024-04-02T06:50:31.325059+0000 mon.smithi037 (mon.0) 185 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:31.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:31 smithi037 bash[18626]: cluster 2024-04-02T06:50:31.402253+0000 mon.smithi037 (mon.0) 186 : cluster 0 mgrmap e16: smithi037.yymbdj(active, since 1.01381s) 2024-04-02T06:50:32.561 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:50:32.561 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:50:32.563 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:50:33.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:33 smithi037 bash[18626]: cluster 2024-04-02T06:50:32.464964+0000 mon.smithi037 (mon.0) 187 : cluster 0 mgrmap e17: smithi037.yymbdj(active, since 2s) 2024-04-02T06:50:33.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:33 smithi037 bash[18626]: cephadm 2024-04-02T06:50:32.498177+0000 mgr.smithi037.yymbdj (mgr.14215) 1 : cephadm 1 [02/Apr/2024:06:50:32] ENGINE Bus STARTING 2024-04-02T06:50:33.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:33 smithi037 bash[18626]: audit 2024-04-02T06:50:32.562692+0000 mon.smithi037 (mon.0) 188 : audit 0 from='client.? 172.21.15.52:0/2104625047' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:33.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:33 smithi037 bash[18626]: cephadm 2024-04-02T06:50:32.620260+0000 mgr.smithi037.yymbdj (mgr.14215) 2 : cephadm 1 [02/Apr/2024:06:50:32] ENGINE Serving on https://172.21.15.37:7150 2024-04-02T06:50:33.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:33 smithi037 bash[18626]: cephadm 2024-04-02T06:50:32.721665+0000 mgr.smithi037.yymbdj (mgr.14215) 3 : cephadm 1 [02/Apr/2024:06:50:32] ENGINE Serving on http://172.21.15.37:8765 2024-04-02T06:50:33.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:33 smithi037 bash[18626]: cephadm 2024-04-02T06:50:32.721820+0000 mgr.smithi037.yymbdj (mgr.14215) 4 : cephadm 1 [02/Apr/2024:06:50:32] ENGINE Bus STARTED 2024-04-02T06:50:34.073 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:50:34.073 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:50:34.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:34 smithi037 bash[18626]: audit 2024-04-02T06:50:33.553140+0000 mon.smithi037 (mon.0) 189 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:35.275 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:36.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:35 smithi037 bash[18626]: audit 2024-04-02T06:50:34.752273+0000 mon.smithi037 (mon.0) 190 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:36.319 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-02T06:50:38.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:37 smithi037 bash[18626]: audit 2024-04-02T06:50:36.727702+0000 mon.smithi037 (mon.0) 191 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:38.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:37 smithi037 bash[18626]: audit 2024-04-02T06:50:36.731524+0000 mon.smithi037 (mon.0) 192 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:39.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:38 smithi037 bash[18626]: audit 2024-04-02T06:50:37.771129+0000 mon.smithi037 (mon.0) 193 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:39.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:38 smithi037 bash[18626]: audit 2024-04-02T06:50:37.778332+0000 mon.smithi037 (mon.0) 194 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:39.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:38 smithi037 bash[18626]: audit 2024-04-02T06:50:37.779518+0000 mon.smithi037 (mon.0) 195 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd/host:smithi037", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:50:39.178 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:50:39.178 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:50:39.181 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:50:40.038 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:39 smithi037 bash[18626]: audit 2024-04-02T06:50:39.179982+0000 mon.smithi037 (mon.0) 196 : audit 0 from='client.? 172.21.15.52:0/2220925020' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:40.727 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:50:40.727 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:50:41.687 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:40.348285+0000 mon.smithi037 (mon.0) 197 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:41.687 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:40.353929+0000 mon.smithi037 (mon.0) 198 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:41.687 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:40.361577+0000 mon.smithi037 (mon.0) 199 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:41.687 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:40.367290+0000 mon.smithi037 (mon.0) 200 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:41.687 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:40.368854+0000 mon.smithi037 (mon.0) 201 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd/host:smithi052", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:50:41.687 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:40.370927+0000 mon.smithi037 (mon.0) 202 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:50:41.687 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:40.372727+0000 mon.smithi037 (mon.0) 203 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:50:41.687 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: cephadm 2024-04-02T06:50:40.375414+0000 mgr.smithi037.yymbdj (mgr.14215) 5 : cephadm 1 Updating smithi037:/etc/ceph/ceph.conf 2024-04-02T06:50:41.687 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: cephadm 2024-04-02T06:50:40.375934+0000 mgr.smithi037.yymbdj (mgr.14215) 6 : cephadm 1 Updating smithi052:/etc/ceph/ceph.conf 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: cephadm 2024-04-02T06:50:40.641775+0000 mgr.smithi037.yymbdj (mgr.14215) 7 : cephadm 1 Updating smithi037:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: cephadm 2024-04-02T06:50:40.643488+0000 mgr.smithi037.yymbdj (mgr.14215) 8 : cephadm 1 Updating smithi052:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: cephadm 2024-04-02T06:50:40.806412+0000 mgr.smithi037.yymbdj (mgr.14215) 9 : cephadm 1 Updating smithi037:/etc/ceph/ceph.client.admin.keyring 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: cephadm 2024-04-02T06:50:40.808637+0000 mgr.smithi037.yymbdj (mgr.14215) 10 : cephadm 1 Updating smithi052:/etc/ceph/ceph.client.admin.keyring 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: cephadm 2024-04-02T06:50:40.970885+0000 mgr.smithi037.yymbdj (mgr.14215) 11 : cephadm 1 Updating smithi037:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: cephadm 2024-04-02T06:50:40.974153+0000 mgr.smithi037.yymbdj (mgr.14215) 12 : cephadm 1 Updating smithi052:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:41.142808+0000 mon.smithi037 (mon.0) 204 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:41.145957+0000 mon.smithi037 (mon.0) 205 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:41.149642+0000 mon.smithi037 (mon.0) 206 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:41.152300+0000 mon.smithi037 (mon.0) 207 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:41.156767+0000 mon.smithi037 (mon.0) 208 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:41.160066+0000 mon.smithi037 (mon.0) 209 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi052", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-02T06:50:41.688 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:41.166999+0000 mon.smithi037 (mon.0) 210 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi052", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-02T06:50:41.689 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:41 smithi037 bash[18626]: audit 2024-04-02T06:50:41.169740+0000 mon.smithi037 (mon.0) 211 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:50:41.936 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-04-02T06:50:42.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: cephadm 2024-04-02T06:50:41.171414+0000 mgr.smithi037.yymbdj (mgr.14215) 13 : cephadm 1 Deploying daemon ceph-exporter.smithi052 on smithi052 2024-04-02T06:50:42.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: cephadm 2024-04-02T06:50:41.640476+0000 mgr.smithi037.yymbdj (mgr.14215) 14 : cephadm 1 Removing key for client.ceph-exporter.smithi052 2024-04-02T06:50:42.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: audit 2024-04-02T06:50:41.641095+0000 mon.smithi037 (mon.0) 212 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi052"}]: dispatch 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: audit 2024-04-02T06:50:41.642748+0000 mon.smithi037 (mon.0) 213 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi052"}]': finished 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: cephadm 2024-04-02T06:50:41.687576+0000 mgr.smithi037.yymbdj (mgr.14215) 15 : cephadm 4 Failed while placing ceph-exporter.smithi052 on smithi052: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: /usr/bin/docker: stdout 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: /usr/bin/docker: stdout 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: Deploy daemon ceph-exporter.smithi052 ... 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: ERROR: Desired sock dir for ceph-exporter is not directory: /var/run/ceph/ 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: audit 2024-04-02T06:50:41.702027+0000 mon.smithi037 (mon.0) 214 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: audit 2024-04-02T06:50:41.703963+0000 mon.smithi037 (mon.0) 215 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: audit 2024-04-02T06:50:41.708969+0000 mon.smithi037 (mon.0) 216 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:50:42.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:42 smithi037 bash[18626]: cephadm 2024-04-02T06:50:41.711033+0000 mgr.smithi037.yymbdj (mgr.14215) 16 : cephadm 1 Deploying daemon crash.smithi052 on smithi052 2024-04-02T06:50:44.852 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:50:44.852 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:50:44.855 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:50:45.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:44 smithi037 bash[18626]: audit 2024-04-02T06:50:44.854152+0000 mon.smithi037 (mon.0) 217 : audit 0 from='client.? 172.21.15.52:0/937904492' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:46.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:45 smithi037 bash[18626]: audit 2024-04-02T06:50:44.946224+0000 mon.smithi037 (mon.0) 218 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:46.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:45 smithi037 bash[18626]: audit 2024-04-02T06:50:44.952230+0000 mon.smithi037 (mon.0) 219 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:46.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:45 smithi037 bash[18626]: audit 2024-04-02T06:50:44.987913+0000 mon.smithi037 (mon.0) 220 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:46.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:45 smithi037 bash[18626]: audit 2024-04-02T06:50:44.993633+0000 mon.smithi037 (mon.0) 221 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:46.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:45 smithi037 bash[18626]: audit 2024-04-02T06:50:45.462960+0000 mon.smithi037 (mon.0) 222 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:46.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:45 smithi037 bash[18626]: audit 2024-04-02T06:50:45.463543+0000 mon.smithi037 (mon.0) 223 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:50:46.971 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:50:46.972 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:50:47.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:46 smithi037 bash[18626]: cephadm 2024-04-02T06:50:44.997174+0000 mgr.smithi037.yymbdj (mgr.14215) 17 : cephadm 1 Deploying daemon node-exporter.smithi052 on smithi052 2024-04-02T06:50:47.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:46 smithi037 bash[18626]: audit 2024-04-02T06:50:46.371423+0000 mon.smithi037 (mon.0) 224 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:47.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:46 smithi037 bash[18626]: audit 2024-04-02T06:50:46.377621+0000 mon.smithi037 (mon.0) 225 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:47.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:46 smithi037 bash[18626]: audit 2024-04-02T06:50:46.420414+0000 mon.smithi037 (mon.0) 226 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:47.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:46 smithi037 bash[18626]: audit 2024-04-02T06:50:46.426113+0000 mon.smithi037 (mon.0) 227 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:47.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:46 smithi037 bash[18626]: audit 2024-04-02T06:50:46.431162+0000 mon.smithi037 (mon.0) 228 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi052.hwhbeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-02T06:50:47.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:46 smithi037 bash[18626]: audit 2024-04-02T06:50:46.432941+0000 mon.smithi037 (mon.0) 229 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi052.hwhbeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-02T06:50:47.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:46 smithi037 bash[18626]: audit 2024-04-02T06:50:46.437335+0000 mon.smithi037 (mon.0) 230 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-02T06:50:47.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:46 smithi037 bash[18626]: audit 2024-04-02T06:50:46.439369+0000 mon.smithi037 (mon.0) 231 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:50:48.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:47 smithi037 bash[18626]: cephadm 2024-04-02T06:50:46.441420+0000 mgr.smithi037.yymbdj (mgr.14215) 18 : cephadm 1 Deploying daemon mgr.smithi052.hwhbeq on smithi052 2024-04-02T06:50:50.893 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-04-02T06:50:51.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:50 smithi037 bash[18626]: audit 2024-04-02T06:50:49.561375+0000 mon.smithi037 (mon.0) 232 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:51.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:50 smithi037 bash[18626]: audit 2024-04-02T06:50:49.567723+0000 mon.smithi037 (mon.0) 233 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:51.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:50 smithi037 bash[18626]: audit 2024-04-02T06:50:49.620630+0000 mon.smithi037 (mon.0) 234 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:51.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:50 smithi037 bash[18626]: audit 2024-04-02T06:50:49.626332+0000 mon.smithi037 (mon.0) 235 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:51.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:50 smithi037 bash[18626]: audit 2024-04-02T06:50:49.629877+0000 mon.smithi037 (mon.0) 236 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-02T06:50:51.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:50 smithi037 bash[18626]: audit 2024-04-02T06:50:49.631753+0000 mon.smithi037 (mon.0) 237 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:50:51.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:50 smithi037 bash[18626]: cephadm 2024-04-02T06:50:49.633911+0000 mgr.smithi037.yymbdj (mgr.14215) 19 : cephadm 1 Deploying daemon mon.smithi052 on smithi052 2024-04-02T06:50:51.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:50 smithi037 bash[18626]: audit 2024-04-02T06:50:50.470127+0000 mon.smithi037 (mon.0) 238 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:52.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:51 smithi037 bash[18626]: cluster 2024-04-02T06:50:51.740603+0000 mon.smithi037 (mon.0) 239 : cluster 3 Health check failed: Failed to place 1 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-04-02T06:50:53.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:52 smithi037 bash[18626]: cluster 2024-04-02T06:50:51.689666+0000 mgr.smithi037.yymbdj (mgr.14215) 20 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:54.212 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:50:54.213 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":1,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:47:07.465194Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-02T06:50:54.215 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 1 2024-04-02T06:50:54.816 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:54 smithi052 systemd[1]: Started Ceph mon.smithi052 for aad02026-f0bc-11ee-b647-cb9ed24678a4. 2024-04-02T06:50:55.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:54 smithi037 bash[18626]: cluster 2024-04-02T06:50:53.690247+0000 mgr.smithi037.yymbdj (mgr.14215) 21 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:50:54 smithi037 bash[18626]: audit 2024-04-02T06:50:54.214208+0000 mon.smithi037 (mon.0) 240 : audit 0 from='client.? 172.21.15.52:0/1671746365' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:55.767 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.541+0000 7f96ae533c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-02T06:50:55.767 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.541+0000 7f96ae533c80 0 ceph version 19.0.0-1979-g6cec793d (6cec793d9073f0594e2364b9b687ecaf22424cca) squid (dev), process ceph-mon, pid 7 2024-04-02T06:50:55.767 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.541+0000 7f96ae533c80 0 pidfile_write: ignore empty --pid-file 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 0 load: jerasure load: lrc 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: RocksDB version: 7.9.2 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Git sha 0 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Compile date 2024-04-01 15:23:26 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: DB SUMMARY 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: DB Session ID: GEBKQBWO6WBVZHUJJCA9 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: CURRENT file: CURRENT 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi052/store.db dir, Total Num: 0, files: 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi052/store.db: 000004.log size: 511 ; 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.error_if_exists: 0 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.create_if_missing: 0 2024-04-02T06:50:55.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.paranoid_checks: 1 2024-04-02T06:50:55.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-02T06:50:55.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-02T06:50:55.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-02T06:50:55.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.env: 0x556edf8dfc60 2024-04-02T06:50:55.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-02T06:50:55.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.info_log: 0x556ee20a99e0 2024-04-02T06:50:55.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-02T06:50:55.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.statistics: (nil) 2024-04-02T06:50:55.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.use_fsync: 0 2024-04-02T06:50:55.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_log_file_size: 0 2024-04-02T06:50:55.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-02T06:50:55.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-02T06:50:55.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-02T06:50:55.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-02T06:50:55.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.allow_fallocate: 1 2024-04-02T06:50:55.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-02T06:50:55.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.use_direct_reads: 0 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.db_log_dir: 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.wal_dir: 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-02T06:50:55.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.write_buffer_manager: 0x556ee207c1e0 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.unordered_write: 0 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-02T06:50:55.772 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.row_cache: None 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.wal_filter: None 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.two_write_queues: 0 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.wal_compression: 0 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.atomic_flush: 0 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.log_readahead_size: 0 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-02T06:50:55.773 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_background_jobs: 2 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_background_compactions: -1 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_subcompactions: 1 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-02T06:50:55.774 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_open_files: -1 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_background_flushes: -1 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Compression algorithms supported: 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: kZSTD supported: 0 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: kXpressCompression supported: 0 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-02T06:50:55.775 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: kZlibCompression supported: 1 2024-04-02T06:50:55.776 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: kSnappyCompression supported: 1 2024-04-02T06:50:55.776 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: kLZ4Compression supported: 1 2024-04-02T06:50:55.776 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: kBZip2Compression supported: 0 2024-04-02T06:50:55.776 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-02T06:50:55.776 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-02T06:50:55.776 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi052/store.db/MANIFEST-000005 2024-04-02T06:50:55.776 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-02T06:50:55.776 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mon dump -f json 2024-04-02T06:50:55.779 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-02T06:50:55.779 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.merge_operator: 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_filter: None 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x556ee20a9ae0) 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cache_index_and_filter_blocks: 1 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-02T06:50:55.780 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: pin_top_level_index_and_filter: 1 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: index_type: 0 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: data_block_index_type: 0 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: index_shortening: 1 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: data_block_hash_table_util_ratio: 0.750000 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: checksum: 4 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: no_block_cache: 0 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: block_cache: 0x556ee20ab090 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: block_cache_name: BinnedLRUCache 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: block_cache_options: 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: capacity : 536870912 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: num_shard_bits : 4 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: strict_capacity_limit : 0 2024-04-02T06:50:55.781 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: high_pri_pool_ratio: 0.000 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: block_cache_compressed: (nil) 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: persistent_cache: (nil) 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: block_size: 4096 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: block_size_deviation: 10 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: block_restart_interval: 16 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: index_block_restart_interval: 1 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: metadata_block_size: 4096 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: partition_filters: 0 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: use_delta_encoding: 1 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: filter_policy: bloomfilter 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: whole_key_filtering: 1 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: verify_compression: 0 2024-04-02T06:50:55.782 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: read_amp_bytes_per_bit: 0 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: format_version: 5 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: enable_index_compression: 1 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: block_align: 0 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: max_auto_readahead_size: 262144 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: prepopulate_block_cache: 0 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: initial_auto_readahead_size: 8192 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: num_file_reads_for_auto_readahead: 2 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compression: NoCompression 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-02T06:50:55.783 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.num_levels: 7 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-02T06:50:55.784 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-02T06:50:55.785 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-02T06:50:55.786 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-02T06:50:55.787 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.table_properties_collectors: 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.inplace_update_support: 0 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.bloom_locality: 0 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.max_successive_merges: 0 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.ttl: 2592000 2024-04-02T06:50:55.788 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.enable_blob_files: false 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.min_blob_size: 0 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-02T06:50:55.789 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi052/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 8089b79c-3b92-4db0-a200-020fde7fc17b 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1712040655550731, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1712040655551144, "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": 1712040655, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "8089b79c-3b92-4db0-a200-020fde7fc17b", "db_session_id": "GEBKQBWO6WBVZHUJJCA9", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1712040655551222, "job": 1, "event": "recovery_finished"} 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.545+0000 7f96ae533c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.549+0000 7f96ae533c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi052/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.549+0000 7f96ae533c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x556ee21a0000 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.549+0000 7f96ae533c80 4 rocksdb: DB pointer 0x556ee218a000 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.549+0000 7f96ae533c80 0 mon.smithi052 does not exist in monmap, will attempt to join an existing cluster 2024-04-02T06:50:55.790 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.549+0000 7f96ae533c80 0 using public_addr v2:172.21.15.52:0/0 -> [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.549+0000 7f96ae533c80 0 starting mon.smithi052 rank -1 at public addrs [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] at bind addrs [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi052 fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.549+0000 7f969cc95700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.549+0000 7f969cc95700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: ** DB Stats ** 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: ** Compaction Stats [default] ** 2024-04-02T06:50:55.791 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: L0 1/0 1.58 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.0 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Sum 1/0 1.58 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.0 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.0 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: ** Compaction Stats [default] ** 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.0 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: AddFile(Total Files): cumulative 0, interval 0 2024-04-02T06:50:55.792 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: AddFile(Keys): cumulative 0, interval 0 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Cumulative compaction: 0.00 GB write, 0.44 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Interval compaction: 0.00 GB write, 0.44 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Block cache BinnedLRUCache@0x556ee20ab090#7 capacity: 512.00 MB usage: 0.86 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.5e-05 secs_since: 0 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: 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-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: ** File Read Latency Histogram By Level [default] ** 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.549+0000 7f96ae533c80 1 mon.smithi052@-1(???) e0 preinit fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.573+0000 7f969fc9b700 0 mon.smithi052@-1(synchronizing).mds e1 new map 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.573+0000 7f969fc9b700 0 mon.smithi052@-1(synchronizing).mds e1 print_map 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: e1 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-02T06:50:55.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: legacy client fscid: -1 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: No filesystems configured 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.573+0000 7f969fc9b700 1 mon.smithi052@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.573+0000 7f969fc9b700 1 mon.smithi052@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.573+0000 7f969fc9b700 1 mon.smithi052@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.573+0000 7f969fc9b700 1 mon.smithi052@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.577+0000 7f969fc9b700 1 mon.smithi052@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.577+0000 7f969fc9b700 1 mon.smithi052@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.577+0000 7f969fc9b700 1 mon.smithi052@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.577+0000 7f969fc9b700 0 mon.smithi052@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.577+0000 7f969fc9b700 0 mon.smithi052@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.577+0000 7f969fc9b700 0 mon.smithi052@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.577+0000 7f969fc9b700 0 mon.smithi052@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-04-02T06:50:55.794 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:06.935835+0000 mon.smithi037 (mon.0) 151 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:06.941899+0000 mon.smithi037 (mon.0) 152 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:06.964270+0000 mon.smithi037 (mon.0) 153 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:06.969521+0000 mon.smithi037 (mon.0) 154 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:06.974634+0000 mon.smithi037 (mon.0) 155 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:06.980276+0000 mon.smithi037 (mon.0) 156 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:06.985519+0000 mon.smithi037 (mon.0) 157 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:06.990757+0000 mon.smithi037 (mon.0) 158 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:07.240205+0000 mgr.smithi037.yymbdj (mgr.14164) 63 : cluster 0 pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:07.249686+0000 mgr.smithi037.yymbdj (mgr.14164) 64 : cephadm 1 Deploying daemon prometheus.smithi037 on smithi037 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:07.334172+0000 mon.smithi037 (mon.0) 159 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:08.138756+0000 mon.smithi037 (mon.0) 160 : audit 0 from='client.? 172.21.15.52:0/58367607' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:09.240482+0000 mgr.smithi037.yymbdj (mgr.14164) 65 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:11.240753+0000 mgr.smithi037.yymbdj (mgr.14164) 66 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:13.241103+0000 mgr.smithi037.yymbdj (mgr.14164) 67 : cluster 0 pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:14.167360+0000 mon.smithi037 (mon.0) 161 : audit 0 from='client.? 172.21.15.52:0/2938922757' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:15.241464+0000 mgr.smithi037.yymbdj (mgr.14164) 68 : cluster 0 pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:17.241807+0000 mgr.smithi037.yymbdj (mgr.14164) 69 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:19.242180+0000 mgr.smithi037.yymbdj (mgr.14164) 70 : cluster 0 pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:20.209553+0000 mon.smithi037 (mon.0) 162 : audit 0 from='client.? 172.21.15.52:0/3688948332' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:20.876194+0000 mon.smithi037 (mon.0) 163 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:20.882119+0000 mon.smithi037 (mon.0) 164 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:20.907357+0000 mon.smithi037 (mon.0) 165 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:20.909316+0000 mon.smithi037 (mon.0) 166 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:21.242592+0000 mgr.smithi037.yymbdj (mgr.14164) 71 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:21.908240+0000 mon.smithi037 (mon.0) 167 : audit 1 from='mgr.14164 172.21.15.37:0/321097634' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:21.914526+0000 mon.smithi037 (mon.0) 168 : cluster 0 mgrmap e14: smithi037.yymbdj(active, since 114s) 2024-04-02T06:50:55.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:26.524440+0000 mon.smithi037 (mon.0) 169 : audit 0 from='client.? 172.21.15.52:0/2947043752' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:30.388009+0000 mon.smithi037 (mon.0) 170 : cluster 1 Active manager daemon smithi037.yymbdj restarted 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:30.388642+0000 mon.smithi037 (mon.0) 171 : cluster 1 Activating manager daemon smithi037.yymbdj 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:30.392383+0000 mon.smithi037 (mon.0) 172 : cluster 0 osdmap e5: 0 total, 0 up, 0 in 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:30.392521+0000 mon.smithi037 (mon.0) 173 : cluster 0 mgrmap e15: smithi037.yymbdj(active, starting, since 0.00409706s) 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:30.395253+0000 mon.smithi037 (mon.0) 174 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:30.397515+0000 mon.smithi037 (mon.0) 175 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr metadata", "who": "smithi037.yymbdj", "id": "smithi037.yymbdj"}]: dispatch 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:30.399044+0000 mon.smithi037 (mon.0) 176 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:30.399301+0000 mon.smithi037 (mon.0) 177 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:30.399454+0000 mon.smithi037 (mon.0) 178 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:30.411497+0000 mon.smithi037 (mon.0) 179 : cluster 1 Manager daemon smithi037.yymbdj is now available 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:30.438791+0000 mon.smithi037 (mon.0) 180 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:30.458319+0000 mon.smithi037 (mon.0) 181 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.797 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:30.462059+0000 mon.smithi037 (mon.0) 182 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:30.470400+0000 mon.smithi037 (mon.0) 183 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.yymbdj/mirror_snapshot_schedule"}]: dispatch 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:30.473638+0000 mon.smithi037 (mon.0) 184 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.yymbdj/trash_purge_schedule"}]: dispatch 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:31.325059+0000 mon.smithi037 (mon.0) 185 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:31.402253+0000 mon.smithi037 (mon.0) 186 : cluster 0 mgrmap e16: smithi037.yymbdj(active, since 1.01381s) 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:32.464964+0000 mon.smithi037 (mon.0) 187 : cluster 0 mgrmap e17: smithi037.yymbdj(active, since 2s) 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:32.498177+0000 mgr.smithi037.yymbdj (mgr.14215) 1 : cephadm 1 [02/Apr/2024:06:50:32] ENGINE Bus STARTING 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:32.562692+0000 mon.smithi037 (mon.0) 188 : audit 0 from='client.? 172.21.15.52:0/2104625047' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:32.620260+0000 mgr.smithi037.yymbdj (mgr.14215) 2 : cephadm 1 [02/Apr/2024:06:50:32] ENGINE Serving on https://172.21.15.37:7150 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:32.721665+0000 mgr.smithi037.yymbdj (mgr.14215) 3 : cephadm 1 [02/Apr/2024:06:50:32] ENGINE Serving on http://172.21.15.37:8765 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:32.721820+0000 mgr.smithi037.yymbdj (mgr.14215) 4 : cephadm 1 [02/Apr/2024:06:50:32] ENGINE Bus STARTED 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:33.553140+0000 mon.smithi037 (mon.0) 189 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:34.752273+0000 mon.smithi037 (mon.0) 190 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.798 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:36.727702+0000 mon.smithi037 (mon.0) 191 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:36.731524+0000 mon.smithi037 (mon.0) 192 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:37.771129+0000 mon.smithi037 (mon.0) 193 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:37.778332+0000 mon.smithi037 (mon.0) 194 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:37.779518+0000 mon.smithi037 (mon.0) 195 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd/host:smithi037", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:39.179982+0000 mon.smithi037 (mon.0) 196 : audit 0 from='client.? 172.21.15.52:0/2220925020' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:40.348285+0000 mon.smithi037 (mon.0) 197 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:40.353929+0000 mon.smithi037 (mon.0) 198 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:40.361577+0000 mon.smithi037 (mon.0) 199 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:40.367290+0000 mon.smithi037 (mon.0) 200 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:40.368854+0000 mon.smithi037 (mon.0) 201 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd/host:smithi052", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:40.370927+0000 mon.smithi037 (mon.0) 202 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:40.372727+0000 mon.smithi037 (mon.0) 203 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:40.375414+0000 mgr.smithi037.yymbdj (mgr.14215) 5 : cephadm 1 Updating smithi037:/etc/ceph/ceph.conf 2024-04-02T06:50:55.799 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:40.375934+0000 mgr.smithi037.yymbdj (mgr.14215) 6 : cephadm 1 Updating smithi052:/etc/ceph/ceph.conf 2024-04-02T06:50:55.800 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:40.641775+0000 mgr.smithi037.yymbdj (mgr.14215) 7 : cephadm 1 Updating smithi037:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-04-02T06:50:55.800 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:40.643488+0000 mgr.smithi037.yymbdj (mgr.14215) 8 : cephadm 1 Updating smithi052:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-04-02T06:50:55.800 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:40.806412+0000 mgr.smithi037.yymbdj (mgr.14215) 9 : cephadm 1 Updating smithi037:/etc/ceph/ceph.client.admin.keyring 2024-04-02T06:50:55.800 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:40.808637+0000 mgr.smithi037.yymbdj (mgr.14215) 10 : cephadm 1 Updating smithi052:/etc/ceph/ceph.client.admin.keyring 2024-04-02T06:50:55.800 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:40.970885+0000 mgr.smithi037.yymbdj (mgr.14215) 11 : cephadm 1 Updating smithi037:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-04-02T06:50:55.800 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:40.974153+0000 mgr.smithi037.yymbdj (mgr.14215) 12 : cephadm 1 Updating smithi052:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.client.admin.keyring 2024-04-02T06:50:55.800 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.142808+0000 mon.smithi037 (mon.0) 204 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.800 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.145957+0000 mon.smithi037 (mon.0) 205 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.800 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.149642+0000 mon.smithi037 (mon.0) 206 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.800 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.152300+0000 mon.smithi037 (mon.0) 207 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.156767+0000 mon.smithi037 (mon.0) 208 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.160066+0000 mon.smithi037 (mon.0) 209 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi052", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.166999+0000 mon.smithi037 (mon.0) 210 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi052", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.169740+0000 mon.smithi037 (mon.0) 211 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:41.171414+0000 mgr.smithi037.yymbdj (mgr.14215) 13 : cephadm 1 Deploying daemon ceph-exporter.smithi052 on smithi052 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:41.640476+0000 mgr.smithi037.yymbdj (mgr.14215) 14 : cephadm 1 Removing key for client.ceph-exporter.smithi052 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.641095+0000 mon.smithi037 (mon.0) 212 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi052"}]: dispatch 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.642748+0000 mon.smithi037 (mon.0) 213 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi052"}]': finished 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:41.687576+0000 mgr.smithi037.yymbdj (mgr.14215) 15 : cephadm 4 Failed while placing ceph-exporter.smithi052 on smithi052: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: /usr/bin/docker: stdout 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052 2024-04-02T06:50:55.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: /usr/bin/docker: stdout 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: Deploy daemon ceph-exporter.smithi052 ... 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: ERROR: Desired sock dir for ceph-exporter is not directory: /var/run/ceph/ 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.702027+0000 mon.smithi037 (mon.0) 214 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.703963+0000 mon.smithi037 (mon.0) 215 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:41.708969+0000 mon.smithi037 (mon.0) 216 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:41.711033+0000 mgr.smithi037.yymbdj (mgr.14215) 16 : cephadm 1 Deploying daemon crash.smithi052 on smithi052 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:44.854152+0000 mon.smithi037 (mon.0) 217 : audit 0 from='client.? 172.21.15.52:0/937904492' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:44.946224+0000 mon.smithi037 (mon.0) 218 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:44.952230+0000 mon.smithi037 (mon.0) 219 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:44.987913+0000 mon.smithi037 (mon.0) 220 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:44.993633+0000 mon.smithi037 (mon.0) 221 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:45.462960+0000 mon.smithi037 (mon.0) 222 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:45.463543+0000 mon.smithi037 (mon.0) 223 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:44.997174+0000 mgr.smithi037.yymbdj (mgr.14215) 17 : cephadm 1 Deploying daemon node-exporter.smithi052 on smithi052 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:46.371423+0000 mon.smithi037 (mon.0) 224 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:46.377621+0000 mon.smithi037 (mon.0) 225 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:46.420414+0000 mon.smithi037 (mon.0) 226 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:46.426113+0000 mon.smithi037 (mon.0) 227 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:46.431162+0000 mon.smithi037 (mon.0) 228 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi052.hwhbeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:46.432941+0000 mon.smithi037 (mon.0) 229 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi052.hwhbeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:46.437335+0000 mon.smithi037 (mon.0) 230 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:46.439369+0000 mon.smithi037 (mon.0) 231 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:46.441420+0000 mgr.smithi037.yymbdj (mgr.14215) 18 : cephadm 1 Deploying daemon mgr.smithi052.hwhbeq on smithi052 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:49.561375+0000 mon.smithi037 (mon.0) 232 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:49.567723+0000 mon.smithi037 (mon.0) 233 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:49.620630+0000 mon.smithi037 (mon.0) 234 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:49.626332+0000 mon.smithi037 (mon.0) 235 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:49.629877+0000 mon.smithi037 (mon.0) 236 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:49.631753+0000 mon.smithi037 (mon.0) 237 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cephadm 2024-04-02T06:50:49.633911+0000 mgr.smithi037.yymbdj (mgr.14215) 19 : cephadm 1 Deploying daemon mon.smithi052 on smithi052 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:50.470127+0000 mon.smithi037 (mon.0) 238 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:51.740603+0000 mon.smithi037 (mon.0) 239 : cluster 3 Health check failed: Failed to place 1 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:51.689666+0000 mgr.smithi037.yymbdj (mgr.14215) 20 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: cluster 2024-04-02T06:50:53.690247+0000 mgr.smithi037.yymbdj (mgr.14215) 21 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: audit 2024-04-02T06:50:54.214208+0000 mon.smithi037 (mon.0) 240 : audit 0 from='client.? 172.21.15.52:0/1671746365' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:50:55.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:50:55 smithi052 bash[25156]: debug 2024-04-02T06:50:55.577+0000 7f969fc9b700 1 mon.smithi052@-1(synchronizing).paxosservice(auth 1..9) refresh upgraded, format 0 -> 3 2024-04-02T06:50:59.899 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi052/config 2024-04-02T06:51:01.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:50:55.585919+0000 mon.smithi037 (mon.0) 248 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:50:55.591050+0000 mon.smithi037 (mon.0) 249 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:50:55.591395+0000 mon.smithi037 (mon.0) 250 : cluster 1 mon.smithi037 calling monitor election 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:50:55.611710+0000 mon.smithi037 (mon.0) 251 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:50:55.690761+0000 mgr.smithi037.yymbdj (mgr.14215) 22 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:50:56.585651+0000 mon.smithi037 (mon.0) 252 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:50:57.586081+0000 mon.smithi037 (mon.0) 253 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:50:57.588857+0000 mon.smithi052 (mon.1) 1 : cluster 1 mon.smithi052 calling monitor election 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:50:57.691240+0000 mgr.smithi037.yymbdj (mgr.14215) 23 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:50:58.585955+0000 mon.smithi037 (mon.0) 254 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:50:59.586093+0000 mon.smithi037 (mon.0) 255 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:50:59.696426+0000 mgr.smithi037.yymbdj (mgr.14215) 24 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:50:59.963606+0000 mon.smithi037 (mon.0) 256 : audit 0 from='mgr.? 172.21.15.52:0/2753385385' entity='mgr.smithi052.hwhbeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi052.hwhbeq/crt"}]: dispatch 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:51:00.586450+0000 mon.smithi037 (mon.0) 257 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.632062+0000 mon.smithi037 (mon.0) 258 : cluster 1 mon.smithi037 is new leader, mons smithi037,smithi052 in quorum (ranks 0,1) 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.638104+0000 mon.smithi037 (mon.0) 259 : cluster 0 monmap epoch 2 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.638141+0000 mon.smithi037 (mon.0) 260 : cluster 0 fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.638164+0000 mon.smithi037 (mon.0) 261 : cluster 0 last_changed 2024-04-02T06:50:55.585237+0000 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.638185+0000 mon.smithi037 (mon.0) 262 : cluster 0 created 2024-04-02T06:47:07.465194+0000 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.638208+0000 mon.smithi037 (mon.0) 263 : cluster 0 min_mon_release 19 (squid) 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.638234+0000 mon.smithi037 (mon.0) 264 : cluster 0 election_strategy: 1 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.638252+0000 mon.smithi037 (mon.0) 265 : cluster 0 0: [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] mon.smithi037 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.638282+0000 mon.smithi037 (mon.0) 266 : cluster 0 1: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.659374+0000 mon.smithi037 (mon.0) 267 : cluster 0 fsmap 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.659429+0000 mon.smithi037 (mon.0) 268 : cluster 0 osdmap e5: 0 total, 0 up, 0 in 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.659722+0000 mon.smithi037 (mon.0) 269 : cluster 0 mgrmap e17: smithi037.yymbdj(active, since 30s) 2024-04-02T06:51:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.660027+0000 mon.smithi037 (mon.0) 270 : cluster 3 Health detail: HEALTH_WARN Failed to place 1 daemon(s) 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.660072+0000 mon.smithi037 (mon.0) 271 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.660099+0000 mon.smithi037 (mon.0) 272 : cluster 3 Failed while placing ceph-exporter.smithi052 on smithi052: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.660133+0000 mon.smithi037 (mon.0) 273 : cluster 3 /usr/bin/docker: stdout 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.660159+0000 mon.smithi037 (mon.0) 274 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.660186+0000 mon.smithi037 (mon.0) 275 : cluster 3 Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.660208+0000 mon.smithi037 (mon.0) 276 : cluster 3 /usr/bin/docker: stdout 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.660233+0000 mon.smithi037 (mon.0) 277 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.660257+0000 mon.smithi037 (mon.0) 278 : cluster 3 Deploy daemon ceph-exporter.smithi052 ... 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.660286+0000 mon.smithi037 (mon.0) 279 : cluster 3 ERROR: Desired sock dir for ceph-exporter is not directory: /var/run/ceph/ 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.662330+0000 mon.smithi037 (mon.0) 280 : cluster 0 Standby manager daemon smithi052.hwhbeq started 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:51:00.669327+0000 mon.smithi037 (mon.0) 281 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:51:00.671724+0000 mon.smithi037 (mon.0) 282 : audit 0 from='mgr.? 172.21.15.52:0/2753385385' entity='mgr.smithi052.hwhbeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:51:00.675168+0000 mon.smithi037 (mon.0) 283 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:51:00.677590+0000 mon.smithi037 (mon.0) 284 : audit 0 from='mgr.? 172.21.15.52:0/2753385385' entity='mgr.smithi052.hwhbeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi052.hwhbeq/key"}]: dispatch 2024-04-02T06:51:01.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:51:00.678028+0000 mon.smithi037 (mon.0) 285 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:51:01.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:51:00.678663+0000 mon.smithi037 (mon.0) 286 : audit 0 from='mgr.? 172.21.15.52:0/2753385385' entity='mgr.smithi052.hwhbeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-02T06:51:01.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:51:00.682139+0000 mon.smithi037 (mon.0) 287 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:51:00.685652+0000 mon.smithi037 (mon.0) 288 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:01.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:00 smithi037 bash[18626]: audit 2024-04-02T06:51:00.691516+0000 mon.smithi037 (mon.0) 289 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:50:55.585919+0000 mon.smithi037 (mon.0) 248 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:50:55.591050+0000 mon.smithi037 (mon.0) 249 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:50:55.591395+0000 mon.smithi037 (mon.0) 250 : cluster 1 mon.smithi037 calling monitor election 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:50:55.611710+0000 mon.smithi037 (mon.0) 251 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:50:55.690761+0000 mgr.smithi037.yymbdj (mgr.14215) 22 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:50:56.585651+0000 mon.smithi037 (mon.0) 252 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:50:57.586081+0000 mon.smithi037 (mon.0) 253 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:50:57.588857+0000 mon.smithi052 (mon.1) 1 : cluster 1 mon.smithi052 calling monitor election 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:50:57.691240+0000 mgr.smithi037.yymbdj (mgr.14215) 23 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:50:58.585955+0000 mon.smithi037 (mon.0) 254 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.098 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:50:59.586093+0000 mon.smithi037 (mon.0) 255 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:50:59.696426+0000 mgr.smithi037.yymbdj (mgr.14215) 24 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:50:59.963606+0000 mon.smithi037 (mon.0) 256 : audit 0 from='mgr.? 172.21.15.52:0/2753385385' entity='mgr.smithi052.hwhbeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi052.hwhbeq/crt"}]: dispatch 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:51:00.586450+0000 mon.smithi037 (mon.0) 257 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.632062+0000 mon.smithi037 (mon.0) 258 : cluster 1 mon.smithi037 is new leader, mons smithi037,smithi052 in quorum (ranks 0,1) 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.638104+0000 mon.smithi037 (mon.0) 259 : cluster 0 monmap epoch 2 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.638141+0000 mon.smithi037 (mon.0) 260 : cluster 0 fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.638164+0000 mon.smithi037 (mon.0) 261 : cluster 0 last_changed 2024-04-02T06:50:55.585237+0000 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.638185+0000 mon.smithi037 (mon.0) 262 : cluster 0 created 2024-04-02T06:47:07.465194+0000 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.638208+0000 mon.smithi037 (mon.0) 263 : cluster 0 min_mon_release 19 (squid) 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.638234+0000 mon.smithi037 (mon.0) 264 : cluster 0 election_strategy: 1 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.638252+0000 mon.smithi037 (mon.0) 265 : cluster 0 0: [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] mon.smithi037 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.638282+0000 mon.smithi037 (mon.0) 266 : cluster 0 1: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.659374+0000 mon.smithi037 (mon.0) 267 : cluster 0 fsmap 2024-04-02T06:51:01.099 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.659429+0000 mon.smithi037 (mon.0) 268 : cluster 0 osdmap e5: 0 total, 0 up, 0 in 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.659722+0000 mon.smithi037 (mon.0) 269 : cluster 0 mgrmap e17: smithi037.yymbdj(active, since 30s) 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.660027+0000 mon.smithi037 (mon.0) 270 : cluster 3 Health detail: HEALTH_WARN Failed to place 1 daemon(s) 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.660072+0000 mon.smithi037 (mon.0) 271 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.660099+0000 mon.smithi037 (mon.0) 272 : cluster 3 Failed while placing ceph-exporter.smithi052 on smithi052: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.660133+0000 mon.smithi037 (mon.0) 273 : cluster 3 /usr/bin/docker: stdout 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.660159+0000 mon.smithi037 (mon.0) 274 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.660186+0000 mon.smithi037 (mon.0) 275 : cluster 3 Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.660208+0000 mon.smithi037 (mon.0) 276 : cluster 3 /usr/bin/docker: stdout 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.660233+0000 mon.smithi037 (mon.0) 277 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.660257+0000 mon.smithi037 (mon.0) 278 : cluster 3 Deploy daemon ceph-exporter.smithi052 ... 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.660286+0000 mon.smithi037 (mon.0) 279 : cluster 3 ERROR: Desired sock dir for ceph-exporter is not directory: /var/run/ceph/ 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.662330+0000 mon.smithi037 (mon.0) 280 : cluster 0 Standby manager daemon smithi052.hwhbeq started 2024-04-02T06:51:01.100 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:51:00.669327+0000 mon.smithi037 (mon.0) 281 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.101 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:51:00.671724+0000 mon.smithi037 (mon.0) 282 : audit 0 from='mgr.? 172.21.15.52:0/2753385385' entity='mgr.smithi052.hwhbeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-02T06:51:01.101 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:51:00.675168+0000 mon.smithi037 (mon.0) 283 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.101 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:51:00.677590+0000 mon.smithi037 (mon.0) 284 : audit 0 from='mgr.? 172.21.15.52:0/2753385385' entity='mgr.smithi052.hwhbeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi052.hwhbeq/key"}]: dispatch 2024-04-02T06:51:01.101 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:51:00.678028+0000 mon.smithi037 (mon.0) 285 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:51:01.101 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:51:00.678663+0000 mon.smithi037 (mon.0) 286 : audit 0 from='mgr.? 172.21.15.52:0/2753385385' entity='mgr.smithi052.hwhbeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-02T06:51:01.101 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:51:00.682139+0000 mon.smithi037 (mon.0) 287 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.101 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:51:00.685652+0000 mon.smithi037 (mon.0) 288 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:01.101 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:00 smithi052 bash[25156]: audit 2024-04-02T06:51:00.691516+0000 mon.smithi037 (mon.0) 289 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:51:01.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: cephadm 2024-04-02T06:51:00.705508+0000 mgr.smithi037.yymbdj (mgr.14215) 25 : cephadm 1 Updating smithi037:/etc/ceph/ceph.conf 2024-04-02T06:51:01.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: cephadm 2024-04-02T06:51:00.706135+0000 mgr.smithi037.yymbdj (mgr.14215) 26 : cephadm 1 Updating smithi052:/etc/ceph/ceph.conf 2024-04-02T06:51:01.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: cluster 2024-04-02T06:51:00.738769+0000 mon.smithi037 (mon.0) 290 : cluster 0 mgrmap e18: smithi037.yymbdj(active, since 30s), standbys: smithi052.hwhbeq 2024-04-02T06:51:01.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: audit 2024-04-02T06:51:00.739038+0000 mon.smithi037 (mon.0) 291 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr metadata", "who": "smithi052.hwhbeq", "id": "smithi052.hwhbeq"}]: dispatch 2024-04-02T06:51:01.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: cephadm 2024-04-02T06:51:00.922075+0000 mgr.smithi037.yymbdj (mgr.14215) 27 : cephadm 1 Updating smithi037:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-04-02T06:51:01.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: cephadm 2024-04-02T06:51:00.923772+0000 mgr.smithi037.yymbdj (mgr.14215) 28 : cephadm 1 Updating smithi052:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-04-02T06:51:01.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: audit 2024-04-02T06:51:01.092936+0000 mon.smithi037 (mon.0) 292 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: audit 2024-04-02T06:51:01.096520+0000 mon.smithi037 (mon.0) 293 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: audit 2024-04-02T06:51:01.101311+0000 mon.smithi037 (mon.0) 294 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: audit 2024-04-02T06:51:01.107522+0000 mon.smithi037 (mon.0) 295 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: audit 2024-04-02T06:51:01.115508+0000 mon.smithi037 (mon.0) 296 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:01.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: audit 2024-04-02T06:51:01.118320+0000 mon.smithi037 (mon.0) 297 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi052", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-02T06:51:01.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: audit 2024-04-02T06:51:01.122512+0000 mon.smithi037 (mon.0) 298 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi052", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-02T06:51:01.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: audit 2024-04-02T06:51:01.127007+0000 mon.smithi037 (mon.0) 299 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:01.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:01 smithi052 bash[25156]: audit 2024-04-02T06:51:01.586267+0000 mon.smithi037 (mon.0) 300 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:02.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: cephadm 2024-04-02T06:51:00.705508+0000 mgr.smithi037.yymbdj (mgr.14215) 25 : cephadm 1 Updating smithi037:/etc/ceph/ceph.conf 2024-04-02T06:51:02.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: cephadm 2024-04-02T06:51:00.706135+0000 mgr.smithi037.yymbdj (mgr.14215) 26 : cephadm 1 Updating smithi052:/etc/ceph/ceph.conf 2024-04-02T06:51:02.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: cluster 2024-04-02T06:51:00.738769+0000 mon.smithi037 (mon.0) 290 : cluster 0 mgrmap e18: smithi037.yymbdj(active, since 30s), standbys: smithi052.hwhbeq 2024-04-02T06:51:02.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: audit 2024-04-02T06:51:00.739038+0000 mon.smithi037 (mon.0) 291 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr metadata", "who": "smithi052.hwhbeq", "id": "smithi052.hwhbeq"}]: dispatch 2024-04-02T06:51:02.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: cephadm 2024-04-02T06:51:00.922075+0000 mgr.smithi037.yymbdj (mgr.14215) 27 : cephadm 1 Updating smithi037:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-04-02T06:51:02.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: cephadm 2024-04-02T06:51:00.923772+0000 mgr.smithi037.yymbdj (mgr.14215) 28 : cephadm 1 Updating smithi052:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/config/ceph.conf 2024-04-02T06:51:02.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: audit 2024-04-02T06:51:01.092936+0000 mon.smithi037 (mon.0) 292 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:02.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: audit 2024-04-02T06:51:01.096520+0000 mon.smithi037 (mon.0) 293 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:02.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: audit 2024-04-02T06:51:01.101311+0000 mon.smithi037 (mon.0) 294 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:02.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: audit 2024-04-02T06:51:01.107522+0000 mon.smithi037 (mon.0) 295 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:02.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: audit 2024-04-02T06:51:01.115508+0000 mon.smithi037 (mon.0) 296 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:02.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: audit 2024-04-02T06:51:01.118320+0000 mon.smithi037 (mon.0) 297 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi052", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-02T06:51:02.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: audit 2024-04-02T06:51:01.122512+0000 mon.smithi037 (mon.0) 298 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi052", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-02T06:51:02.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: audit 2024-04-02T06:51:01.127007+0000 mon.smithi037 (mon.0) 299 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:02.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:01 smithi037 bash[18626]: audit 2024-04-02T06:51:01.586267+0000 mon.smithi037 (mon.0) 300 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:51:02.914 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-04-02T06:51:02.914 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":2,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","modified":"2024-04-02T06:50:55.585237Z","created":"2024-04-02T06:47:07.465194Z","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":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi052","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:3300","nonce":0},{"type":"v1","addr":"172.21.15.52:6789","nonce":0}]},"addr":"172.21.15.52:6789/0","public_addr":"172.21.15.52:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-02T06:51:02.917 INFO:teuthology.orchestra.run.smithi052.stderr:dumped monmap epoch 2 2024-04-02T06:51:03.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:02 smithi037 bash[18626]: cluster 2024-04-02T06:51:01.116321+0000 mgr.smithi037.yymbdj (mgr.14215) 29 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:03.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:02 smithi037 bash[18626]: cephadm 2024-04-02T06:51:01.128420+0000 mgr.smithi037.yymbdj (mgr.14215) 30 : cephadm 1 Deploying daemon ceph-exporter.smithi052 on smithi052 2024-04-02T06:51:03.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:02 smithi037 bash[18626]: cluster 2024-04-02T06:51:02.112303+0000 mon.smithi037 (mon.0) 301 : cluster 1 Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 1 daemon(s)) 2024-04-02T06:51:03.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:02 smithi037 bash[18626]: cluster 2024-04-02T06:51:02.112384+0000 mon.smithi037 (mon.0) 302 : cluster 1 Cluster is now healthy 2024-04-02T06:51:03.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:02 smithi052 bash[25156]: cluster 2024-04-02T06:51:01.116321+0000 mgr.smithi037.yymbdj (mgr.14215) 29 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:03.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:02 smithi052 bash[25156]: cephadm 2024-04-02T06:51:01.128420+0000 mgr.smithi037.yymbdj (mgr.14215) 30 : cephadm 1 Deploying daemon ceph-exporter.smithi052 on smithi052 2024-04-02T06:51:03.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:02 smithi052 bash[25156]: cluster 2024-04-02T06:51:02.112303+0000 mon.smithi037 (mon.0) 301 : cluster 1 Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 1 daemon(s)) 2024-04-02T06:51:03.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:02 smithi052 bash[25156]: cluster 2024-04-02T06:51:02.112384+0000 mon.smithi037 (mon.0) 302 : cluster 1 Cluster is now healthy 2024-04-02T06:51:03.651 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-04-02T06:51:03.651 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph config generate-minimal-conf 2024-04-02T06:51:03.906 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:03 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:51:03.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:03 smithi052 bash[25156]: audit 2024-04-02T06:51:02.915279+0000 mon.smithi037 (mon.0) 303 : audit 0 from='client.? 172.21.15.52:0/3559000916' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:51:03.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:03 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:51:04.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:03 smithi037 bash[18626]: audit 2024-04-02T06:51:02.915279+0000 mon.smithi037 (mon.0) 303 : audit 0 from='client.? 172.21.15.52:0/3559000916' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-02T06:51:05.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:04 smithi037 bash[18626]: cluster 2024-04-02T06:51:03.116732+0000 mgr.smithi037.yymbdj (mgr.14215) 31 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:05.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:04 smithi037 bash[18626]: audit 2024-04-02T06:51:04.042762+0000 mon.smithi037 (mon.0) 304 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:05.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:04 smithi037 bash[18626]: audit 2024-04-02T06:51:04.053577+0000 mon.smithi037 (mon.0) 305 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:05.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:04 smithi037 bash[18626]: audit 2024-04-02T06:51:04.107549+0000 mon.smithi037 (mon.0) 306 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:05.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:04 smithi037 bash[18626]: audit 2024-04-02T06:51:04.116199+0000 mon.smithi037 (mon.0) 307 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:05.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:04 smithi037 bash[18626]: audit 2024-04-02T06:51:04.192749+0000 mon.smithi037 (mon.0) 308 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:51:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:04 smithi052 bash[25156]: cluster 2024-04-02T06:51:03.116732+0000 mgr.smithi037.yymbdj (mgr.14215) 31 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:04 smithi052 bash[25156]: audit 2024-04-02T06:51:04.042762+0000 mon.smithi037 (mon.0) 304 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:04 smithi052 bash[25156]: audit 2024-04-02T06:51:04.053577+0000 mon.smithi037 (mon.0) 305 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:04 smithi052 bash[25156]: audit 2024-04-02T06:51:04.107549+0000 mon.smithi037 (mon.0) 306 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:04 smithi052 bash[25156]: audit 2024-04-02T06:51:04.116199+0000 mon.smithi037 (mon.0) 307 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:04 smithi052 bash[25156]: audit 2024-04-02T06:51:04.192749+0000 mon.smithi037 (mon.0) 308 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:51:06.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:06 smithi037 bash[18626]: cluster 2024-04-02T06:51:05.117186+0000 mgr.smithi037.yymbdj (mgr.14215) 32 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:06.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:06 smithi037 bash[18626]: audit 2024-04-02T06:51:05.487359+0000 mon.smithi037 (mon.0) 309 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:06.906 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:06 smithi052 bash[25156]: cluster 2024-04-02T06:51:05.117186+0000 mgr.smithi037.yymbdj (mgr.14215) 32 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:06.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:06 smithi052 bash[25156]: audit 2024-04-02T06:51:05.487359+0000 mon.smithi037 (mon.0) 309 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:08.418 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:51:08.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:08 smithi037 bash[18626]: cluster 2024-04-02T06:51:07.117633+0000 mgr.smithi037.yymbdj (mgr.14215) 33 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:08.906 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:08 smithi052 bash[25156]: cluster 2024-04-02T06:51:07.117633+0000 mgr.smithi037.yymbdj (mgr.14215) 33 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:10.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: cluster 2024-04-02T06:51:09.118093+0000 mgr.smithi037.yymbdj (mgr.14215) 34 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:10.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: audit 2024-04-02T06:51:09.640357+0000 mon.smithi037 (mon.0) 310 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:10.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: audit 2024-04-02T06:51:09.650272+0000 mon.smithi037 (mon.0) 311 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:10.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: audit 2024-04-02T06:51:09.652556+0000 mon.smithi037 (mon.0) 312 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:10.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: audit 2024-04-02T06:51:09.654729+0000 mon.smithi037 (mon.0) 313 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:51:10.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: audit 2024-04-02T06:51:09.664163+0000 mon.smithi037 (mon.0) 314 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:10.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: cephadm 2024-04-02T06:51:09.742437+0000 mgr.smithi037.yymbdj (mgr.14215) 35 : cephadm 1 Reconfiguring mon.smithi037 (unknown last config time)... 2024-04-02T06:51:10.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: audit 2024-04-02T06:51:09.743191+0000 mon.smithi037 (mon.0) 315 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-02T06:51:10.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: audit 2024-04-02T06:51:09.744666+0000 mon.smithi037 (mon.0) 316 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-02T06:51:10.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: audit 2024-04-02T06:51:09.746054+0000 mon.smithi037 (mon.0) 317 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:10.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:10 smithi052 bash[25156]: cephadm 2024-04-02T06:51:09.747866+0000 mgr.smithi037.yymbdj (mgr.14215) 36 : cephadm 1 Reconfiguring daemon mon.smithi037 on smithi037 2024-04-02T06:51:10.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: cluster 2024-04-02T06:51:09.118093+0000 mgr.smithi037.yymbdj (mgr.14215) 34 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:10.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: audit 2024-04-02T06:51:09.640357+0000 mon.smithi037 (mon.0) 310 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:10.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: audit 2024-04-02T06:51:09.650272+0000 mon.smithi037 (mon.0) 311 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:10.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: audit 2024-04-02T06:51:09.652556+0000 mon.smithi037 (mon.0) 312 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:10.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: audit 2024-04-02T06:51:09.654729+0000 mon.smithi037 (mon.0) 313 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:51:10.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: audit 2024-04-02T06:51:09.664163+0000 mon.smithi037 (mon.0) 314 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:10.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: cephadm 2024-04-02T06:51:09.742437+0000 mgr.smithi037.yymbdj (mgr.14215) 35 : cephadm 1 Reconfiguring mon.smithi037 (unknown last config time)... 2024-04-02T06:51:10.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: audit 2024-04-02T06:51:09.743191+0000 mon.smithi037 (mon.0) 315 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-02T06:51:10.922 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: audit 2024-04-02T06:51:09.744666+0000 mon.smithi037 (mon.0) 316 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-02T06:51:10.922 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: audit 2024-04-02T06:51:09.746054+0000 mon.smithi037 (mon.0) 317 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:10.922 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:10 smithi037 bash[18626]: cephadm 2024-04-02T06:51:09.747866+0000 mgr.smithi037.yymbdj (mgr.14215) 36 : cephadm 1 Reconfiguring daemon mon.smithi037 on smithi037 2024-04-02T06:51:11.339 INFO:teuthology.orchestra.run.smithi037.stdout:# minimal ceph.conf for aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:51:11.340 INFO:teuthology.orchestra.run.smithi037.stdout:[global] 2024-04-02T06:51:11.340 INFO:teuthology.orchestra.run.smithi037.stdout: fsid = aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:51:11.340 INFO:teuthology.orchestra.run.smithi037.stdout: mon_host = [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] 2024-04-02T06:51:11.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:11 smithi052 bash[25156]: audit 2024-04-02T06:51:11.341325+0000 mon.smithi037 (mon.0) 318 : audit 0 from='client.? 172.21.15.37:0/959190300' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:12.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:11 smithi037 bash[18626]: audit 2024-04-02T06:51:11.341325+0000 mon.smithi037 (mon.0) 318 : audit 0 from='client.? 172.21.15.37:0/959190300' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:12.071 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-04-02T06:51:12.072 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:51:12.072 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/etc/ceph/ceph.conf 2024-04-02T06:51:12.085 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:51:12.085 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-02T06:51:12.144 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:51:12.144 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/etc/ceph/ceph.conf 2024-04-02T06:51:12.158 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:51:12.159 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-02T06:51:12.214 INFO:tasks.cephadm:Deploying OSDs... 2024-04-02T06:51:12.214 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:51:12.214 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/scratch_devs of=/dev/stdout 2024-04-02T06:51:12.219 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-02T06:51:12.220 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/nvme1n1 2024-04-02T06:51:12.264 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/nvme1n1 2024-04-02T06:51:12.264 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-02T06:51:12.264 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 966 Links: 1 Device type: 103,2 2024-04-02T06:51:12.265 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-02T06:51:12.265 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-02 06:48:39.660572124 +0000 2024-04-02T06:51:12.265 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-02 06:45:58.706009796 +0000 2024-04-02T06:51:12.265 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-02 06:45:58.706009796 +0000 2024-04-02T06:51:12.265 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: - 2024-04-02T06:51:12.265 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-04-02T06:51:12.317 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-02T06:51:12.317 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-02T06:51:12.317 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000338605 s, 1.5 MB/s 2024-04-02T06:51:12.318 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-04-02T06:51:12.365 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/nvme2n1 2024-04-02T06:51:12.416 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/nvme2n1 2024-04-02T06:51:12.416 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-02T06:51:12.416 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 975 Links: 1 Device type: 103,4 2024-04-02T06:51:12.416 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-02T06:51:12.416 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-02 06:48:39.676571982 +0000 2024-04-02T06:51:12.416 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-02 06:45:58.802008938 +0000 2024-04-02T06:51:12.416 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-02 06:45:58.802008938 +0000 2024-04-02T06:51:12.417 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: - 2024-04-02T06:51:12.417 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-04-02T06:51:12.474 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-02T06:51:12.474 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-02T06:51:12.474 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.0004015 s, 1.3 MB/s 2024-04-02T06:51:12.475 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-04-02T06:51:12.522 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/nvme3n1 2024-04-02T06:51:12.568 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/nvme3n1 2024-04-02T06:51:12.568 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-02T06:51:12.568 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 984 Links: 1 Device type: 103,6 2024-04-02T06:51:12.568 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-02T06:51:12.568 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-02 06:48:39.696571803 +0000 2024-04-02T06:51:12.568 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-02 06:45:58.894008116 +0000 2024-04-02T06:51:12.568 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-02 06:45:58.894008116 +0000 2024-04-02T06:51:12.568 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: - 2024-04-02T06:51:12.569 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-04-02T06:51:12.628 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-02T06:51:12.628 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-02T06:51:12.628 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000464274 s, 1.1 MB/s 2024-04-02T06:51:12.629 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-04-02T06:51:12.678 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/nvme4n1 2024-04-02T06:51:12.729 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/nvme4n1 2024-04-02T06:51:12.729 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-02T06:51:12.729 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 993 Links: 1 Device type: 103,8 2024-04-02T06:51:12.729 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-02T06:51:12.729 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-02 06:48:39.712571660 +0000 2024-04-02T06:51:12.729 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-02 06:45:58.994007223 +0000 2024-04-02T06:51:12.729 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-02 06:45:58.994007223 +0000 2024-04-02T06:51:12.729 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: - 2024-04-02T06:51:12.730 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-04-02T06:51:12.785 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-02T06:51:12.785 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-02T06:51:12.785 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.00033144 s, 1.5 MB/s 2024-04-02T06:51:12.786 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-04-02T06:51:12.839 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:51:12.839 DEBUG:teuthology.orchestra.run.smithi052:> dd if=/scratch_devs of=/dev/stdout 2024-04-02T06:51:12.846 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-02T06:51:12.846 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/nvme1n1 2024-04-02T06:51:12.894 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/nvme1n1 2024-04-02T06:51:12.894 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-02T06:51:12.894 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 963 Links: 1 Device type: 103,2 2024-04-02T06:51:12.894 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-02T06:51:12.894 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-04-02 06:50:39.418067646 +0000 2024-04-02T06:51:12.894 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-04-02 06:45:59.956527749 +0000 2024-04-02T06:51:12.894 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-04-02 06:45:59.956527749 +0000 2024-04-02T06:51:12.894 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-04-02T06:51:12.895 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-04-02T06:51:12.948 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-04-02T06:51:12.949 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-04-02T06:51:12.949 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000402242 s, 1.3 MB/s 2024-04-02T06:51:12.950 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-04-02T06:51:13.003 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/nvme2n1 2024-04-02T06:51:13.053 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/nvme2n1 2024-04-02T06:51:13.053 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-02T06:51:13.054 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 971 Links: 1 Device type: 103,4 2024-04-02T06:51:13.054 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-02T06:51:13.054 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-04-02 06:50:39.430067525 +0000 2024-04-02T06:51:13.054 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-04-02 06:46:00.060526820 +0000 2024-04-02T06:51:13.054 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-04-02 06:46:00.060526820 +0000 2024-04-02T06:51:13.054 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-04-02T06:51:13.054 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-04-02T06:51:13.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:12 smithi037 bash[18626]: cluster 2024-04-02T06:51:11.118395+0000 mgr.smithi037.yymbdj (mgr.14215) 37 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:13.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:12 smithi037 bash[18626]: audit 2024-04-02T06:51:11.777664+0000 mon.smithi037 (mon.0) 319 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:13.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:12 smithi037 bash[18626]: audit 2024-04-02T06:51:11.788528+0000 mon.smithi037 (mon.0) 320 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:13.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:12 smithi037 bash[18626]: cephadm 2024-04-02T06:51:11.816430+0000 mgr.smithi037.yymbdj (mgr.14215) 38 : cephadm 1 Reconfiguring mgr.smithi037.yymbdj (unknown last config time)... 2024-04-02T06:51:13.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:12 smithi037 bash[18626]: audit 2024-04-02T06:51:11.817089+0000 mon.smithi037 (mon.0) 321 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi037.yymbdj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-02T06:51:13.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:12 smithi037 bash[18626]: audit 2024-04-02T06:51:11.819244+0000 mon.smithi037 (mon.0) 322 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-02T06:51:13.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:12 smithi037 bash[18626]: audit 2024-04-02T06:51:11.820947+0000 mon.smithi037 (mon.0) 323 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:13.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:12 smithi037 bash[18626]: cephadm 2024-04-02T06:51:11.822958+0000 mgr.smithi037.yymbdj (mgr.14215) 39 : cephadm 1 Reconfiguring daemon mgr.smithi037.yymbdj on smithi037 2024-04-02T06:51:13.106 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:12 smithi052 bash[25156]: cluster 2024-04-02T06:51:11.118395+0000 mgr.smithi037.yymbdj (mgr.14215) 37 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:13.106 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:12 smithi052 bash[25156]: audit 2024-04-02T06:51:11.777664+0000 mon.smithi037 (mon.0) 319 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:13.106 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:12 smithi052 bash[25156]: audit 2024-04-02T06:51:11.788528+0000 mon.smithi037 (mon.0) 320 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:13.106 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:12 smithi052 bash[25156]: cephadm 2024-04-02T06:51:11.816430+0000 mgr.smithi037.yymbdj (mgr.14215) 38 : cephadm 1 Reconfiguring mgr.smithi037.yymbdj (unknown last config time)... 2024-04-02T06:51:13.106 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:12 smithi052 bash[25156]: audit 2024-04-02T06:51:11.817089+0000 mon.smithi037 (mon.0) 321 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi037.yymbdj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-02T06:51:13.106 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:12 smithi052 bash[25156]: audit 2024-04-02T06:51:11.819244+0000 mon.smithi037 (mon.0) 322 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-02T06:51:13.106 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:12 smithi052 bash[25156]: audit 2024-04-02T06:51:11.820947+0000 mon.smithi037 (mon.0) 323 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:13.106 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:12 smithi052 bash[25156]: cephadm 2024-04-02T06:51:11.822958+0000 mgr.smithi037.yymbdj (mgr.14215) 39 : cephadm 1 Reconfiguring daemon mgr.smithi037.yymbdj on smithi037 2024-04-02T06:51:13.108 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-04-02T06:51:13.108 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-04-02T06:51:13.108 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000372746 s, 1.4 MB/s 2024-04-02T06:51:13.109 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-04-02T06:51:13.159 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/nvme3n1 2024-04-02T06:51:13.205 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/nvme3n1 2024-04-02T06:51:13.206 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-02T06:51:13.206 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 981 Links: 1 Device type: 103,6 2024-04-02T06:51:13.206 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-02T06:51:13.206 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-04-02 06:50:39.438067445 +0000 2024-04-02T06:51:13.206 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-04-02 06:46:00.160525929 +0000 2024-04-02T06:51:13.206 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-04-02 06:46:00.160525929 +0000 2024-04-02T06:51:13.206 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-04-02T06:51:13.206 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-04-02T06:51:13.260 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-04-02T06:51:13.260 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-04-02T06:51:13.260 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000329131 s, 1.6 MB/s 2024-04-02T06:51:13.261 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-04-02T06:51:13.312 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/nvme4n1 2024-04-02T06:51:13.357 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/nvme4n1 2024-04-02T06:51:13.358 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-02T06:51:13.358 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 990 Links: 1 Device type: 103,8 2024-04-02T06:51:13.358 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-02T06:51:13.358 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-04-02 06:50:39.450067325 +0000 2024-04-02T06:51:13.358 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-04-02 06:46:00.264525000 +0000 2024-04-02T06:51:13.358 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-04-02 06:46:00.264525000 +0000 2024-04-02T06:51:13.358 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-04-02T06:51:13.358 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-04-02T06:51:13.412 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-04-02T06:51:13.412 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-04-02T06:51:13.412 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.00036758 s, 1.4 MB/s 2024-04-02T06:51:13.413 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-04-02T06:51:13.463 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph orch apply osd --all-available-devices 2024-04-02T06:51:14.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:14 smithi052 bash[25156]: cluster 2024-04-02T06:51:13.118858+0000 mgr.smithi037.yymbdj (mgr.14215) 40 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:14.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:14 smithi052 bash[25156]: audit 2024-04-02T06:51:13.655770+0000 mon.smithi037 (mon.0) 324 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:14.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:14 smithi052 bash[25156]: audit 2024-04-02T06:51:13.662326+0000 mon.smithi037 (mon.0) 325 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:14.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:14 smithi052 bash[25156]: cephadm 2024-04-02T06:51:13.691601+0000 mgr.smithi037.yymbdj (mgr.14215) 41 : cephadm 1 Reconfiguring ceph-exporter.smithi037 (monmap changed)... 2024-04-02T06:51:14.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:14 smithi052 bash[25156]: audit 2024-04-02T06:51:13.692362+0000 mon.smithi037 (mon.0) 326 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi037", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-02T06:51:14.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:14 smithi052 bash[25156]: audit 2024-04-02T06:51:13.694186+0000 mon.smithi037 (mon.0) 327 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:14.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:14 smithi052 bash[25156]: cephadm 2024-04-02T06:51:13.696016+0000 mgr.smithi037.yymbdj (mgr.14215) 42 : cephadm 1 Reconfiguring daemon ceph-exporter.smithi037 on smithi037 2024-04-02T06:51:15.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:14 smithi037 bash[18626]: cluster 2024-04-02T06:51:13.118858+0000 mgr.smithi037.yymbdj (mgr.14215) 40 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:15.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:14 smithi037 bash[18626]: audit 2024-04-02T06:51:13.655770+0000 mon.smithi037 (mon.0) 324 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:15.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:14 smithi037 bash[18626]: audit 2024-04-02T06:51:13.662326+0000 mon.smithi037 (mon.0) 325 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:15.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:14 smithi037 bash[18626]: cephadm 2024-04-02T06:51:13.691601+0000 mgr.smithi037.yymbdj (mgr.14215) 41 : cephadm 1 Reconfiguring ceph-exporter.smithi037 (monmap changed)... 2024-04-02T06:51:15.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:14 smithi037 bash[18626]: audit 2024-04-02T06:51:13.692362+0000 mon.smithi037 (mon.0) 326 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi037", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-02T06:51:15.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:14 smithi037 bash[18626]: audit 2024-04-02T06:51:13.694186+0000 mon.smithi037 (mon.0) 327 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:15.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:14 smithi037 bash[18626]: cephadm 2024-04-02T06:51:13.696016+0000 mgr.smithi037.yymbdj (mgr.14215) 42 : cephadm 1 Reconfiguring daemon ceph-exporter.smithi037 on smithi037 2024-04-02T06:51:16.591 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:16 smithi037 bash[18626]: cluster 2024-04-02T06:51:15.119234+0000 mgr.smithi037.yymbdj (mgr.14215) 43 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:16.591 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:16 smithi037 bash[18626]: audit 2024-04-02T06:51:15.317635+0000 mon.smithi037 (mon.0) 328 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:16.591 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:16 smithi037 bash[18626]: audit 2024-04-02T06:51:15.328245+0000 mon.smithi037 (mon.0) 329 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:16.591 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:16 smithi037 bash[18626]: cephadm 2024-04-02T06:51:15.363582+0000 mgr.smithi037.yymbdj (mgr.14215) 44 : cephadm 1 Reconfiguring crash.smithi037 (monmap changed)... 2024-04-02T06:51:16.591 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:16 smithi037 bash[18626]: audit 2024-04-02T06:51:15.364320+0000 mon.smithi037 (mon.0) 330 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi037", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-02T06:51:16.591 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:16 smithi037 bash[18626]: audit 2024-04-02T06:51:15.366385+0000 mon.smithi037 (mon.0) 331 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:16.591 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:16 smithi037 bash[18626]: cephadm 2024-04-02T06:51:15.368419+0000 mgr.smithi037.yymbdj (mgr.14215) 45 : cephadm 1 Reconfiguring daemon crash.smithi037 on smithi037 2024-04-02T06:51:16.591 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:16 smithi037 bash[18626]: audit 2024-04-02T06:51:15.469097+0000 mon.smithi037 (mon.0) 332 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:16.592 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:16 smithi037 bash[18626]: audit 2024-04-02T06:51:15.470782+0000 mon.smithi037 (mon.0) 333 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:51:16.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:16 smithi052 bash[25156]: cluster 2024-04-02T06:51:15.119234+0000 mgr.smithi037.yymbdj (mgr.14215) 43 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:16.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:16 smithi052 bash[25156]: audit 2024-04-02T06:51:15.317635+0000 mon.smithi037 (mon.0) 328 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:16.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:16 smithi052 bash[25156]: audit 2024-04-02T06:51:15.328245+0000 mon.smithi037 (mon.0) 329 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:16.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:16 smithi052 bash[25156]: cephadm 2024-04-02T06:51:15.363582+0000 mgr.smithi037.yymbdj (mgr.14215) 44 : cephadm 1 Reconfiguring crash.smithi037 (monmap changed)... 2024-04-02T06:51:16.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:16 smithi052 bash[25156]: audit 2024-04-02T06:51:15.364320+0000 mon.smithi037 (mon.0) 330 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi037", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-02T06:51:16.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:16 smithi052 bash[25156]: audit 2024-04-02T06:51:15.366385+0000 mon.smithi037 (mon.0) 331 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:16.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:16 smithi052 bash[25156]: cephadm 2024-04-02T06:51:15.368419+0000 mgr.smithi037.yymbdj (mgr.14215) 45 : cephadm 1 Reconfiguring daemon crash.smithi037 on smithi037 2024-04-02T06:51:16.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:16 smithi052 bash[25156]: audit 2024-04-02T06:51:15.469097+0000 mon.smithi037 (mon.0) 332 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:16.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:16 smithi052 bash[25156]: audit 2024-04-02T06:51:15.470782+0000 mon.smithi037 (mon.0) 333 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:51:18.254 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi052/config 2024-04-02T06:51:18.392 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:18 smithi037 bash[18626]: cluster 2024-04-02T06:51:17.119725+0000 mgr.smithi037.yymbdj (mgr.14215) 46 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:18.392 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:18 smithi037 bash[18626]: audit 2024-04-02T06:51:17.135918+0000 mon.smithi037 (mon.0) 334 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:18.392 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:18 smithi037 bash[18626]: audit 2024-04-02T06:51:17.144936+0000 mon.smithi037 (mon.0) 335 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:18.392 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:18 smithi037 bash[18626]: cephadm 2024-04-02T06:51:17.193148+0000 mgr.smithi037.yymbdj (mgr.14215) 47 : cephadm 1 Reconfiguring alertmanager.smithi037 (dependencies changed)... 2024-04-02T06:51:18.392 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:18 smithi037 bash[18626]: cephadm 2024-04-02T06:51:17.227939+0000 mgr.smithi037.yymbdj (mgr.14215) 48 : cephadm 1 Reconfiguring daemon alertmanager.smithi037 on smithi037 2024-04-02T06:51:18.406 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:18 smithi052 bash[25156]: cluster 2024-04-02T06:51:17.119725+0000 mgr.smithi037.yymbdj (mgr.14215) 46 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:18.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:18 smithi052 bash[25156]: audit 2024-04-02T06:51:17.135918+0000 mon.smithi037 (mon.0) 334 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:18.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:18 smithi052 bash[25156]: audit 2024-04-02T06:51:17.144936+0000 mon.smithi037 (mon.0) 335 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:18.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:18 smithi052 bash[25156]: cephadm 2024-04-02T06:51:17.193148+0000 mgr.smithi037.yymbdj (mgr.14215) 47 : cephadm 1 Reconfiguring alertmanager.smithi037 (dependencies changed)... 2024-04-02T06:51:18.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:18 smithi052 bash[25156]: cephadm 2024-04-02T06:51:17.227939+0000 mgr.smithi037.yymbdj (mgr.14215) 48 : cephadm 1 Reconfiguring daemon alertmanager.smithi037 on smithi037 2024-04-02T06:51:20.406 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:20 smithi052 bash[25156]: cluster 2024-04-02T06:51:19.120143+0000 mgr.smithi037.yymbdj (mgr.14215) 49 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:20.468 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:20 smithi037 bash[18626]: cluster 2024-04-02T06:51:19.120143+0000 mgr.smithi037.yymbdj (mgr.14215) 49 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:20.601 INFO:teuthology.orchestra.run.smithi052.stdout:Scheduled osd.all-available-devices update... 2024-04-02T06:51:21.217 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-04-02T06:51:21.218 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-04-02T06:51:21.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:21 smithi052 bash[25156]: audit 2024-04-02T06:51:20.588286+0000 mgr.smithi037.yymbdj (mgr.14215) 50 : audit 0 from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:51:21.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:21 smithi052 bash[25156]: cephadm 2024-04-02T06:51:20.593635+0000 mgr.smithi037.yymbdj (mgr.14215) 51 : cephadm 1 Marking host: smithi037 for OSDSpec preview refresh. 2024-04-02T06:51:21.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:21 smithi052 bash[25156]: cephadm 2024-04-02T06:51:20.593867+0000 mgr.smithi037.yymbdj (mgr.14215) 52 : cephadm 1 Marking host: smithi052 for OSDSpec preview refresh. 2024-04-02T06:51:21.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:21 smithi052 bash[25156]: cephadm 2024-04-02T06:51:20.594822+0000 mgr.smithi037.yymbdj (mgr.14215) 53 : cephadm 1 Saving service osd.all-available-devices spec with placement * 2024-04-02T06:51:21.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:21 smithi052 bash[25156]: audit 2024-04-02T06:51:20.602164+0000 mon.smithi037 (mon.0) 336 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:21.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:21 smithi052 bash[25156]: audit 2024-04-02T06:51:20.963055+0000 mon.smithi037 (mon.0) 337 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:21.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:21 smithi052 bash[25156]: audit 2024-04-02T06:51:20.968023+0000 mon.smithi037 (mon.0) 338 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:21.988 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:21 smithi037 bash[18626]: audit 2024-04-02T06:51:20.588286+0000 mgr.smithi037.yymbdj (mgr.14215) 50 : audit 0 from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:51:21.988 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:21 smithi037 bash[18626]: cephadm 2024-04-02T06:51:20.593635+0000 mgr.smithi037.yymbdj (mgr.14215) 51 : cephadm 1 Marking host: smithi037 for OSDSpec preview refresh. 2024-04-02T06:51:21.988 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:21 smithi037 bash[18626]: cephadm 2024-04-02T06:51:20.593867+0000 mgr.smithi037.yymbdj (mgr.14215) 52 : cephadm 1 Marking host: smithi052 for OSDSpec preview refresh. 2024-04-02T06:51:21.988 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:21 smithi037 bash[18626]: cephadm 2024-04-02T06:51:20.594822+0000 mgr.smithi037.yymbdj (mgr.14215) 53 : cephadm 1 Saving service osd.all-available-devices spec with placement * 2024-04-02T06:51:21.988 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:21 smithi037 bash[18626]: audit 2024-04-02T06:51:20.602164+0000 mon.smithi037 (mon.0) 336 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:21.988 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:21 smithi037 bash[18626]: audit 2024-04-02T06:51:20.963055+0000 mon.smithi037 (mon.0) 337 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:21.989 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:21 smithi037 bash[18626]: audit 2024-04-02T06:51:20.968023+0000 mon.smithi037 (mon.0) 338 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:23.143 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:22 smithi037 bash[18626]: cephadm 2024-04-02T06:51:21.002296+0000 mgr.smithi037.yymbdj (mgr.14215) 54 : cephadm 1 Reconfiguring grafana.smithi037 (dependencies changed)... 2024-04-02T06:51:23.143 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:22 smithi037 bash[18626]: cluster 2024-04-02T06:51:21.341431+0000 mgr.smithi037.yymbdj (mgr.14215) 55 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:23.143 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:22 smithi037 bash[18626]: cephadm 2024-04-02T06:51:21.349005+0000 mgr.smithi037.yymbdj (mgr.14215) 56 : cephadm 1 Reconfiguring daemon grafana.smithi037 on smithi037 2024-04-02T06:51:23.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:22 smithi052 bash[25156]: cephadm 2024-04-02T06:51:21.002296+0000 mgr.smithi037.yymbdj (mgr.14215) 54 : cephadm 1 Reconfiguring grafana.smithi037 (dependencies changed)... 2024-04-02T06:51:23.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:22 smithi052 bash[25156]: cluster 2024-04-02T06:51:21.341431+0000 mgr.smithi037.yymbdj (mgr.14215) 55 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:23.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:22 smithi052 bash[25156]: cephadm 2024-04-02T06:51:21.349005+0000 mgr.smithi037.yymbdj (mgr.14215) 56 : cephadm 1 Reconfiguring daemon grafana.smithi037 on smithi037 2024-04-02T06:51:25.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:24 smithi037 bash[18626]: cluster 2024-04-02T06:51:23.341975+0000 mgr.smithi037.yymbdj (mgr.14215) 57 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:25.156 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:24 smithi052 bash[25156]: cluster 2024-04-02T06:51:23.341975+0000 mgr.smithi037.yymbdj (mgr.14215) 57 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:25.981 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:51:26.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:26 smithi037 bash[18626]: cluster 2024-04-02T06:51:25.342376+0000 mgr.smithi037.yymbdj (mgr.14215) 58 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:26.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:26 smithi037 bash[18626]: audit 2024-04-02T06:51:25.537459+0000 mon.smithi037 (mon.0) 339 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:26.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:26 smithi037 bash[18626]: audit 2024-04-02T06:51:25.542548+0000 mon.smithi037 (mon.0) 340 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:26.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:26 smithi037 bash[18626]: cephadm 2024-04-02T06:51:25.582749+0000 mgr.smithi037.yymbdj (mgr.14215) 59 : cephadm 1 Reconfiguring prometheus.smithi037 (dependencies changed)... 2024-04-02T06:51:26.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:26 smithi037 bash[18626]: cephadm 2024-04-02T06:51:25.839467+0000 mgr.smithi037.yymbdj (mgr.14215) 60 : cephadm 1 Reconfiguring daemon prometheus.smithi037 on smithi037 2024-04-02T06:51:26.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:26 smithi052 bash[25156]: cluster 2024-04-02T06:51:25.342376+0000 mgr.smithi037.yymbdj (mgr.14215) 58 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:26.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:26 smithi052 bash[25156]: audit 2024-04-02T06:51:25.537459+0000 mon.smithi037 (mon.0) 339 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:26.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:26 smithi052 bash[25156]: audit 2024-04-02T06:51:25.542548+0000 mon.smithi037 (mon.0) 340 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:26.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:26 smithi052 bash[25156]: cephadm 2024-04-02T06:51:25.582749+0000 mgr.smithi037.yymbdj (mgr.14215) 59 : cephadm 1 Reconfiguring prometheus.smithi037 (dependencies changed)... 2024-04-02T06:51:26.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:26 smithi052 bash[25156]: cephadm 2024-04-02T06:51:25.839467+0000 mgr.smithi037.yymbdj (mgr.14215) 60 : cephadm 1 Reconfiguring daemon prometheus.smithi037 on smithi037 2024-04-02T06:51:28.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:28 smithi037 bash[18626]: cluster 2024-04-02T06:51:27.342647+0000 mgr.smithi037.yymbdj (mgr.14215) 61 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:28.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:28 smithi052 bash[25156]: cluster 2024-04-02T06:51:27.342647+0000 mgr.smithi037.yymbdj (mgr.14215) 61 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:30.033 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:51:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:30 smithi037 bash[18626]: cluster 2024-04-02T06:51:29.343054+0000 mgr.smithi037.yymbdj (mgr.14215) 62 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:30 smithi037 bash[18626]: audit 2024-04-02T06:51:30.035197+0000 mon.smithi037 (mon.0) 341 : audit 0 from='client.? 172.21.15.37:0/3226237993' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:51:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:30 smithi037 bash[18626]: audit 2024-04-02T06:51:30.464002+0000 mon.smithi037 (mon.0) 342 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:51:30.857 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-04-02T06:51:30.906 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:30 smithi052 bash[25156]: cluster 2024-04-02T06:51:29.343054+0000 mgr.smithi037.yymbdj (mgr.14215) 62 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:30.906 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:30 smithi052 bash[25156]: audit 2024-04-02T06:51:30.035197+0000 mon.smithi037 (mon.0) 341 : audit 0 from='client.? 172.21.15.37:0/3226237993' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:51:30.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:30 smithi052 bash[25156]: audit 2024-04-02T06:51:30.464002+0000 mon.smithi037 (mon.0) 342 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:51:31.858 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-04-02T06:51:32.751 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:32 smithi052 bash[25156]: cluster 2024-04-02T06:51:31.343531+0000 mgr.smithi037.yymbdj (mgr.14215) 63 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:32.751 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:32 smithi052 bash[25156]: audit 2024-04-02T06:51:31.432143+0000 mon.smithi037 (mon.0) 343 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:32.751 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:32 smithi052 bash[25156]: audit 2024-04-02T06:51:31.437015+0000 mon.smithi037 (mon.0) 344 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:32.751 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:32 smithi052 bash[25156]: cephadm 2024-04-02T06:51:31.476971+0000 mgr.smithi037.yymbdj (mgr.14215) 64 : cephadm 1 Reconfiguring crash.smithi052 (monmap changed)... 2024-04-02T06:51:32.751 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:32 smithi052 bash[25156]: audit 2024-04-02T06:51:31.477452+0000 mon.smithi037 (mon.0) 345 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-02T06:51:32.751 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:32 smithi052 bash[25156]: audit 2024-04-02T06:51:31.478616+0000 mon.smithi037 (mon.0) 346 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:32.751 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:32 smithi052 bash[25156]: cephadm 2024-04-02T06:51:31.480047+0000 mgr.smithi037.yymbdj (mgr.14215) 65 : cephadm 1 Reconfiguring daemon crash.smithi052 on smithi052 2024-04-02T06:51:32.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:32 smithi037 bash[18626]: cluster 2024-04-02T06:51:31.343531+0000 mgr.smithi037.yymbdj (mgr.14215) 63 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:32.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:32 smithi037 bash[18626]: audit 2024-04-02T06:51:31.432143+0000 mon.smithi037 (mon.0) 343 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:32.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:32 smithi037 bash[18626]: audit 2024-04-02T06:51:31.437015+0000 mon.smithi037 (mon.0) 344 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:32.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:32 smithi037 bash[18626]: cephadm 2024-04-02T06:51:31.476971+0000 mgr.smithi037.yymbdj (mgr.14215) 64 : cephadm 1 Reconfiguring crash.smithi052 (monmap changed)... 2024-04-02T06:51:32.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:32 smithi037 bash[18626]: audit 2024-04-02T06:51:31.477452+0000 mon.smithi037 (mon.0) 345 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-02T06:51:32.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:32 smithi037 bash[18626]: audit 2024-04-02T06:51:31.478616+0000 mon.smithi037 (mon.0) 346 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:32.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:32 smithi037 bash[18626]: cephadm 2024-04-02T06:51:31.480047+0000 mgr.smithi037.yymbdj (mgr.14215) 65 : cephadm 1 Reconfiguring daemon crash.smithi052 on smithi052 2024-04-02T06:51:34.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:34 smithi037 bash[18626]: audit 2024-04-02T06:51:33.274311+0000 mon.smithi037 (mon.0) 347 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:34.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:34 smithi037 bash[18626]: audit 2024-04-02T06:51:33.283583+0000 mon.smithi037 (mon.0) 348 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:34 smithi037 bash[18626]: cephadm 2024-04-02T06:51:33.300345+0000 mgr.smithi037.yymbdj (mgr.14215) 66 : cephadm 1 Reconfiguring mgr.smithi052.hwhbeq (monmap changed)... 2024-04-02T06:51:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:34 smithi037 bash[18626]: audit 2024-04-02T06:51:33.301112+0000 mon.smithi037 (mon.0) 349 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi052.hwhbeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-02T06:51:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:34 smithi037 bash[18626]: audit 2024-04-02T06:51:33.303233+0000 mon.smithi037 (mon.0) 350 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-02T06:51:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:34 smithi037 bash[18626]: audit 2024-04-02T06:51:33.304945+0000 mon.smithi037 (mon.0) 351 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:34 smithi037 bash[18626]: cephadm 2024-04-02T06:51:33.306911+0000 mgr.smithi037.yymbdj (mgr.14215) 67 : cephadm 1 Reconfiguring daemon mgr.smithi052.hwhbeq on smithi052 2024-04-02T06:51:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:34 smithi037 bash[18626]: cluster 2024-04-02T06:51:33.343917+0000 mgr.smithi037.yymbdj (mgr.14215) 68 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:34.619 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:34 smithi052 bash[25156]: audit 2024-04-02T06:51:33.274311+0000 mon.smithi037 (mon.0) 347 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:34.620 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:34 smithi052 bash[25156]: audit 2024-04-02T06:51:33.283583+0000 mon.smithi037 (mon.0) 348 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:34.620 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:34 smithi052 bash[25156]: cephadm 2024-04-02T06:51:33.300345+0000 mgr.smithi037.yymbdj (mgr.14215) 66 : cephadm 1 Reconfiguring mgr.smithi052.hwhbeq (monmap changed)... 2024-04-02T06:51:34.620 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:34 smithi052 bash[25156]: audit 2024-04-02T06:51:33.301112+0000 mon.smithi037 (mon.0) 349 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi052.hwhbeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-02T06:51:34.620 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:34 smithi052 bash[25156]: audit 2024-04-02T06:51:33.303233+0000 mon.smithi037 (mon.0) 350 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-02T06:51:34.620 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:34 smithi052 bash[25156]: audit 2024-04-02T06:51:33.304945+0000 mon.smithi037 (mon.0) 351 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:34.620 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:34 smithi052 bash[25156]: cephadm 2024-04-02T06:51:33.306911+0000 mgr.smithi037.yymbdj (mgr.14215) 67 : cephadm 1 Reconfiguring daemon mgr.smithi052.hwhbeq on smithi052 2024-04-02T06:51:34.620 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:34 smithi052 bash[25156]: cluster 2024-04-02T06:51:33.343917+0000 mgr.smithi037.yymbdj (mgr.14215) 68 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:36.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:36 smithi037 bash[18626]: audit 2024-04-02T06:51:35.003289+0000 mon.smithi037 (mon.0) 352 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:36.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:36 smithi037 bash[18626]: audit 2024-04-02T06:51:35.013255+0000 mon.smithi037 (mon.0) 353 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:36.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:36 smithi037 bash[18626]: cephadm 2024-04-02T06:51:35.025942+0000 mgr.smithi037.yymbdj (mgr.14215) 69 : cephadm 1 Reconfiguring mon.smithi052 (monmap changed)... 2024-04-02T06:51:36.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:36 smithi037 bash[18626]: audit 2024-04-02T06:51:35.026742+0000 mon.smithi037 (mon.0) 354 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-02T06:51:36.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:36 smithi037 bash[18626]: audit 2024-04-02T06:51:35.028765+0000 mon.smithi037 (mon.0) 355 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-02T06:51:36.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:36 smithi037 bash[18626]: audit 2024-04-02T06:51:35.030787+0000 mon.smithi037 (mon.0) 356 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:36.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:36 smithi037 bash[18626]: cephadm 2024-04-02T06:51:35.033034+0000 mgr.smithi037.yymbdj (mgr.14215) 70 : cephadm 1 Reconfiguring daemon mon.smithi052 on smithi052 2024-04-02T06:51:36.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:36 smithi037 bash[18626]: cluster 2024-04-02T06:51:35.344325+0000 mgr.smithi037.yymbdj (mgr.14215) 71 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:36 smithi052 bash[25156]: audit 2024-04-02T06:51:35.003289+0000 mon.smithi037 (mon.0) 352 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:36 smithi052 bash[25156]: audit 2024-04-02T06:51:35.013255+0000 mon.smithi037 (mon.0) 353 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:36 smithi052 bash[25156]: cephadm 2024-04-02T06:51:35.025942+0000 mgr.smithi037.yymbdj (mgr.14215) 69 : cephadm 1 Reconfiguring mon.smithi052 (monmap changed)... 2024-04-02T06:51:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:36 smithi052 bash[25156]: audit 2024-04-02T06:51:35.026742+0000 mon.smithi037 (mon.0) 354 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-02T06:51:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:36 smithi052 bash[25156]: audit 2024-04-02T06:51:35.028765+0000 mon.smithi037 (mon.0) 355 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-02T06:51:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:36 smithi052 bash[25156]: audit 2024-04-02T06:51:35.030787+0000 mon.smithi037 (mon.0) 356 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:36 smithi052 bash[25156]: cephadm 2024-04-02T06:51:35.033034+0000 mgr.smithi037.yymbdj (mgr.14215) 70 : cephadm 1 Reconfiguring daemon mon.smithi052 on smithi052 2024-04-02T06:51:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:36 smithi052 bash[25156]: cluster 2024-04-02T06:51:35.344325+0000 mgr.smithi037.yymbdj (mgr.14215) 71 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:36.633 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:51:38.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.756466+0000 mon.smithi037 (mon.0) 357 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:38.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.765010+0000 mon.smithi037 (mon.0) 358 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:38.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.808834+0000 mon.smithi037 (mon.0) 359 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-02T06:51:38.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.809752+0000 mgr.smithi037.yymbdj (mgr.14215) 72 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-02T06:51:38.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.812015+0000 mon.smithi037 (mon.0) 360 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi037.front.sepia.ceph.com:9093"}]: dispatch 2024-04-02T06:51:38.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.812851+0000 mgr.smithi037.yymbdj (mgr.14215) 73 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi037.front.sepia.ceph.com:9093"}]: dispatch 2024-04-02T06:51:38.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.821998+0000 mon.smithi037 (mon.0) 361 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:38.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.847567+0000 mon.smithi037 (mon.0) 362 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-02T06:51:38.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.848673+0000 mgr.smithi037.yymbdj (mgr.14215) 74 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-02T06:51:38.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.858856+0000 mon.smithi037 (mon.0) 363 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi037.front.sepia.ceph.com:3000"}]: dispatch 2024-04-02T06:51:38.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.859989+0000 mgr.smithi037.yymbdj (mgr.14215) 75 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi037.front.sepia.ceph.com:3000"}]: dispatch 2024-04-02T06:51:38.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.867413+0000 mon.smithi037 (mon.0) 364 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:38.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.888836+0000 mon.smithi037 (mon.0) 365 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:51:38.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.889580+0000 mgr.smithi037.yymbdj (mgr.14215) 76 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:51:38.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.895283+0000 mon.smithi037 (mon.0) 366 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi037.front.sepia.ceph.com:9095"}]: dispatch 2024-04-02T06:51:38.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.896365+0000 mgr.smithi037.yymbdj (mgr.14215) 77 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi037.front.sepia.ceph.com:9095"}]: dispatch 2024-04-02T06:51:38.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.903936+0000 mon.smithi037 (mon.0) 367 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:38.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:37 smithi037 bash[18626]: audit 2024-04-02T06:51:36.922590+0000 mon.smithi037 (mon.0) 368 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:51:38.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.756466+0000 mon.smithi037 (mon.0) 357 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:38.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.765010+0000 mon.smithi037 (mon.0) 358 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:38.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.808834+0000 mon.smithi037 (mon.0) 359 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.809752+0000 mgr.smithi037.yymbdj (mgr.14215) 72 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.812015+0000 mon.smithi037 (mon.0) 360 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi037.front.sepia.ceph.com:9093"}]: dispatch 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.812851+0000 mgr.smithi037.yymbdj (mgr.14215) 73 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi037.front.sepia.ceph.com:9093"}]: dispatch 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.821998+0000 mon.smithi037 (mon.0) 361 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.847567+0000 mon.smithi037 (mon.0) 362 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.848673+0000 mgr.smithi037.yymbdj (mgr.14215) 74 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.858856+0000 mon.smithi037 (mon.0) 363 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi037.front.sepia.ceph.com:3000"}]: dispatch 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.859989+0000 mgr.smithi037.yymbdj (mgr.14215) 75 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi037.front.sepia.ceph.com:3000"}]: dispatch 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.867413+0000 mon.smithi037 (mon.0) 364 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.888836+0000 mon.smithi037 (mon.0) 365 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.889580+0000 mgr.smithi037.yymbdj (mgr.14215) 76 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:51:38.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.895283+0000 mon.smithi037 (mon.0) 366 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi037.front.sepia.ceph.com:9095"}]: dispatch 2024-04-02T06:51:38.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.896365+0000 mgr.smithi037.yymbdj (mgr.14215) 77 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi037.front.sepia.ceph.com:9095"}]: dispatch 2024-04-02T06:51:38.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.903936+0000 mon.smithi037 (mon.0) 367 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:38.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:37 smithi052 bash[25156]: audit 2024-04-02T06:51:36.922590+0000 mon.smithi037 (mon.0) 368 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:51:39.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:38 smithi052 bash[25156]: cluster 2024-04-02T06:51:37.344610+0000 mgr.smithi037.yymbdj (mgr.14215) 78 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:39.262 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:51:39.277 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:38 smithi037 bash[18626]: cluster 2024-04-02T06:51:37.344610+0000 mgr.smithi037.yymbdj (mgr.14215) 78 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:39.849 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-04-02T06:51:40.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:39 smithi052 bash[25156]: audit 2024-04-02T06:51:39.263639+0000 mon.smithi037 (mon.0) 369 : audit 0 from='client.? 172.21.15.37:0/2527457474' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:51:40.242 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:39 smithi037 bash[18626]: audit 2024-04-02T06:51:39.263639+0000 mon.smithi037 (mon.0) 369 : audit 0 from='client.? 172.21.15.37:0/2527457474' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:51:40.851 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-04-02T06:51:41.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:40 smithi037 bash[18626]: cluster 2024-04-02T06:51:39.344953+0000 mgr.smithi037.yymbdj (mgr.14215) 79 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:41.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:40 smithi052 bash[25156]: cluster 2024-04-02T06:51:39.344953+0000 mgr.smithi037.yymbdj (mgr.14215) 79 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:43.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:42 smithi037 bash[18626]: cluster 2024-04-02T06:51:41.345373+0000 mgr.smithi037.yymbdj (mgr.14215) 80 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:43.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:42 smithi037 bash[18626]: audit 2024-04-02T06:51:42.367216+0000 mon.smithi037 (mon.0) 370 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:43.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:42 smithi037 bash[18626]: audit 2024-04-02T06:51:42.373902+0000 mon.smithi037 (mon.0) 371 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:43.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:42 smithi052 bash[25156]: cluster 2024-04-02T06:51:41.345373+0000 mgr.smithi037.yymbdj (mgr.14215) 80 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:43.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:42 smithi052 bash[25156]: audit 2024-04-02T06:51:42.367216+0000 mon.smithi037 (mon.0) 370 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:43.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:42 smithi052 bash[25156]: audit 2024-04-02T06:51:42.373902+0000 mon.smithi037 (mon.0) 371 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:43 smithi037 bash[18626]: audit 2024-04-02T06:51:42.948950+0000 mon.smithi037 (mon.0) 372 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:43 smithi037 bash[18626]: audit 2024-04-02T06:51:42.953649+0000 mon.smithi037 (mon.0) 373 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:43 smithi037 bash[18626]: audit 2024-04-02T06:51:43.273958+0000 mon.smithi037 (mon.0) 374 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:43 smithi037 bash[18626]: audit 2024-04-02T06:51:43.278295+0000 mon.smithi037 (mon.0) 375 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:43 smithi037 bash[18626]: audit 2024-04-02T06:51:43.919144+0000 mon.smithi037 (mon.0) 376 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:43 smithi037 bash[18626]: audit 2024-04-02T06:51:43.929839+0000 mon.smithi037 (mon.0) 377 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:43 smithi037 bash[18626]: audit 2024-04-02T06:51:43.932407+0000 mon.smithi037 (mon.0) 378 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:44.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:43 smithi037 bash[18626]: audit 2024-04-02T06:51:43.934194+0000 mon.smithi037 (mon.0) 379 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:51:44.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:43 smithi037 bash[18626]: audit 2024-04-02T06:51:43.943192+0000 mon.smithi037 (mon.0) 380 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.406 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:43 smithi052 bash[25156]: audit 2024-04-02T06:51:42.948950+0000 mon.smithi037 (mon.0) 372 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:43 smithi052 bash[25156]: audit 2024-04-02T06:51:42.953649+0000 mon.smithi037 (mon.0) 373 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:43 smithi052 bash[25156]: audit 2024-04-02T06:51:43.273958+0000 mon.smithi037 (mon.0) 374 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:43 smithi052 bash[25156]: audit 2024-04-02T06:51:43.278295+0000 mon.smithi037 (mon.0) 375 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:43 smithi052 bash[25156]: audit 2024-04-02T06:51:43.919144+0000 mon.smithi037 (mon.0) 376 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:43 smithi052 bash[25156]: audit 2024-04-02T06:51:43.929839+0000 mon.smithi037 (mon.0) 377 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:43 smithi052 bash[25156]: audit 2024-04-02T06:51:43.932407+0000 mon.smithi037 (mon.0) 378 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:43 smithi052 bash[25156]: audit 2024-04-02T06:51:43.934194+0000 mon.smithi037 (mon.0) 379 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:51:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:43 smithi052 bash[25156]: audit 2024-04-02T06:51:43.943192+0000 mon.smithi037 (mon.0) 380 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:51:45.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:44 smithi052 bash[25156]: cluster 2024-04-02T06:51:43.345697+0000 mgr.smithi037.yymbdj (mgr.14215) 81 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:45.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:44 smithi052 bash[25156]: audit 2024-04-02T06:51:43.955254+0000 mon.smithi037 (mon.0) 381 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:51:45.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:44 smithi052 bash[25156]: audit 2024-04-02T06:51:43.962668+0000 mon.smithi037 (mon.0) 382 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-02T06:51:45.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:44 smithi052 bash[25156]: audit 2024-04-02T06:51:43.964209+0000 mon.smithi037 (mon.0) 383 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:45.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:44 smithi052 bash[25156]: audit 2024-04-02T06:51:43.972087+0000 mon.smithi037 (mon.0) 384 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-02T06:51:45.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:44 smithi052 bash[25156]: audit 2024-04-02T06:51:43.973679+0000 mon.smithi037 (mon.0) 385 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:45.260 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:44 smithi037 bash[18626]: cluster 2024-04-02T06:51:43.345697+0000 mgr.smithi037.yymbdj (mgr.14215) 81 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:45.260 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:44 smithi037 bash[18626]: audit 2024-04-02T06:51:43.955254+0000 mon.smithi037 (mon.0) 381 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:51:45.260 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:44 smithi037 bash[18626]: audit 2024-04-02T06:51:43.962668+0000 mon.smithi037 (mon.0) 382 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-02T06:51:45.260 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:44 smithi037 bash[18626]: audit 2024-04-02T06:51:43.964209+0000 mon.smithi037 (mon.0) 383 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:45.260 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:44 smithi037 bash[18626]: audit 2024-04-02T06:51:43.972087+0000 mon.smithi037 (mon.0) 384 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-02T06:51:45.260 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:44 smithi037 bash[18626]: audit 2024-04-02T06:51:43.973679+0000 mon.smithi037 (mon.0) 385 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:51:45.413 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:51:46.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:45 smithi037 bash[18626]: audit 2024-04-02T06:51:45.463848+0000 mon.smithi037 (mon.0) 386 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:51:46.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:45 smithi052 bash[25156]: audit 2024-04-02T06:51:45.463848+0000 mon.smithi037 (mon.0) 386 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:51:47.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:46 smithi037 bash[18626]: cluster 2024-04-02T06:51:45.346109+0000 mgr.smithi037.yymbdj (mgr.14215) 82 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:47.406 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:46 smithi052 bash[25156]: cluster 2024-04-02T06:51:45.346109+0000 mgr.smithi037.yymbdj (mgr.14215) 82 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:48.006 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:51:48.636 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-04-02T06:51:49.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:48 smithi037 bash[18626]: cluster 2024-04-02T06:51:47.346626+0000 mgr.smithi037.yymbdj (mgr.14215) 83 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:49.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:48 smithi037 bash[18626]: audit 2024-04-02T06:51:48.008088+0000 mon.smithi037 (mon.0) 387 : audit 0 from='client.? 172.21.15.37:0/1077382854' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:51:49.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:48 smithi052 bash[25156]: cluster 2024-04-02T06:51:47.346626+0000 mgr.smithi037.yymbdj (mgr.14215) 83 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:49.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:48 smithi052 bash[25156]: audit 2024-04-02T06:51:48.008088+0000 mon.smithi037 (mon.0) 387 : audit 0 from='client.? 172.21.15.37:0/1077382854' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:51:49.637 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-04-02T06:51:51.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:50 smithi037 bash[18626]: cluster 2024-04-02T06:51:49.347057+0000 mgr.smithi037.yymbdj (mgr.14215) 84 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:51.406 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:50 smithi052 bash[25156]: cluster 2024-04-02T06:51:49.347057+0000 mgr.smithi037.yymbdj (mgr.14215) 84 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:53.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: cluster 2024-04-02T06:51:51.347463+0000 mgr.smithi037.yymbdj (mgr.14215) 85 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:53.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: audit 2024-04-02T06:51:52.636744+0000 mon.smithi037 (mon.0) 388 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d6f0d68a-c31f-4a7f-9a2a-615fe61da9d0"}]: dispatch 2024-04-02T06:51:53.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: audit 2024-04-02T06:51:52.637080+0000 mon.smithi052 (mon.1) 2 : audit 1 from='client.? 172.21.15.52:0/2230165116' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d6f0d68a-c31f-4a7f-9a2a-615fe61da9d0"}]: dispatch 2024-04-02T06:51:53.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: audit 2024-04-02T06:51:52.639558+0000 mon.smithi037 (mon.0) 389 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d6f0d68a-c31f-4a7f-9a2a-615fe61da9d0"}]': finished 2024-04-02T06:51:53.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: cluster 2024-04-02T06:51:52.644229+0000 mon.smithi037 (mon.0) 390 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-04-02T06:51:53.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: audit 2024-04-02T06:51:52.645037+0000 mon.smithi037 (mon.0) 391 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:51:53.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: audit 2024-04-02T06:51:52.752440+0000 mon.smithi037 (mon.0) 392 : audit 1 from='client.? 172.21.15.37:0/3248471858' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "00c74907-11e6-4383-9735-d3bf1708a279"}]: dispatch 2024-04-02T06:51:53.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: audit 2024-04-02T06:51:52.755491+0000 mon.smithi037 (mon.0) 393 : audit 1 from='client.? 172.21.15.37:0/3248471858' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "00c74907-11e6-4383-9735-d3bf1708a279"}]': finished 2024-04-02T06:51:53.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: cluster 2024-04-02T06:51:52.760320+0000 mon.smithi037 (mon.0) 394 : cluster 0 osdmap e7: 2 total, 0 up, 2 in 2024-04-02T06:51:53.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: audit 2024-04-02T06:51:52.760599+0000 mon.smithi037 (mon.0) 395 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:51:53.151 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:52 smithi037 bash[18626]: audit 2024-04-02T06:51:52.760826+0000 mon.smithi037 (mon.0) 396 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: cluster 2024-04-02T06:51:51.347463+0000 mgr.smithi037.yymbdj (mgr.14215) 85 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: audit 2024-04-02T06:51:52.636744+0000 mon.smithi037 (mon.0) 388 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d6f0d68a-c31f-4a7f-9a2a-615fe61da9d0"}]: dispatch 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: audit 2024-04-02T06:51:52.637080+0000 mon.smithi052 (mon.1) 2 : audit 1 from='client.? 172.21.15.52:0/2230165116' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d6f0d68a-c31f-4a7f-9a2a-615fe61da9d0"}]: dispatch 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: audit 2024-04-02T06:51:52.639558+0000 mon.smithi037 (mon.0) 389 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d6f0d68a-c31f-4a7f-9a2a-615fe61da9d0"}]': finished 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: cluster 2024-04-02T06:51:52.644229+0000 mon.smithi037 (mon.0) 390 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: audit 2024-04-02T06:51:52.645037+0000 mon.smithi037 (mon.0) 391 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: audit 2024-04-02T06:51:52.752440+0000 mon.smithi037 (mon.0) 392 : audit 1 from='client.? 172.21.15.37:0/3248471858' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "00c74907-11e6-4383-9735-d3bf1708a279"}]: dispatch 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: audit 2024-04-02T06:51:52.755491+0000 mon.smithi037 (mon.0) 393 : audit 1 from='client.? 172.21.15.37:0/3248471858' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "00c74907-11e6-4383-9735-d3bf1708a279"}]': finished 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: cluster 2024-04-02T06:51:52.760320+0000 mon.smithi037 (mon.0) 394 : cluster 0 osdmap e7: 2 total, 0 up, 2 in 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: audit 2024-04-02T06:51:52.760599+0000 mon.smithi037 (mon.0) 395 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:51:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:52 smithi052 bash[25156]: audit 2024-04-02T06:51:52.760826+0000 mon.smithi037 (mon.0) 396 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:51:55.296 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:54 smithi037 bash[18626]: cluster 2024-04-02T06:51:53.349862+0000 mgr.smithi037.yymbdj (mgr.14215) 86 : cluster 0 pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:55.296 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:54 smithi037 bash[18626]: audit 2024-04-02T06:51:54.183015+0000 mon.smithi052 (mon.1) 3 : audit 0 from='client.? 172.21.15.52:0/3920473627' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:51:55.296 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:54 smithi037 bash[18626]: audit 2024-04-02T06:51:54.298997+0000 mon.smithi037 (mon.0) 397 : audit 0 from='client.? 172.21.15.37:0/577968751' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:51:55.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:54 smithi052 bash[25156]: cluster 2024-04-02T06:51:53.349862+0000 mgr.smithi037.yymbdj (mgr.14215) 86 : cluster 0 pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:55.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:54 smithi052 bash[25156]: audit 2024-04-02T06:51:54.183015+0000 mon.smithi052 (mon.1) 3 : audit 0 from='client.? 172.21.15.52:0/3920473627' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:51:55.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:54 smithi052 bash[25156]: audit 2024-04-02T06:51:54.298997+0000 mon.smithi037 (mon.0) 397 : audit 0 from='client.? 172.21.15.37:0/577968751' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:51:55.411 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:51:57.262 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:56 smithi052 bash[25156]: cluster 2024-04-02T06:51:55.350355+0000 mgr.smithi037.yymbdj (mgr.14215) 87 : cluster 0 pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:57.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:56 smithi037 bash[18626]: cluster 2024-04-02T06:51:55.350355+0000 mgr.smithi037.yymbdj (mgr.14215) 87 : cluster 0 pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:58.189 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:51:58.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.007612+0000 mon.smithi037 (mon.0) 398 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9b0117ed-ed70-412c-94d3-a712201361fc"}]: dispatch 2024-04-02T06:51:58.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.008429+0000 mon.smithi052 (mon.1) 4 : audit 1 from='client.? 172.21.15.52:0/1007003720' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9b0117ed-ed70-412c-94d3-a712201361fc"}]: dispatch 2024-04-02T06:51:58.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.009966+0000 mon.smithi037 (mon.0) 399 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9b0117ed-ed70-412c-94d3-a712201361fc"}]': finished 2024-04-02T06:51:58.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: cluster 2024-04-02T06:51:57.012499+0000 mon.smithi037 (mon.0) 400 : cluster 0 osdmap e8: 3 total, 0 up, 3 in 2024-04-02T06:51:58.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.012783+0000 mon.smithi037 (mon.0) 401 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:51:58.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.013061+0000 mon.smithi037 (mon.0) 402 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:51:58.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.013331+0000 mon.smithi037 (mon.0) 403 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:51:58.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.180121+0000 mon.smithi037 (mon.0) 404 : audit 1 from='client.? 172.21.15.37:0/2839970121' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38f447c7-5636-4b23-aea7-eeaaa9c173b2"}]: dispatch 2024-04-02T06:51:58.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.182257+0000 mon.smithi037 (mon.0) 405 : audit 1 from='client.? 172.21.15.37:0/2839970121' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "38f447c7-5636-4b23-aea7-eeaaa9c173b2"}]': finished 2024-04-02T06:51:58.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: cluster 2024-04-02T06:51:57.185576+0000 mon.smithi037 (mon.0) 406 : cluster 0 osdmap e9: 4 total, 0 up, 4 in 2024-04-02T06:51:58.206 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.185807+0000 mon.smithi037 (mon.0) 407 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:51:58.206 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.186051+0000 mon.smithi037 (mon.0) 408 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:51:58.206 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.186320+0000 mon.smithi037 (mon.0) 409 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:51:58.206 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:57 smithi037 bash[18626]: audit 2024-04-02T06:51:57.186581+0000 mon.smithi037 (mon.0) 410 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:51:58.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.007612+0000 mon.smithi037 (mon.0) 398 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9b0117ed-ed70-412c-94d3-a712201361fc"}]: dispatch 2024-04-02T06:51:58.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.008429+0000 mon.smithi052 (mon.1) 4 : audit 1 from='client.? 172.21.15.52:0/1007003720' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9b0117ed-ed70-412c-94d3-a712201361fc"}]: dispatch 2024-04-02T06:51:58.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.009966+0000 mon.smithi037 (mon.0) 399 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9b0117ed-ed70-412c-94d3-a712201361fc"}]': finished 2024-04-02T06:51:58.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: cluster 2024-04-02T06:51:57.012499+0000 mon.smithi037 (mon.0) 400 : cluster 0 osdmap e8: 3 total, 0 up, 3 in 2024-04-02T06:51:58.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.012783+0000 mon.smithi037 (mon.0) 401 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:51:58.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.013061+0000 mon.smithi037 (mon.0) 402 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:51:58.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.013331+0000 mon.smithi037 (mon.0) 403 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:51:58.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.180121+0000 mon.smithi037 (mon.0) 404 : audit 1 from='client.? 172.21.15.37:0/2839970121' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38f447c7-5636-4b23-aea7-eeaaa9c173b2"}]: dispatch 2024-04-02T06:51:58.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.182257+0000 mon.smithi037 (mon.0) 405 : audit 1 from='client.? 172.21.15.37:0/2839970121' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "38f447c7-5636-4b23-aea7-eeaaa9c173b2"}]': finished 2024-04-02T06:51:58.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: cluster 2024-04-02T06:51:57.185576+0000 mon.smithi037 (mon.0) 406 : cluster 0 osdmap e9: 4 total, 0 up, 4 in 2024-04-02T06:51:58.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.185807+0000 mon.smithi037 (mon.0) 407 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:51:58.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.186051+0000 mon.smithi037 (mon.0) 408 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:51:58.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.186320+0000 mon.smithi037 (mon.0) 409 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:51:58.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:57 smithi052 bash[25156]: audit 2024-04-02T06:51:57.186581+0000 mon.smithi037 (mon.0) 410 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:51:58.984 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1712040717,"num_remapped_pgs":0} 2024-04-02T06:51:59.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:58 smithi037 bash[18626]: cluster 2024-04-02T06:51:57.350806+0000 mgr.smithi037.yymbdj (mgr.14215) 88 : cluster 0 pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:59.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:58 smithi037 bash[18626]: audit 2024-04-02T06:51:58.191074+0000 mon.smithi037 (mon.0) 411 : audit 0 from='client.? 172.21.15.37:0/611675791' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:51:59.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:58 smithi037 bash[18626]: audit 2024-04-02T06:51:58.599102+0000 mon.smithi052 (mon.1) 5 : audit 0 from='client.? 172.21.15.52:0/2460756635' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:51:59.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:58 smithi052 bash[25156]: cluster 2024-04-02T06:51:57.350806+0000 mgr.smithi037.yymbdj (mgr.14215) 88 : cluster 0 pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:51:59.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:58 smithi052 bash[25156]: audit 2024-04-02T06:51:58.191074+0000 mon.smithi037 (mon.0) 411 : audit 0 from='client.? 172.21.15.37:0/611675791' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:51:59.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:58 smithi052 bash[25156]: audit 2024-04-02T06:51:58.599102+0000 mon.smithi052 (mon.1) 5 : audit 0 from='client.? 172.21.15.52:0/2460756635' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:51:59.985 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-04-02T06:52:00.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:51:59 smithi037 bash[18626]: audit 2024-04-02T06:51:59.132989+0000 mon.smithi037 (mon.0) 412 : audit 0 from='client.? 172.21.15.37:0/1194191921' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:52:00.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:51:59 smithi052 bash[25156]: audit 2024-04-02T06:51:59.132989+0000 mon.smithi037 (mon.0) 412 : audit 0 from='client.? 172.21.15.37:0/1194191921' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:52:01.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:00 smithi037 bash[18626]: cluster 2024-04-02T06:51:59.351196+0000 mgr.smithi037.yymbdj (mgr.14215) 89 : cluster 0 pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:01.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:00 smithi037 bash[18626]: audit 2024-04-02T06:52:00.464791+0000 mon.smithi037 (mon.0) 413 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:52:01.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:00 smithi052 bash[25156]: cluster 2024-04-02T06:51:59.351196+0000 mgr.smithi037.yymbdj (mgr.14215) 89 : cluster 0 pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:01.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:00 smithi052 bash[25156]: audit 2024-04-02T06:52:00.464791+0000 mon.smithi037 (mon.0) 413 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:52:02.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:02 smithi037 bash[18626]: audit 2024-04-02T06:52:01.430831+0000 mon.smithi037 (mon.0) 414 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "77290f4d-31d1-42fa-aa0b-3721ded46c5e"}]: dispatch 2024-04-02T06:52:02.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:02 smithi037 bash[18626]: audit 2024-04-02T06:52:01.431193+0000 mon.smithi052 (mon.1) 6 : audit 1 from='client.? 172.21.15.52:0/396182686' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "77290f4d-31d1-42fa-aa0b-3721ded46c5e"}]: dispatch 2024-04-02T06:52:02.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:02 smithi037 bash[18626]: audit 2024-04-02T06:52:01.434700+0000 mon.smithi037 (mon.0) 415 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "77290f4d-31d1-42fa-aa0b-3721ded46c5e"}]': finished 2024-04-02T06:52:02.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:02 smithi037 bash[18626]: cluster 2024-04-02T06:52:01.440610+0000 mon.smithi037 (mon.0) 416 : cluster 0 osdmap e10: 5 total, 0 up, 5 in 2024-04-02T06:52:02.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:02 smithi037 bash[18626]: audit 2024-04-02T06:52:01.440889+0000 mon.smithi037 (mon.0) 417 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:02.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:02 smithi037 bash[18626]: audit 2024-04-02T06:52:01.441166+0000 mon.smithi037 (mon.0) 418 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:02.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:02 smithi037 bash[18626]: audit 2024-04-02T06:52:01.441491+0000 mon.smithi037 (mon.0) 419 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:02.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:02 smithi037 bash[18626]: audit 2024-04-02T06:52:01.441787+0000 mon.smithi037 (mon.0) 420 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:02.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:02 smithi037 bash[18626]: audit 2024-04-02T06:52:01.442100+0000 mon.smithi037 (mon.0) 421 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:02.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:02 smithi052 bash[25156]: audit 2024-04-02T06:52:01.430831+0000 mon.smithi037 (mon.0) 414 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "77290f4d-31d1-42fa-aa0b-3721ded46c5e"}]: dispatch 2024-04-02T06:52:02.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:02 smithi052 bash[25156]: audit 2024-04-02T06:52:01.431193+0000 mon.smithi052 (mon.1) 6 : audit 1 from='client.? 172.21.15.52:0/396182686' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "77290f4d-31d1-42fa-aa0b-3721ded46c5e"}]: dispatch 2024-04-02T06:52:02.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:02 smithi052 bash[25156]: audit 2024-04-02T06:52:01.434700+0000 mon.smithi037 (mon.0) 415 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "77290f4d-31d1-42fa-aa0b-3721ded46c5e"}]': finished 2024-04-02T06:52:02.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:02 smithi052 bash[25156]: cluster 2024-04-02T06:52:01.440610+0000 mon.smithi037 (mon.0) 416 : cluster 0 osdmap e10: 5 total, 0 up, 5 in 2024-04-02T06:52:02.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:02 smithi052 bash[25156]: audit 2024-04-02T06:52:01.440889+0000 mon.smithi037 (mon.0) 417 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:02.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:02 smithi052 bash[25156]: audit 2024-04-02T06:52:01.441166+0000 mon.smithi037 (mon.0) 418 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:02.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:02 smithi052 bash[25156]: audit 2024-04-02T06:52:01.441491+0000 mon.smithi037 (mon.0) 419 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:02.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:02 smithi052 bash[25156]: audit 2024-04-02T06:52:01.441787+0000 mon.smithi037 (mon.0) 420 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:02.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:02 smithi052 bash[25156]: audit 2024-04-02T06:52:01.442100+0000 mon.smithi037 (mon.0) 421 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:03.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:03 smithi037 bash[18626]: cluster 2024-04-02T06:52:01.351637+0000 mgr.smithi037.yymbdj (mgr.14215) 90 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:03.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:03 smithi037 bash[18626]: audit 2024-04-02T06:52:02.016653+0000 mon.smithi037 (mon.0) 422 : audit 1 from='client.? 172.21.15.37:0/2603768992' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d56bd3a4-3ffe-42e0-a3ba-59e5b8f72ef8"}]: dispatch 2024-04-02T06:52:03.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:03 smithi037 bash[18626]: audit 2024-04-02T06:52:02.019679+0000 mon.smithi037 (mon.0) 423 : audit 1 from='client.? 172.21.15.37:0/2603768992' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d56bd3a4-3ffe-42e0-a3ba-59e5b8f72ef8"}]': finished 2024-04-02T06:52:03.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:03 smithi037 bash[18626]: cluster 2024-04-02T06:52:02.024787+0000 mon.smithi037 (mon.0) 424 : cluster 0 osdmap e11: 6 total, 0 up, 6 in 2024-04-02T06:52:03.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:03 smithi037 bash[18626]: audit 2024-04-02T06:52:02.025070+0000 mon.smithi037 (mon.0) 425 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:03.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:03 smithi037 bash[18626]: audit 2024-04-02T06:52:02.025319+0000 mon.smithi037 (mon.0) 426 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:03.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:03 smithi037 bash[18626]: audit 2024-04-02T06:52:02.025565+0000 mon.smithi037 (mon.0) 427 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:03.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:03 smithi037 bash[18626]: audit 2024-04-02T06:52:02.025809+0000 mon.smithi037 (mon.0) 428 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:03.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:03 smithi037 bash[18626]: audit 2024-04-02T06:52:02.026045+0000 mon.smithi037 (mon.0) 429 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:03.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:03 smithi037 bash[18626]: audit 2024-04-02T06:52:02.026294+0000 mon.smithi037 (mon.0) 430 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:03.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:03 smithi052 bash[25156]: cluster 2024-04-02T06:52:01.351637+0000 mgr.smithi037.yymbdj (mgr.14215) 90 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:03.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:03 smithi052 bash[25156]: audit 2024-04-02T06:52:02.016653+0000 mon.smithi037 (mon.0) 422 : audit 1 from='client.? 172.21.15.37:0/2603768992' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d56bd3a4-3ffe-42e0-a3ba-59e5b8f72ef8"}]: dispatch 2024-04-02T06:52:03.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:03 smithi052 bash[25156]: audit 2024-04-02T06:52:02.019679+0000 mon.smithi037 (mon.0) 423 : audit 1 from='client.? 172.21.15.37:0/2603768992' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d56bd3a4-3ffe-42e0-a3ba-59e5b8f72ef8"}]': finished 2024-04-02T06:52:03.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:03 smithi052 bash[25156]: cluster 2024-04-02T06:52:02.024787+0000 mon.smithi037 (mon.0) 424 : cluster 0 osdmap e11: 6 total, 0 up, 6 in 2024-04-02T06:52:03.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:03 smithi052 bash[25156]: audit 2024-04-02T06:52:02.025070+0000 mon.smithi037 (mon.0) 425 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:03.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:03 smithi052 bash[25156]: audit 2024-04-02T06:52:02.025319+0000 mon.smithi037 (mon.0) 426 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:03.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:03 smithi052 bash[25156]: audit 2024-04-02T06:52:02.025565+0000 mon.smithi037 (mon.0) 427 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:03.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:03 smithi052 bash[25156]: audit 2024-04-02T06:52:02.025809+0000 mon.smithi037 (mon.0) 428 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:03.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:03 smithi052 bash[25156]: audit 2024-04-02T06:52:02.026045+0000 mon.smithi037 (mon.0) 429 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:03.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:03 smithi052 bash[25156]: audit 2024-04-02T06:52:02.026294+0000 mon.smithi037 (mon.0) 430 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:04.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:04 smithi037 bash[18626]: audit 2024-04-02T06:52:03.039259+0000 mon.smithi052 (mon.1) 7 : audit 0 from='client.? 172.21.15.52:0/1562320590' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:52:04.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:04 smithi037 bash[18626]: cluster 2024-04-02T06:52:03.352039+0000 mgr.smithi037.yymbdj (mgr.14215) 91 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:04.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:04 smithi037 bash[18626]: audit 2024-04-02T06:52:03.677631+0000 mon.smithi037 (mon.0) 431 : audit 0 from='client.? 172.21.15.37:0/1143924557' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:52:04.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:04 smithi052 bash[25156]: audit 2024-04-02T06:52:03.039259+0000 mon.smithi052 (mon.1) 7 : audit 0 from='client.? 172.21.15.52:0/1562320590' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:52:04.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:04 smithi052 bash[25156]: cluster 2024-04-02T06:52:03.352039+0000 mgr.smithi037.yymbdj (mgr.14215) 91 : cluster 0 pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:04.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:04 smithi052 bash[25156]: audit 2024-04-02T06:52:03.677631+0000 mon.smithi037 (mon.0) 431 : audit 0 from='client.? 172.21.15.37:0/1143924557' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:52:04.761 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:52:06.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: cluster 2024-04-02T06:52:05.352446+0000 mgr.smithi037.yymbdj (mgr.14215) 92 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:06.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: audit 2024-04-02T06:52:05.844434+0000 mon.smithi037 (mon.0) 432 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9d5a3dd3-6420-4eea-8304-e663ddf77a07"}]: dispatch 2024-04-02T06:52:06.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: audit 2024-04-02T06:52:05.844649+0000 mon.smithi052 (mon.1) 8 : audit 1 from='client.? 172.21.15.52:0/730319320' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9d5a3dd3-6420-4eea-8304-e663ddf77a07"}]: dispatch 2024-04-02T06:52:06.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: audit 2024-04-02T06:52:05.848493+0000 mon.smithi037 (mon.0) 433 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9d5a3dd3-6420-4eea-8304-e663ddf77a07"}]': finished 2024-04-02T06:52:06.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: cluster 2024-04-02T06:52:05.853312+0000 mon.smithi037 (mon.0) 434 : cluster 0 osdmap e12: 7 total, 0 up, 7 in 2024-04-02T06:52:06.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: audit 2024-04-02T06:52:05.854115+0000 mon.smithi037 (mon.0) 435 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:06.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: audit 2024-04-02T06:52:05.854864+0000 mon.smithi037 (mon.0) 436 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:06.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: audit 2024-04-02T06:52:05.855545+0000 mon.smithi037 (mon.0) 437 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:06.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: audit 2024-04-02T06:52:05.856256+0000 mon.smithi037 (mon.0) 438 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:06.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: audit 2024-04-02T06:52:05.856914+0000 mon.smithi037 (mon.0) 439 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:06.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: audit 2024-04-02T06:52:05.857557+0000 mon.smithi037 (mon.0) 440 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:06.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:06 smithi052 bash[25156]: audit 2024-04-02T06:52:05.858197+0000 mon.smithi037 (mon.0) 441 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: cluster 2024-04-02T06:52:05.352446+0000 mgr.smithi037.yymbdj (mgr.14215) 92 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: audit 2024-04-02T06:52:05.844434+0000 mon.smithi037 (mon.0) 432 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9d5a3dd3-6420-4eea-8304-e663ddf77a07"}]: dispatch 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: audit 2024-04-02T06:52:05.844649+0000 mon.smithi052 (mon.1) 8 : audit 1 from='client.? 172.21.15.52:0/730319320' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9d5a3dd3-6420-4eea-8304-e663ddf77a07"}]: dispatch 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: audit 2024-04-02T06:52:05.848493+0000 mon.smithi037 (mon.0) 433 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9d5a3dd3-6420-4eea-8304-e663ddf77a07"}]': finished 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: cluster 2024-04-02T06:52:05.853312+0000 mon.smithi037 (mon.0) 434 : cluster 0 osdmap e12: 7 total, 0 up, 7 in 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: audit 2024-04-02T06:52:05.854115+0000 mon.smithi037 (mon.0) 435 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: audit 2024-04-02T06:52:05.854864+0000 mon.smithi037 (mon.0) 436 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: audit 2024-04-02T06:52:05.855545+0000 mon.smithi037 (mon.0) 437 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: audit 2024-04-02T06:52:05.856256+0000 mon.smithi037 (mon.0) 438 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: audit 2024-04-02T06:52:05.856914+0000 mon.smithi037 (mon.0) 439 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: audit 2024-04-02T06:52:05.857557+0000 mon.smithi037 (mon.0) 440 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:06.666 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:06 smithi037 bash[18626]: audit 2024-04-02T06:52:05.858197+0000 mon.smithi037 (mon.0) 441 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:07.154 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:52:07.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:06.507797+0000 mon.smithi037 (mon.0) 442 : audit 1 from='client.? 172.21.15.37:0/1138095941' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "097f83c6-e621-48c8-b6b5-02bc99aa934a"}]: dispatch 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:06.511350+0000 mon.smithi037 (mon.0) 443 : audit 1 from='client.? 172.21.15.37:0/1138095941' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "097f83c6-e621-48c8-b6b5-02bc99aa934a"}]': finished 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: cluster 2024-04-02T06:52:06.516131+0000 mon.smithi037 (mon.0) 444 : cluster 0 osdmap e13: 8 total, 0 up, 8 in 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:06.516369+0000 mon.smithi037 (mon.0) 445 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:06.516567+0000 mon.smithi037 (mon.0) 446 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:06.516741+0000 mon.smithi037 (mon.0) 447 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:06.516928+0000 mon.smithi037 (mon.0) 448 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:06.517106+0000 mon.smithi037 (mon.0) 449 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:06.517287+0000 mon.smithi037 (mon.0) 450 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:06.517466+0000 mon.smithi037 (mon.0) 451 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:06.517661+0000 mon.smithi037 (mon.0) 452 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:07.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:07 smithi037 bash[18626]: audit 2024-04-02T06:52:07.155582+0000 mon.smithi037 (mon.0) 453 : audit 0 from='client.? 172.21.15.37:0/3357338334' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:52:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:06.507797+0000 mon.smithi037 (mon.0) 442 : audit 1 from='client.? 172.21.15.37:0/1138095941' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "097f83c6-e621-48c8-b6b5-02bc99aa934a"}]: dispatch 2024-04-02T06:52:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:06.511350+0000 mon.smithi037 (mon.0) 443 : audit 1 from='client.? 172.21.15.37:0/1138095941' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "097f83c6-e621-48c8-b6b5-02bc99aa934a"}]': finished 2024-04-02T06:52:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: cluster 2024-04-02T06:52:06.516131+0000 mon.smithi037 (mon.0) 444 : cluster 0 osdmap e13: 8 total, 0 up, 8 in 2024-04-02T06:52:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:06.516369+0000 mon.smithi037 (mon.0) 445 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:06.516567+0000 mon.smithi037 (mon.0) 446 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:06.516741+0000 mon.smithi037 (mon.0) 447 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:06.516928+0000 mon.smithi037 (mon.0) 448 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:07.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:06.517106+0000 mon.smithi037 (mon.0) 449 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:07.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:06.517287+0000 mon.smithi037 (mon.0) 450 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:07.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:06.517466+0000 mon.smithi037 (mon.0) 451 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:07.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:06.517661+0000 mon.smithi037 (mon.0) 452 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:07.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:07 smithi052 bash[25156]: audit 2024-04-02T06:52:07.155582+0000 mon.smithi037 (mon.0) 453 : audit 0 from='client.? 172.21.15.37:0/3357338334' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:52:07.923 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1712040726,"num_remapped_pgs":0} 2024-04-02T06:52:08.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:08 smithi037 bash[18626]: cluster 2024-04-02T06:52:07.352912+0000 mgr.smithi037.yymbdj (mgr.14215) 93 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:08.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:08 smithi037 bash[18626]: audit 2024-04-02T06:52:07.798979+0000 mon.smithi052 (mon.1) 9 : audit 0 from='client.? 172.21.15.52:0/4245753596' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:52:08.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:08 smithi052 bash[25156]: cluster 2024-04-02T06:52:07.352912+0000 mgr.smithi037.yymbdj (mgr.14215) 93 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:08.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:08 smithi052 bash[25156]: audit 2024-04-02T06:52:07.798979+0000 mon.smithi052 (mon.1) 9 : audit 0 from='client.? 172.21.15.52:0/4245753596' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:52:08.924 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-04-02T06:52:09.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:09 smithi037 bash[18626]: audit 2024-04-02T06:52:08.555039+0000 mon.smithi037 (mon.0) 454 : audit 0 from='client.? 172.21.15.37:0/1312360650' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:52:09.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:09 smithi052 bash[25156]: audit 2024-04-02T06:52:08.555039+0000 mon.smithi037 (mon.0) 454 : audit 0 from='client.? 172.21.15.37:0/1312360650' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-02T06:52:10.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:10 smithi052 bash[25156]: cluster 2024-04-02T06:52:09.353326+0000 mgr.smithi037.yymbdj (mgr.14215) 94 : cluster 0 pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:10.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:10 smithi037 bash[18626]: cluster 2024-04-02T06:52:09.353326+0000 mgr.smithi037.yymbdj (mgr.14215) 94 : cluster 0 pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:12.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:12 smithi037 bash[18626]: cluster 2024-04-02T06:52:11.353757+0000 mgr.smithi037.yymbdj (mgr.14215) 95 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:12.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:12 smithi052 bash[25156]: cluster 2024-04-02T06:52:11.353757+0000 mgr.smithi037.yymbdj (mgr.14215) 95 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:14.338 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:52:14.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:14 smithi037 bash[18626]: cluster 2024-04-02T06:52:13.354174+0000 mgr.smithi037.yymbdj (mgr.14215) 96 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:14.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:14 smithi052 bash[25156]: cluster 2024-04-02T06:52:13.354174+0000 mgr.smithi037.yymbdj (mgr.14215) 96 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:15.739 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:15 smithi037 bash[18626]: audit 2024-04-02T06:52:15.465150+0000 mon.smithi037 (mon.0) 455 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:52:15.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:15 smithi052 bash[25156]: audit 2024-04-02T06:52:15.465150+0000 mon.smithi037 (mon.0) 455 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:52:16.800 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:52:16.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:16 smithi037 bash[18626]: cluster 2024-04-02T06:52:15.354619+0000 mgr.smithi037.yymbdj (mgr.14215) 97 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:16.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:16 smithi052 bash[25156]: cluster 2024-04-02T06:52:15.354619+0000 mgr.smithi037.yymbdj (mgr.14215) 97 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:17.615 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1712040726,"num_remapped_pgs":0} 2024-04-02T06:52:17.621 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:17 smithi037 bash[18626]: audit 2024-04-02T06:52:16.801860+0000 mon.smithi037 (mon.0) 456 : audit 0 from='client.? 172.21.15.37:0/428891192' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:52:17.846 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:17 smithi052 bash[25156]: audit 2024-04-02T06:52:16.801860+0000 mon.smithi037 (mon.0) 456 : audit 0 from='client.? 172.21.15.37:0/428891192' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:52:18.616 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-04-02T06:52:18.629 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:18 smithi037 bash[18626]: cluster 2024-04-02T06:52:17.355122+0000 mgr.smithi037.yymbdj (mgr.14215) 98 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:18.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:18 smithi052 bash[25156]: cluster 2024-04-02T06:52:17.355122+0000 mgr.smithi037.yymbdj (mgr.14215) 98 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:19.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:19 smithi037 bash[18626]: audit 2024-04-02T06:52:18.893864+0000 mon.smithi037 (mon.0) 457 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-02T06:52:19.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:19 smithi037 bash[18626]: audit 2024-04-02T06:52:18.894683+0000 mon.smithi037 (mon.0) 458 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:19.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:19 smithi037 bash[18626]: cephadm 2024-04-02T06:52:18.895351+0000 mgr.smithi037.yymbdj (mgr.14215) 99 : cephadm 1 Deploying daemon osd.0 on smithi052 2024-04-02T06:52:19.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:19 smithi052 bash[25156]: audit 2024-04-02T06:52:18.893864+0000 mon.smithi037 (mon.0) 457 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-02T06:52:19.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:19 smithi052 bash[25156]: audit 2024-04-02T06:52:18.894683+0000 mon.smithi037 (mon.0) 458 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:19.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:19 smithi052 bash[25156]: cephadm 2024-04-02T06:52:18.895351+0000 mgr.smithi037.yymbdj (mgr.14215) 99 : cephadm 1 Deploying daemon osd.0 on smithi052 2024-04-02T06:52:20.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:20 smithi052 bash[25156]: cluster 2024-04-02T06:52:19.355619+0000 mgr.smithi037.yymbdj (mgr.14215) 100 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:20.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:20 smithi052 bash[25156]: audit 2024-04-02T06:52:20.022212+0000 mon.smithi037 (mon.0) 459 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-02T06:52:20.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:20 smithi052 bash[25156]: audit 2024-04-02T06:52:20.023823+0000 mon.smithi037 (mon.0) 460 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:20.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:20 smithi037 bash[18626]: cluster 2024-04-02T06:52:19.355619+0000 mgr.smithi037.yymbdj (mgr.14215) 100 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:20.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:20 smithi037 bash[18626]: audit 2024-04-02T06:52:20.022212+0000 mon.smithi037 (mon.0) 459 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-02T06:52:20.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:20 smithi037 bash[18626]: audit 2024-04-02T06:52:20.023823+0000 mon.smithi037 (mon.0) 460 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:21.656 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:21 smithi052 bash[25156]: cephadm 2024-04-02T06:52:20.025476+0000 mgr.smithi037.yymbdj (mgr.14215) 101 : cephadm 1 Deploying daemon osd.1 on smithi037 2024-04-02T06:52:21.998 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:21 smithi037 bash[18626]: cephadm 2024-04-02T06:52:20.025476+0000 mgr.smithi037.yymbdj (mgr.14215) 101 : cephadm 1 Deploying daemon osd.1 on smithi037 2024-04-02T06:52:22.729 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:22 smithi052 bash[25156]: cluster 2024-04-02T06:52:21.355982+0000 mgr.smithi037.yymbdj (mgr.14215) 102 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:22.730 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:22 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:22.984 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:22 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:23.024 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:22 smithi037 bash[18626]: cluster 2024-04-02T06:52:21.355982+0000 mgr.smithi037.yymbdj (mgr.14215) 102 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:24.056 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:52:24.120 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:24 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:24.121 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:24 smithi037 bash[18626]: audit 2024-04-02T06:52:23.031314+0000 mon.smithi037 (mon.0) 461 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:24.121 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:24 smithi037 bash[18626]: audit 2024-04-02T06:52:23.036672+0000 mon.smithi037 (mon.0) 462 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:24.121 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:24 smithi037 bash[18626]: audit 2024-04-02T06:52:23.037553+0000 mon.smithi037 (mon.0) 463 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-02T06:52:24.121 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:24 smithi037 bash[18626]: audit 2024-04-02T06:52:23.038250+0000 mon.smithi037 (mon.0) 464 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:24.121 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:24 smithi037 bash[18626]: cephadm 2024-04-02T06:52:23.038911+0000 mgr.smithi037.yymbdj (mgr.14215) 103 : cephadm 1 Deploying daemon osd.2 on smithi052 2024-04-02T06:52:24.121 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:24 smithi037 bash[18626]: cluster 2024-04-02T06:52:23.356345+0000 mgr.smithi037.yymbdj (mgr.14215) 104 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:24.330 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:24 smithi052 bash[25156]: audit 2024-04-02T06:52:23.031314+0000 mon.smithi037 (mon.0) 461 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:24.330 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:24 smithi052 bash[25156]: audit 2024-04-02T06:52:23.036672+0000 mon.smithi037 (mon.0) 462 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:24.330 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:24 smithi052 bash[25156]: audit 2024-04-02T06:52:23.037553+0000 mon.smithi037 (mon.0) 463 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-02T06:52:24.330 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:24 smithi052 bash[25156]: audit 2024-04-02T06:52:23.038250+0000 mon.smithi037 (mon.0) 464 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:24.330 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:24 smithi052 bash[25156]: cephadm 2024-04-02T06:52:23.038911+0000 mgr.smithi037.yymbdj (mgr.14215) 103 : cephadm 1 Deploying daemon osd.2 on smithi052 2024-04-02T06:52:24.330 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:24 smithi052 bash[25156]: cluster 2024-04-02T06:52:23.356345+0000 mgr.smithi037.yymbdj (mgr.14215) 104 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:24.383 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:24 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:25.720 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:25 smithi037 bash[18626]: audit 2024-04-02T06:52:24.427272+0000 mon.smithi037 (mon.0) 465 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:25.720 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:25 smithi037 bash[18626]: audit 2024-04-02T06:52:24.434309+0000 mon.smithi037 (mon.0) 466 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:25.720 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:25 smithi037 bash[18626]: audit 2024-04-02T06:52:24.435274+0000 mon.smithi037 (mon.0) 467 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-02T06:52:25.720 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:25 smithi037 bash[18626]: audit 2024-04-02T06:52:24.435917+0000 mon.smithi037 (mon.0) 468 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:25.720 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:25 smithi037 bash[18626]: cephadm 2024-04-02T06:52:24.436466+0000 mgr.smithi037.yymbdj (mgr.14215) 105 : cephadm 1 Deploying daemon osd.3 on smithi037 2024-04-02T06:52:25.947 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:25 smithi052 bash[25156]: audit 2024-04-02T06:52:24.427272+0000 mon.smithi037 (mon.0) 465 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:25.948 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:25 smithi052 bash[25156]: audit 2024-04-02T06:52:24.434309+0000 mon.smithi037 (mon.0) 466 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:25.948 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:25 smithi052 bash[25156]: audit 2024-04-02T06:52:24.435274+0000 mon.smithi037 (mon.0) 467 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-02T06:52:25.948 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:25 smithi052 bash[25156]: audit 2024-04-02T06:52:24.435917+0000 mon.smithi037 (mon.0) 468 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:25.948 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:25 smithi052 bash[25156]: cephadm 2024-04-02T06:52:24.436466+0000 mgr.smithi037.yymbdj (mgr.14215) 105 : cephadm 1 Deploying daemon osd.3 on smithi037 2024-04-02T06:52:26.563 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:26 smithi052 bash[25156]: cluster 2024-04-02T06:52:25.356672+0000 mgr.smithi037.yymbdj (mgr.14215) 106 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:26.687 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:26 smithi037 bash[18626]: cluster 2024-04-02T06:52:25.356672+0000 mgr.smithi037.yymbdj (mgr.14215) 106 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:27.559 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:27 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:27.832 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:27 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:28.911 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:52:29.138 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:28 smithi052 bash[25156]: cluster 2024-04-02T06:52:27.356970+0000 mgr.smithi037.yymbdj (mgr.14215) 107 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:29.139 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:28 smithi052 bash[25156]: audit 2024-04-02T06:52:27.884652+0000 mon.smithi037 (mon.0) 469 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:29.139 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:28 smithi052 bash[25156]: audit 2024-04-02T06:52:27.894534+0000 mon.smithi037 (mon.0) 470 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:29.139 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:28 smithi052 bash[25156]: audit 2024-04-02T06:52:27.896619+0000 mon.smithi037 (mon.0) 471 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-02T06:52:29.139 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:28 smithi052 bash[25156]: audit 2024-04-02T06:52:27.898246+0000 mon.smithi037 (mon.0) 472 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:29.139 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:28 smithi052 bash[25156]: cephadm 2024-04-02T06:52:27.899872+0000 mgr.smithi037.yymbdj (mgr.14215) 108 : cephadm 1 Deploying daemon osd.4 on smithi052 2024-04-02T06:52:29.154 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:28 smithi037 bash[18626]: cluster 2024-04-02T06:52:27.356970+0000 mgr.smithi037.yymbdj (mgr.14215) 107 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:29.154 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:28 smithi037 bash[18626]: audit 2024-04-02T06:52:27.884652+0000 mon.smithi037 (mon.0) 469 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:29.154 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:28 smithi037 bash[18626]: audit 2024-04-02T06:52:27.894534+0000 mon.smithi037 (mon.0) 470 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:29.154 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:28 smithi037 bash[18626]: audit 2024-04-02T06:52:27.896619+0000 mon.smithi037 (mon.0) 471 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-02T06:52:29.154 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:28 smithi037 bash[18626]: audit 2024-04-02T06:52:27.898246+0000 mon.smithi037 (mon.0) 472 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:29.155 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:28 smithi037 bash[18626]: cephadm 2024-04-02T06:52:27.899872+0000 mgr.smithi037.yymbdj (mgr.14215) 108 : cephadm 1 Deploying daemon osd.4 on smithi052 2024-04-02T06:52:29.826 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1712040726,"num_remapped_pgs":0} 2024-04-02T06:52:30.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:29 smithi037 bash[18626]: audit 2024-04-02T06:52:28.913090+0000 mon.smithi037 (mon.0) 473 : audit 0 from='client.? 172.21.15.37:0/1896427689' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:52:30.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:29 smithi052 bash[25156]: audit 2024-04-02T06:52:28.913090+0000 mon.smithi037 (mon.0) 473 : audit 0 from='client.? 172.21.15.37:0/1896427689' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:52:30.428 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:30 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:30.697 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:30 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:30.828 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-04-02T06:52:31.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:30 smithi037 bash[18626]: cluster 2024-04-02T06:52:29.357273+0000 mgr.smithi037.yymbdj (mgr.14215) 109 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:31.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:30 smithi037 bash[18626]: audit 2024-04-02T06:52:30.230013+0000 mon.smithi037 (mon.0) 474 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-02T06:52:31.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:30 smithi037 bash[18626]: audit 2024-04-02T06:52:30.230422+0000 mon.smithi052 (mon.1) 10 : audit 1 from='osd.0 [v2:172.21.15.52:6800/50716923,v1:172.21.15.52:6801/50716923]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-02T06:52:31.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:30 smithi037 bash[18626]: audit 2024-04-02T06:52:30.464984+0000 mon.smithi037 (mon.0) 475 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:52:31.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:30 smithi037 bash[18626]: audit 2024-04-02T06:52:30.745970+0000 mon.smithi037 (mon.0) 476 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:31.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:30 smithi037 bash[18626]: audit 2024-04-02T06:52:30.753487+0000 mon.smithi037 (mon.0) 477 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:31.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:30 smithi037 bash[18626]: audit 2024-04-02T06:52:30.754454+0000 mon.smithi037 (mon.0) 478 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-02T06:52:31.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:30 smithi037 bash[18626]: audit 2024-04-02T06:52:30.755189+0000 mon.smithi037 (mon.0) 479 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:30 smithi052 bash[25156]: cluster 2024-04-02T06:52:29.357273+0000 mgr.smithi037.yymbdj (mgr.14215) 109 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:30 smithi052 bash[25156]: audit 2024-04-02T06:52:30.230013+0000 mon.smithi037 (mon.0) 474 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-02T06:52:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:30 smithi052 bash[25156]: audit 2024-04-02T06:52:30.230422+0000 mon.smithi052 (mon.1) 10 : audit 1 from='osd.0 [v2:172.21.15.52:6800/50716923,v1:172.21.15.52:6801/50716923]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-02T06:52:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:30 smithi052 bash[25156]: audit 2024-04-02T06:52:30.464984+0000 mon.smithi037 (mon.0) 475 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:52:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:30 smithi052 bash[25156]: audit 2024-04-02T06:52:30.745970+0000 mon.smithi037 (mon.0) 476 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:30 smithi052 bash[25156]: audit 2024-04-02T06:52:30.753487+0000 mon.smithi037 (mon.0) 477 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:31.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:30 smithi052 bash[25156]: audit 2024-04-02T06:52:30.754454+0000 mon.smithi037 (mon.0) 478 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-02T06:52:31.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:30 smithi052 bash[25156]: audit 2024-04-02T06:52:30.755189+0000 mon.smithi037 (mon.0) 479 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: cephadm 2024-04-02T06:52:30.755813+0000 mgr.smithi037.yymbdj (mgr.14215) 110 : cephadm 1 Deploying daemon osd.5 on smithi037 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.900212+0000 mon.smithi037 (mon.0) 480 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.903466+0000 mon.smithi052 (mon.1) 11 : audit 1 from='osd.0 [v2:172.21.15.52:6800/50716923,v1:172.21.15.52:6801/50716923]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: cluster 2024-04-02T06:52:30.905292+0000 mon.smithi037 (mon.0) 481 : cluster 0 osdmap e14: 8 total, 0 up, 8 in 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.905695+0000 mon.smithi037 (mon.0) 482 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.906087+0000 mon.smithi037 (mon.0) 483 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.906437+0000 mon.smithi037 (mon.0) 484 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.906807+0000 mon.smithi037 (mon.0) 485 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.907065+0000 mon.smithi037 (mon.0) 486 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.907311+0000 mon.smithi037 (mon.0) 487 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.907571+0000 mon.smithi037 (mon.0) 488 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:32.020 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.907825+0000 mon.smithi037 (mon.0) 489 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:32.021 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:31 smithi052 bash[25156]: audit 2024-04-02T06:52:30.908078+0000 mon.smithi037 (mon.0) 490 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:32.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: cephadm 2024-04-02T06:52:30.755813+0000 mgr.smithi037.yymbdj (mgr.14215) 110 : cephadm 1 Deploying daemon osd.5 on smithi037 2024-04-02T06:52:32.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.900212+0000 mon.smithi037 (mon.0) 480 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.903466+0000 mon.smithi052 (mon.1) 11 : audit 1 from='osd.0 [v2:172.21.15.52:6800/50716923,v1:172.21.15.52:6801/50716923]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: cluster 2024-04-02T06:52:30.905292+0000 mon.smithi037 (mon.0) 481 : cluster 0 osdmap e14: 8 total, 0 up, 8 in 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.905695+0000 mon.smithi037 (mon.0) 482 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.906087+0000 mon.smithi037 (mon.0) 483 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.906437+0000 mon.smithi037 (mon.0) 484 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.906807+0000 mon.smithi037 (mon.0) 485 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.907065+0000 mon.smithi037 (mon.0) 486 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.907311+0000 mon.smithi037 (mon.0) 487 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.907571+0000 mon.smithi037 (mon.0) 488 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.907825+0000 mon.smithi037 (mon.0) 489 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:32.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:31 smithi037 bash[18626]: audit 2024-04-02T06:52:30.908078+0000 mon.smithi037 (mon.0) 490 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:32.944 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:32.944 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: cluster 2024-04-02T06:52:31.357625+0000 mgr.smithi037.yymbdj (mgr.14215) 111 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:32.944 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:31.902149+0000 mon.smithi037 (mon.0) 491 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-04-02T06:52:32.944 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: cluster 2024-04-02T06:52:31.907440+0000 mon.smithi037 (mon.0) 492 : cluster 0 osdmap e15: 8 total, 0 up, 8 in 2024-04-02T06:52:32.944 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:31.908330+0000 mon.smithi037 (mon.0) 493 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:32.944 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:31.908768+0000 mon.smithi037 (mon.0) 494 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:32.944 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:31.909325+0000 mon.smithi037 (mon.0) 495 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:32.945 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:31.909841+0000 mon.smithi037 (mon.0) 496 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:32.945 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:31.910262+0000 mon.smithi037 (mon.0) 497 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:32.945 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:31.910666+0000 mon.smithi037 (mon.0) 498 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:32.945 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:31.911013+0000 mon.smithi037 (mon.0) 499 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:32.945 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:31.911349+0000 mon.smithi037 (mon.0) 500 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:32.945 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:32.205595+0000 mon.smithi037 (mon.0) 501 : audit 1 from='osd.0 ' entity='osd.0' 2024-04-02T06:52:32.945 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:32.807838+0000 mon.smithi037 (mon.0) 502 : audit 1 from='osd.1 [v2:172.21.15.37:6802/1789102859,v1:172.21.15.37:6803/1789102859]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-02T06:52:32.945 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:32 smithi052 bash[25156]: audit 2024-04-02T06:52:32.908306+0000 mon.smithi037 (mon.0) 503 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:33.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: cluster 2024-04-02T06:52:31.357625+0000 mgr.smithi037.yymbdj (mgr.14215) 111 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:31.902149+0000 mon.smithi037 (mon.0) 491 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: cluster 2024-04-02T06:52:31.907440+0000 mon.smithi037 (mon.0) 492 : cluster 0 osdmap e15: 8 total, 0 up, 8 in 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:31.908330+0000 mon.smithi037 (mon.0) 493 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:31.908768+0000 mon.smithi037 (mon.0) 494 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:31.909325+0000 mon.smithi037 (mon.0) 495 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:31.909841+0000 mon.smithi037 (mon.0) 496 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:31.910262+0000 mon.smithi037 (mon.0) 497 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:31.910666+0000 mon.smithi037 (mon.0) 498 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:31.911013+0000 mon.smithi037 (mon.0) 499 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:31.911349+0000 mon.smithi037 (mon.0) 500 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:32.205595+0000 mon.smithi037 (mon.0) 501 : audit 1 from='osd.0 ' entity='osd.0' 2024-04-02T06:52:33.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:32.807838+0000 mon.smithi037 (mon.0) 502 : audit 1 from='osd.1 [v2:172.21.15.37:6802/1789102859,v1:172.21.15.37:6803/1789102859]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-02T06:52:33.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:32 smithi037 bash[18626]: audit 2024-04-02T06:52:32.908306+0000 mon.smithi037 (mon.0) 503 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:33.216 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:33 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:34.501 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: cluster 2024-04-02T06:52:31.198182+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:34.501 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: cluster 2024-04-02T06:52:31.198306+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:34.501 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.206175+0000 mon.smithi037 (mon.0) 504 : audit 1 from='osd.1 [v2:172.21.15.37:6802/1789102859,v1:172.21.15.37:6803/1789102859]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-02T06:52:34.501 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: cluster 2024-04-02T06:52:33.210835+0000 mon.smithi037 (mon.0) 505 : cluster 1 osd.0 [v2:172.21.15.52:6800/50716923,v1:172.21.15.52:6801/50716923] boot 2024-04-02T06:52:34.501 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: cluster 2024-04-02T06:52:33.210995+0000 mon.smithi037 (mon.0) 506 : cluster 0 osdmap e16: 8 total, 1 up, 8 in 2024-04-02T06:52:34.501 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.211740+0000 mon.smithi037 (mon.0) 507 : audit 1 from='osd.1 [v2:172.21.15.37:6802/1789102859,v1:172.21.15.37:6803/1789102859]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-02T06:52:34.501 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.212260+0000 mon.smithi037 (mon.0) 508 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.212833+0000 mon.smithi037 (mon.0) 509 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.213828+0000 mon.smithi037 (mon.0) 510 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.214215+0000 mon.smithi037 (mon.0) 511 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.214714+0000 mon.smithi037 (mon.0) 512 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.215145+0000 mon.smithi037 (mon.0) 513 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.215540+0000 mon.smithi037 (mon.0) 514 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.216054+0000 mon.smithi037 (mon.0) 515 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.266916+0000 mon.smithi037 (mon.0) 516 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.274782+0000 mon.smithi037 (mon.0) 517 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.276642+0000 mon.smithi037 (mon.0) 518 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: audit 2024-04-02T06:52:33.278032+0000 mon.smithi037 (mon.0) 519 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: cephadm 2024-04-02T06:52:33.279423+0000 mgr.smithi037.yymbdj (mgr.14215) 112 : cephadm 1 Deploying daemon osd.6 on smithi052 2024-04-02T06:52:34.502 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:34 smithi052 bash[25156]: cluster 2024-04-02T06:52:33.358020+0000 mgr.smithi037.yymbdj (mgr.14215) 113 : cluster 0 pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: cluster 2024-04-02T06:52:31.198182+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: cluster 2024-04-02T06:52:31.198306+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.206175+0000 mon.smithi037 (mon.0) 504 : audit 1 from='osd.1 [v2:172.21.15.37:6802/1789102859,v1:172.21.15.37:6803/1789102859]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-02T06:52:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: cluster 2024-04-02T06:52:33.210835+0000 mon.smithi037 (mon.0) 505 : cluster 1 osd.0 [v2:172.21.15.52:6800/50716923,v1:172.21.15.52:6801/50716923] boot 2024-04-02T06:52:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: cluster 2024-04-02T06:52:33.210995+0000 mon.smithi037 (mon.0) 506 : cluster 0 osdmap e16: 8 total, 1 up, 8 in 2024-04-02T06:52:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.211740+0000 mon.smithi037 (mon.0) 507 : audit 1 from='osd.1 [v2:172.21.15.37:6802/1789102859,v1:172.21.15.37:6803/1789102859]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-02T06:52:34.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.212260+0000 mon.smithi037 (mon.0) 508 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-02T06:52:34.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.212833+0000 mon.smithi037 (mon.0) 509 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:34.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.213828+0000 mon.smithi037 (mon.0) 510 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:34.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.214215+0000 mon.smithi037 (mon.0) 511 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:34.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.214714+0000 mon.smithi037 (mon.0) 512 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:34.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.215145+0000 mon.smithi037 (mon.0) 513 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:34.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.215540+0000 mon.smithi037 (mon.0) 514 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:34.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.216054+0000 mon.smithi037 (mon.0) 515 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:34.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.266916+0000 mon.smithi037 (mon.0) 516 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:34.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.274782+0000 mon.smithi037 (mon.0) 517 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:34.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.276642+0000 mon.smithi037 (mon.0) 518 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-04-02T06:52:34.557 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: audit 2024-04-02T06:52:33.278032+0000 mon.smithi037 (mon.0) 519 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:34.557 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: cephadm 2024-04-02T06:52:33.279423+0000 mgr.smithi037.yymbdj (mgr.14215) 112 : cephadm 1 Deploying daemon osd.6 on smithi052 2024-04-02T06:52:34.557 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:34 smithi037 bash[18626]: cluster 2024-04-02T06:52:33.358020+0000 mgr.smithi037.yymbdj (mgr.14215) 113 : cluster 0 pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-02T06:52:35.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 bash[18626]: audit 2024-04-02T06:52:34.208564+0000 mon.smithi037 (mon.0) 520 : audit 1 from='osd.1 [v2:172.21.15.37:6802/1789102859,v1:172.21.15.37:6803/1789102859]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-02T06:52:35.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 bash[18626]: cluster 2024-04-02T06:52:34.213668+0000 mon.smithi037 (mon.0) 521 : cluster 0 osdmap e17: 8 total, 1 up, 8 in 2024-04-02T06:52:35.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 bash[18626]: audit 2024-04-02T06:52:34.215030+0000 mon.smithi037 (mon.0) 522 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:35.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 bash[18626]: audit 2024-04-02T06:52:34.224356+0000 mon.smithi037 (mon.0) 523 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:35.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 bash[18626]: audit 2024-04-02T06:52:34.224753+0000 mon.smithi037 (mon.0) 524 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:35.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 bash[18626]: audit 2024-04-02T06:52:34.225044+0000 mon.smithi037 (mon.0) 525 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:35.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 bash[18626]: audit 2024-04-02T06:52:34.225606+0000 mon.smithi037 (mon.0) 526 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:35.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 bash[18626]: audit 2024-04-02T06:52:34.226176+0000 mon.smithi037 (mon.0) 527 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:35.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 bash[18626]: audit 2024-04-02T06:52:34.226573+0000 mon.smithi037 (mon.0) 528 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:35.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:35 smithi052 bash[25156]: audit 2024-04-02T06:52:34.208564+0000 mon.smithi037 (mon.0) 520 : audit 1 from='osd.1 [v2:172.21.15.37:6802/1789102859,v1:172.21.15.37:6803/1789102859]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-02T06:52:35.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:35 smithi052 bash[25156]: cluster 2024-04-02T06:52:34.213668+0000 mon.smithi037 (mon.0) 521 : cluster 0 osdmap e17: 8 total, 1 up, 8 in 2024-04-02T06:52:35.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:35 smithi052 bash[25156]: audit 2024-04-02T06:52:34.215030+0000 mon.smithi037 (mon.0) 522 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:35.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:35 smithi052 bash[25156]: audit 2024-04-02T06:52:34.224356+0000 mon.smithi037 (mon.0) 523 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:35.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:35 smithi052 bash[25156]: audit 2024-04-02T06:52:34.224753+0000 mon.smithi037 (mon.0) 524 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:35.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:35 smithi052 bash[25156]: audit 2024-04-02T06:52:34.225044+0000 mon.smithi037 (mon.0) 525 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:35.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:35 smithi052 bash[25156]: audit 2024-04-02T06:52:34.225606+0000 mon.smithi037 (mon.0) 526 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:35.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:35 smithi052 bash[25156]: audit 2024-04-02T06:52:34.226176+0000 mon.smithi037 (mon.0) 527 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:35.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:35 smithi052 bash[25156]: audit 2024-04-02T06:52:34.226573+0000 mon.smithi037 (mon.0) 528 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:35.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:35 smithi052 bash[25156]: audit 2024-04-02T06:52:34.226990+0000 mon.smithi037 (mon.0) 529 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:35.546 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 bash[18626]: audit 2024-04-02T06:52:34.226990+0000 mon.smithi037 (mon.0) 529 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:35.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:36.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:35 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:36.487 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: cluster 2024-04-02T06:52:33.780725+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:36.487 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: cluster 2024-04-02T06:52:33.780860+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:36.487 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: cluster 2024-04-02T06:52:35.222985+0000 mon.smithi037 (mon.0) 530 : cluster 1 osd.1 [v2:172.21.15.37:6802/1789102859,v1:172.21.15.37:6803/1789102859] boot 2024-04-02T06:52:36.487 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: cluster 2024-04-02T06:52:35.223072+0000 mon.smithi037 (mon.0) 531 : cluster 0 osdmap e18: 8 total, 2 up, 8 in 2024-04-02T06:52:36.487 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:35.223956+0000 mon.smithi037 (mon.0) 532 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:36.487 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:35.224615+0000 mon.smithi037 (mon.0) 533 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:36.487 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:35.231120+0000 mon.smithi037 (mon.0) 534 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:36.487 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:35.231355+0000 mon.smithi037 (mon.0) 535 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:36.487 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:35.231599+0000 mon.smithi037 (mon.0) 536 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:36.488 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:35.231817+0000 mon.smithi037 (mon.0) 537 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:36.488 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:35.232028+0000 mon.smithi037 (mon.0) 538 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:36.488 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: cluster 2024-04-02T06:52:35.358521+0000 mgr.smithi037.yymbdj (mgr.14215) 114 : cluster 0 pgmap v68: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-02T06:52:36.488 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:35.370601+0000 mon.smithi037 (mon.0) 539 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-02T06:52:36.488 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:35.371068+0000 mon.smithi052 (mon.1) 12 : audit 1 from='osd.2 [v2:172.21.15.52:6808/286255222,v1:172.21.15.52:6809/286255222]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-02T06:52:36.488 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:36.005218+0000 mon.smithi037 (mon.0) 540 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:36.488 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:36.011329+0000 mon.smithi037 (mon.0) 541 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:36.488 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:36.012338+0000 mon.smithi037 (mon.0) 542 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-04-02T06:52:36.488 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:36 smithi052 bash[25156]: audit 2024-04-02T06:52:36.013001+0000 mon.smithi037 (mon.0) 543 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:36.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: cluster 2024-04-02T06:52:33.780725+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:36.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: cluster 2024-04-02T06:52:33.780860+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: cluster 2024-04-02T06:52:35.222985+0000 mon.smithi037 (mon.0) 530 : cluster 1 osd.1 [v2:172.21.15.37:6802/1789102859,v1:172.21.15.37:6803/1789102859] boot 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: cluster 2024-04-02T06:52:35.223072+0000 mon.smithi037 (mon.0) 531 : cluster 0 osdmap e18: 8 total, 2 up, 8 in 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:35.223956+0000 mon.smithi037 (mon.0) 532 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:35.224615+0000 mon.smithi037 (mon.0) 533 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:35.231120+0000 mon.smithi037 (mon.0) 534 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:35.231355+0000 mon.smithi037 (mon.0) 535 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:35.231599+0000 mon.smithi037 (mon.0) 536 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:35.231817+0000 mon.smithi037 (mon.0) 537 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:35.232028+0000 mon.smithi037 (mon.0) 538 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: cluster 2024-04-02T06:52:35.358521+0000 mgr.smithi037.yymbdj (mgr.14215) 114 : cluster 0 pgmap v68: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:35.370601+0000 mon.smithi037 (mon.0) 539 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:35.371068+0000 mon.smithi052 (mon.1) 12 : audit 1 from='osd.2 [v2:172.21.15.52:6808/286255222,v1:172.21.15.52:6809/286255222]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:36.005218+0000 mon.smithi037 (mon.0) 540 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:36.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:36.011329+0000 mon.smithi037 (mon.0) 541 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:36.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:36.012338+0000 mon.smithi037 (mon.0) 542 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-04-02T06:52:36.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:36 smithi037 bash[18626]: audit 2024-04-02T06:52:36.013001+0000 mon.smithi037 (mon.0) 543 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:52:36.673 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:52:37.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: cephadm 2024-04-02T06:52:36.013574+0000 mgr.smithi037.yymbdj (mgr.14215) 115 : cephadm 1 Deploying daemon osd.7 on smithi037 2024-04-02T06:52:37.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: audit 2024-04-02T06:52:36.231074+0000 mon.smithi037 (mon.0) 544 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-02T06:52:37.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: cluster 2024-04-02T06:52:36.235635+0000 mon.smithi037 (mon.0) 545 : cluster 0 osdmap e19: 8 total, 2 up, 8 in 2024-04-02T06:52:37.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: audit 2024-04-02T06:52:36.236130+0000 mon.smithi037 (mon.0) 546 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:37.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: audit 2024-04-02T06:52:36.236385+0000 mon.smithi037 (mon.0) 547 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:37.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: audit 2024-04-02T06:52:36.236536+0000 mon.smithi037 (mon.0) 548 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:37.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: audit 2024-04-02T06:52:36.236670+0000 mon.smithi037 (mon.0) 549 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:37.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: audit 2024-04-02T06:52:36.236847+0000 mon.smithi037 (mon.0) 550 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:37.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: audit 2024-04-02T06:52:36.237329+0000 mon.smithi037 (mon.0) 551 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:37.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: audit 2024-04-02T06:52:36.239550+0000 mon.smithi037 (mon.0) 552 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:37.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:37 smithi037 bash[18626]: audit 2024-04-02T06:52:36.240116+0000 mon.smithi052 (mon.1) 13 : audit 1 from='osd.2 [v2:172.21.15.52:6808/286255222,v1:172.21.15.52:6809/286255222]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:37.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: cephadm 2024-04-02T06:52:36.013574+0000 mgr.smithi037.yymbdj (mgr.14215) 115 : cephadm 1 Deploying daemon osd.7 on smithi037 2024-04-02T06:52:37.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: audit 2024-04-02T06:52:36.231074+0000 mon.smithi037 (mon.0) 544 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-02T06:52:37.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: cluster 2024-04-02T06:52:36.235635+0000 mon.smithi037 (mon.0) 545 : cluster 0 osdmap e19: 8 total, 2 up, 8 in 2024-04-02T06:52:37.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: audit 2024-04-02T06:52:36.236130+0000 mon.smithi037 (mon.0) 546 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:37.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: audit 2024-04-02T06:52:36.236385+0000 mon.smithi037 (mon.0) 547 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:37.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: audit 2024-04-02T06:52:36.236536+0000 mon.smithi037 (mon.0) 548 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:37.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: audit 2024-04-02T06:52:36.236670+0000 mon.smithi037 (mon.0) 549 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:37.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: audit 2024-04-02T06:52:36.236847+0000 mon.smithi037 (mon.0) 550 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:37.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: audit 2024-04-02T06:52:36.237329+0000 mon.smithi037 (mon.0) 551 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:37.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: audit 2024-04-02T06:52:36.239550+0000 mon.smithi037 (mon.0) 552 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:37.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:37 smithi052 bash[25156]: audit 2024-04-02T06:52:36.240116+0000 mon.smithi052 (mon.1) 13 : audit 1 from='osd.2 [v2:172.21.15.52:6808/286255222,v1:172.21.15.52:6809/286255222]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:38.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:38 smithi037 bash[18626]: audit 2024-04-02T06:52:37.233642+0000 mon.smithi037 (mon.0) 553 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-04-02T06:52:38.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:38 smithi037 bash[18626]: cluster 2024-04-02T06:52:37.238820+0000 mon.smithi037 (mon.0) 554 : cluster 0 osdmap e20: 8 total, 2 up, 8 in 2024-04-02T06:52:38.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:38 smithi037 bash[18626]: audit 2024-04-02T06:52:37.239630+0000 mon.smithi037 (mon.0) 555 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:38.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:38 smithi037 bash[18626]: audit 2024-04-02T06:52:37.240193+0000 mon.smithi037 (mon.0) 556 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:38.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:38 smithi037 bash[18626]: audit 2024-04-02T06:52:37.248919+0000 mon.smithi037 (mon.0) 557 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:38.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:38 smithi037 bash[18626]: audit 2024-04-02T06:52:37.250374+0000 mon.smithi037 (mon.0) 558 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:38.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:38 smithi037 bash[18626]: audit 2024-04-02T06:52:37.250877+0000 mon.smithi037 (mon.0) 559 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:38.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:38 smithi037 bash[18626]: audit 2024-04-02T06:52:37.251331+0000 mon.smithi037 (mon.0) 560 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:38.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:38 smithi037 bash[18626]: audit 2024-04-02T06:52:37.251854+0000 mon.smithi037 (mon.0) 561 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:38.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:38 smithi037 bash[18626]: cluster 2024-04-02T06:52:37.359035+0000 mgr.smithi037.yymbdj (mgr.14215) 116 : cluster 0 pgmap v71: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 bash[25156]: audit 2024-04-02T06:52:37.233642+0000 mon.smithi037 (mon.0) 553 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 bash[25156]: cluster 2024-04-02T06:52:37.238820+0000 mon.smithi037 (mon.0) 554 : cluster 0 osdmap e20: 8 total, 2 up, 8 in 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 bash[25156]: audit 2024-04-02T06:52:37.239630+0000 mon.smithi037 (mon.0) 555 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 bash[25156]: audit 2024-04-02T06:52:37.240193+0000 mon.smithi037 (mon.0) 556 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 bash[25156]: audit 2024-04-02T06:52:37.248919+0000 mon.smithi037 (mon.0) 557 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 bash[25156]: audit 2024-04-02T06:52:37.250374+0000 mon.smithi037 (mon.0) 558 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 bash[25156]: audit 2024-04-02T06:52:37.250877+0000 mon.smithi037 (mon.0) 559 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 bash[25156]: audit 2024-04-02T06:52:37.251331+0000 mon.smithi037 (mon.0) 560 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 bash[25156]: audit 2024-04-02T06:52:37.251854+0000 mon.smithi037 (mon.0) 561 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:38.452 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 bash[25156]: cluster 2024-04-02T06:52:37.359035+0000 mgr.smithi037.yymbdj (mgr.14215) 116 : cluster 0 pgmap v71: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-02T06:52:38.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:38 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: cluster 2024-04-02T06:52:36.401774+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: cluster 2024-04-02T06:52:36.401910+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: cluster 2024-04-02T06:52:38.247714+0000 mon.smithi037 (mon.0) 562 : cluster 1 osd.2 [v2:172.21.15.52:6808/286255222,v1:172.21.15.52:6809/286255222] boot 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: cluster 2024-04-02T06:52:38.247826+0000 mon.smithi037 (mon.0) 563 : cluster 0 osdmap e21: 8 total, 3 up, 8 in 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: audit 2024-04-02T06:52:38.248409+0000 mon.smithi037 (mon.0) 564 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: audit 2024-04-02T06:52:38.248668+0000 mon.smithi037 (mon.0) 565 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: audit 2024-04-02T06:52:38.248796+0000 mon.smithi037 (mon.0) 566 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: audit 2024-04-02T06:52:38.248917+0000 mon.smithi037 (mon.0) 567 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: audit 2024-04-02T06:52:38.249040+0000 mon.smithi037 (mon.0) 568 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: audit 2024-04-02T06:52:38.249192+0000 mon.smithi037 (mon.0) 569 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:39.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: audit 2024-04-02T06:52:38.316158+0000 mon.smithi037 (mon.0) 570 : audit 1 from='osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-02T06:52:39.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: audit 2024-04-02T06:52:38.518805+0000 mon.smithi037 (mon.0) 571 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 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-04-02T06:52:39.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: audit 2024-04-02T06:52:38.982124+0000 mon.smithi037 (mon.0) 572 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:39.556 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:39 smithi037 bash[18626]: audit 2024-04-02T06:52:38.991531+0000 mon.smithi037 (mon.0) 573 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:39.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: cluster 2024-04-02T06:52:36.401774+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:39.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: cluster 2024-04-02T06:52:36.401910+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:39.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: cluster 2024-04-02T06:52:38.247714+0000 mon.smithi037 (mon.0) 562 : cluster 1 osd.2 [v2:172.21.15.52:6808/286255222,v1:172.21.15.52:6809/286255222] boot 2024-04-02T06:52:39.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: cluster 2024-04-02T06:52:38.247826+0000 mon.smithi037 (mon.0) 563 : cluster 0 osdmap e21: 8 total, 3 up, 8 in 2024-04-02T06:52:39.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: audit 2024-04-02T06:52:38.248409+0000 mon.smithi037 (mon.0) 564 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-02T06:52:39.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: audit 2024-04-02T06:52:38.248668+0000 mon.smithi037 (mon.0) 565 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:39.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: audit 2024-04-02T06:52:38.248796+0000 mon.smithi037 (mon.0) 566 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:39.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: audit 2024-04-02T06:52:38.248917+0000 mon.smithi037 (mon.0) 567 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:39.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: audit 2024-04-02T06:52:38.249040+0000 mon.smithi037 (mon.0) 568 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:39.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: audit 2024-04-02T06:52:38.249192+0000 mon.smithi037 (mon.0) 569 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:39.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: audit 2024-04-02T06:52:38.316158+0000 mon.smithi037 (mon.0) 570 : audit 1 from='osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-02T06:52:39.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: audit 2024-04-02T06:52:38.518805+0000 mon.smithi037 (mon.0) 571 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 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-04-02T06:52:39.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: audit 2024-04-02T06:52:38.982124+0000 mon.smithi037 (mon.0) 572 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:39.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:39 smithi052 bash[25156]: audit 2024-04-02T06:52:38.991531+0000 mon.smithi037 (mon.0) 573 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:40.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: audit 2024-04-02T06:52:39.251951+0000 mon.smithi037 (mon.0) 574 : audit 1 from='osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-02T06:52:40.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: audit 2024-04-02T06:52:39.252098+0000 mon.smithi037 (mon.0) 575 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 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-04-02T06:52:40.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: cluster 2024-04-02T06:52:39.256384+0000 mon.smithi037 (mon.0) 576 : cluster 0 osdmap e22: 8 total, 3 up, 8 in 2024-04-02T06:52:40.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: audit 2024-04-02T06:52:39.257404+0000 mon.smithi037 (mon.0) 577 : audit 1 from='osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-02T06:52:40.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: audit 2024-04-02T06:52:39.258302+0000 mon.smithi037 (mon.0) 578 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:40.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: audit 2024-04-02T06:52:39.264498+0000 mon.smithi037 (mon.0) 579 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:40.429 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: audit 2024-04-02T06:52:39.265317+0000 mon.smithi037 (mon.0) 580 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:40.429 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: audit 2024-04-02T06:52:39.265973+0000 mon.smithi037 (mon.0) 581 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:40.429 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: audit 2024-04-02T06:52:39.266581+0000 mon.smithi037 (mon.0) 582 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:40.429 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: audit 2024-04-02T06:52:39.267325+0000 mon.smithi037 (mon.0) 583 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-02T06:52:40.429 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: cluster 2024-04-02T06:52:39.359645+0000 mgr.smithi037.yymbdj (mgr.14215) 117 : cluster 0 pgmap v74: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-02T06:52:40.429 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:40 smithi052 bash[25156]: audit 2024-04-02T06:52:40.254716+0000 mon.smithi037 (mon.0) 584 : audit 1 from='osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-02T06:52:40.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: audit 2024-04-02T06:52:39.251951+0000 mon.smithi037 (mon.0) 574 : audit 1 from='osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-02T06:52:40.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: audit 2024-04-02T06:52:39.252098+0000 mon.smithi037 (mon.0) 575 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 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-04-02T06:52:40.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: cluster 2024-04-02T06:52:39.256384+0000 mon.smithi037 (mon.0) 576 : cluster 0 osdmap e22: 8 total, 3 up, 8 in 2024-04-02T06:52:40.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: audit 2024-04-02T06:52:39.257404+0000 mon.smithi037 (mon.0) 577 : audit 1 from='osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-02T06:52:40.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: audit 2024-04-02T06:52:39.258302+0000 mon.smithi037 (mon.0) 578 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:40.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: audit 2024-04-02T06:52:39.264498+0000 mon.smithi037 (mon.0) 579 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:40.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: audit 2024-04-02T06:52:39.265317+0000 mon.smithi037 (mon.0) 580 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:40.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: audit 2024-04-02T06:52:39.265973+0000 mon.smithi037 (mon.0) 581 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:40.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: audit 2024-04-02T06:52:39.266581+0000 mon.smithi037 (mon.0) 582 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:40.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: audit 2024-04-02T06:52:39.267325+0000 mon.smithi037 (mon.0) 583 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-02T06:52:40.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: cluster 2024-04-02T06:52:39.359645+0000 mgr.smithi037.yymbdj (mgr.14215) 117 : cluster 0 pgmap v74: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-02T06:52:40.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:40 smithi037 bash[18626]: audit 2024-04-02T06:52:40.254716+0000 mon.smithi037 (mon.0) 584 : audit 1 from='osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-02T06:52:41.127 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:52:41.448 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:40.254877+0000 mon.smithi037 (mon.0) 585 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: cluster 2024-04-02T06:52:40.260977+0000 mon.smithi037 (mon.0) 586 : cluster 0 osdmap e23: 8 total, 3 up, 8 in 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: cluster 2024-04-02T06:52:40.261327+0000 mon.smithi037 (mon.0) 587 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:40.270179+0000 mon.smithi037 (mon.0) 588 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:40.271329+0000 mon.smithi037 (mon.0) 589 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:40.272055+0000 mon.smithi037 (mon.0) 590 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:40.272678+0000 mon.smithi037 (mon.0) 591 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:40.273543+0000 mon.smithi037 (mon.0) 592 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:40.274197+0000 mon.smithi037 (mon.0) 593 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:40.745889+0000 mon.smithi037 (mon.0) 594 : audit 1 from='osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513]' entity='osd.3' 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:41.128224+0000 mon.smithi037 (mon.0) 595 : audit 0 from='client.? 172.21.15.37:0/976416211' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: cluster 2024-04-02T06:52:41.259897+0000 mon.smithi037 (mon.0) 596 : cluster 1 osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513] boot 2024-04-02T06:52:41.449 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: cluster 2024-04-02T06:52:41.259984+0000 mon.smithi037 (mon.0) 597 : cluster 0 osdmap e24: 8 total, 4 up, 8 in 2024-04-02T06:52:41.450 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:41.260182+0000 mon.smithi037 (mon.0) 598 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:41.450 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:41.260643+0000 mon.smithi037 (mon.0) 599 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:41.450 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:41.261010+0000 mon.smithi037 (mon.0) 600 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:41.450 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:41.261332+0000 mon.smithi037 (mon.0) 601 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:41.450 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:41 smithi037 bash[18626]: audit 2024-04-02T06:52:41.261632+0000 mon.smithi037 (mon.0) 602 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:41.540 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:40.254877+0000 mon.smithi037 (mon.0) 585 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: cluster 2024-04-02T06:52:40.260977+0000 mon.smithi037 (mon.0) 586 : cluster 0 osdmap e23: 8 total, 3 up, 8 in 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: cluster 2024-04-02T06:52:40.261327+0000 mon.smithi037 (mon.0) 587 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:40.270179+0000 mon.smithi037 (mon.0) 588 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:40.271329+0000 mon.smithi037 (mon.0) 589 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:40.272055+0000 mon.smithi037 (mon.0) 590 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:40.272678+0000 mon.smithi037 (mon.0) 591 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:40.273543+0000 mon.smithi037 (mon.0) 592 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:40.274197+0000 mon.smithi037 (mon.0) 593 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:40.745889+0000 mon.smithi037 (mon.0) 594 : audit 1 from='osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513]' entity='osd.3' 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:41.128224+0000 mon.smithi037 (mon.0) 595 : audit 0 from='client.? 172.21.15.37:0/976416211' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: cluster 2024-04-02T06:52:41.259897+0000 mon.smithi037 (mon.0) 596 : cluster 1 osd.3 [v2:172.21.15.37:6810/2024787513,v1:172.21.15.37:6811/2024787513] boot 2024-04-02T06:52:41.541 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: cluster 2024-04-02T06:52:41.259984+0000 mon.smithi037 (mon.0) 597 : cluster 0 osdmap e24: 8 total, 4 up, 8 in 2024-04-02T06:52:41.542 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:41.260182+0000 mon.smithi037 (mon.0) 598 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-02T06:52:41.542 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:41.260643+0000 mon.smithi037 (mon.0) 599 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:41.542 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:41.261010+0000 mon.smithi037 (mon.0) 600 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:41.542 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:41.261332+0000 mon.smithi037 (mon.0) 601 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:41.542 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:41 smithi052 bash[25156]: audit 2024-04-02T06:52:41.261632+0000 mon.smithi037 (mon.0) 602 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:42.065 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":23,"num_osds":8,"num_up_osds":3,"osd_up_since":1712040758,"num_in_osds":8,"osd_in_since":1712040726,"num_remapped_pgs":0} 2024-04-02T06:52:42.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:42.380 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: cluster 2024-04-02T06:52:39.325595+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:42.380 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: cluster 2024-04-02T06:52:39.325706+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:42.380 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: cluster 2024-04-02T06:52:41.360180+0000 mgr.smithi037.yymbdj (mgr.14215) 118 : cluster 0 pgmap v77: 1 pgs: 1 creating; 0 B data, 110 MiB used, 357 GiB / 358 GiB avail 2024-04-02T06:52:42.380 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: audit 2024-04-02T06:52:41.547084+0000 mon.smithi037 (mon.0) 603 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-02T06:52:42.380 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: audit 2024-04-02T06:52:41.547517+0000 mon.smithi052 (mon.1) 14 : audit 1 from='osd.4 [v2:172.21.15.52:6816/409993662,v1:172.21.15.52:6817/409993662]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-02T06:52:42.380 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: audit 2024-04-02T06:52:42.188923+0000 mon.smithi037 (mon.0) 604 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-02T06:52:42.380 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: audit 2024-04-02T06:52:42.194718+0000 mon.smithi052 (mon.1) 15 : audit 1 from='osd.4 [v2:172.21.15.52:6816/409993662,v1:172.21.15.52:6817/409993662]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:42.380 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: cluster 2024-04-02T06:52:42.194801+0000 mon.smithi037 (mon.0) 605 : cluster 0 osdmap e25: 8 total, 4 up, 8 in 2024-04-02T06:52:42.380 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: audit 2024-04-02T06:52:42.195394+0000 mon.smithi037 (mon.0) 606 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:42.381 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: audit 2024-04-02T06:52:42.196095+0000 mon.smithi037 (mon.0) 607 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:42.381 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: audit 2024-04-02T06:52:42.196595+0000 mon.smithi037 (mon.0) 608 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:42.381 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: audit 2024-04-02T06:52:42.197092+0000 mon.smithi037 (mon.0) 609 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:42.381 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 bash[18626]: audit 2024-04-02T06:52:42.197438+0000 mon.smithi037 (mon.0) 610 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: cluster 2024-04-02T06:52:39.325595+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: cluster 2024-04-02T06:52:39.325706+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: cluster 2024-04-02T06:52:41.360180+0000 mgr.smithi037.yymbdj (mgr.14215) 118 : cluster 0 pgmap v77: 1 pgs: 1 creating; 0 B data, 110 MiB used, 357 GiB / 358 GiB avail 2024-04-02T06:52:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: audit 2024-04-02T06:52:41.547084+0000 mon.smithi037 (mon.0) 603 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-02T06:52:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: audit 2024-04-02T06:52:41.547517+0000 mon.smithi052 (mon.1) 14 : audit 1 from='osd.4 [v2:172.21.15.52:6816/409993662,v1:172.21.15.52:6817/409993662]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-02T06:52:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: audit 2024-04-02T06:52:42.188923+0000 mon.smithi037 (mon.0) 604 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-02T06:52:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: audit 2024-04-02T06:52:42.194718+0000 mon.smithi052 (mon.1) 15 : audit 1 from='osd.4 [v2:172.21.15.52:6816/409993662,v1:172.21.15.52:6817/409993662]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: cluster 2024-04-02T06:52:42.194801+0000 mon.smithi037 (mon.0) 605 : cluster 0 osdmap e25: 8 total, 4 up, 8 in 2024-04-02T06:52:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: audit 2024-04-02T06:52:42.195394+0000 mon.smithi037 (mon.0) 606 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:42.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: audit 2024-04-02T06:52:42.196095+0000 mon.smithi037 (mon.0) 607 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:42.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: audit 2024-04-02T06:52:42.196595+0000 mon.smithi037 (mon.0) 608 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:42.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: audit 2024-04-02T06:52:42.197092+0000 mon.smithi037 (mon.0) 609 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:42.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:42 smithi052 bash[25156]: audit 2024-04-02T06:52:42.197438+0000 mon.smithi037 (mon.0) 610 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:42.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:42 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:52:43.067 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-04-02T06:52:43.328 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: cluster 2024-04-02T06:52:42.277025+0000 mon.smithi037 (mon.0) 611 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-02T06:52:43.328 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: cluster 2024-04-02T06:52:42.277126+0000 mon.smithi037 (mon.0) 612 : cluster 1 Cluster is now healthy 2024-04-02T06:52:43.328 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: audit 2024-04-02T06:52:42.564189+0000 mon.smithi037 (mon.0) 613 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:43.328 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: audit 2024-04-02T06:52:42.569827+0000 mon.smithi037 (mon.0) 614 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:43.328 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: audit 2024-04-02T06:52:43.191214+0000 mon.smithi037 (mon.0) 615 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-04-02T06:52:43.328 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: cluster 2024-04-02T06:52:43.196297+0000 mon.smithi037 (mon.0) 616 : cluster 0 osdmap e26: 8 total, 4 up, 8 in 2024-04-02T06:52:43.329 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: audit 2024-04-02T06:52:43.196741+0000 mon.smithi037 (mon.0) 617 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:43.329 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: audit 2024-04-02T06:52:43.197285+0000 mon.smithi037 (mon.0) 618 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:43.329 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: audit 2024-04-02T06:52:43.197573+0000 mon.smithi037 (mon.0) 619 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:43.329 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: audit 2024-04-02T06:52:43.198284+0000 mon.smithi037 (mon.0) 620 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:43.329 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:43 smithi037 bash[18626]: audit 2024-04-02T06:52:43.205116+0000 mon.smithi037 (mon.0) 621 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:43.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: cluster 2024-04-02T06:52:42.277025+0000 mon.smithi037 (mon.0) 611 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-02T06:52:43.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: cluster 2024-04-02T06:52:42.277126+0000 mon.smithi037 (mon.0) 612 : cluster 1 Cluster is now healthy 2024-04-02T06:52:43.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: audit 2024-04-02T06:52:42.564189+0000 mon.smithi037 (mon.0) 613 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:43.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: audit 2024-04-02T06:52:42.569827+0000 mon.smithi037 (mon.0) 614 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:43.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: audit 2024-04-02T06:52:43.191214+0000 mon.smithi037 (mon.0) 615 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-04-02T06:52:43.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: cluster 2024-04-02T06:52:43.196297+0000 mon.smithi037 (mon.0) 616 : cluster 0 osdmap e26: 8 total, 4 up, 8 in 2024-04-02T06:52:43.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: audit 2024-04-02T06:52:43.196741+0000 mon.smithi037 (mon.0) 617 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:43.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: audit 2024-04-02T06:52:43.197285+0000 mon.smithi037 (mon.0) 618 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:43.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: audit 2024-04-02T06:52:43.197573+0000 mon.smithi037 (mon.0) 619 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:43.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: audit 2024-04-02T06:52:43.198284+0000 mon.smithi037 (mon.0) 620 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:43.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:43 smithi052 bash[25156]: audit 2024-04-02T06:52:43.205116+0000 mon.smithi037 (mon.0) 621 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:44.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:44 smithi037 bash[18626]: cluster 2024-04-02T06:52:43.360528+0000 mgr.smithi037.yymbdj (mgr.14215) 119 : cluster 0 pgmap v80: 1 pgs: 1 creating; 0 B data, 110 MiB used, 357 GiB / 358 GiB avail 2024-04-02T06:52:44.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:44 smithi037 bash[18626]: cluster 2024-04-02T06:52:44.195236+0000 mon.smithi037 (mon.0) 622 : cluster 1 osd.4 [v2:172.21.15.52:6816/409993662,v1:172.21.15.52:6817/409993662] boot 2024-04-02T06:52:44.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:44 smithi037 bash[18626]: cluster 2024-04-02T06:52:44.195280+0000 mon.smithi037 (mon.0) 623 : cluster 0 osdmap e27: 8 total, 5 up, 8 in 2024-04-02T06:52:44.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:44 smithi037 bash[18626]: audit 2024-04-02T06:52:44.195417+0000 mon.smithi037 (mon.0) 624 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:44.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:44 smithi037 bash[18626]: audit 2024-04-02T06:52:44.195791+0000 mon.smithi037 (mon.0) 625 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:44.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:44 smithi037 bash[18626]: audit 2024-04-02T06:52:44.196017+0000 mon.smithi037 (mon.0) 626 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:44.308 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:44 smithi037 bash[18626]: audit 2024-04-02T06:52:44.196228+0000 mon.smithi037 (mon.0) 627 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:44.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:44 smithi052 bash[25156]: cluster 2024-04-02T06:52:43.360528+0000 mgr.smithi037.yymbdj (mgr.14215) 119 : cluster 0 pgmap v80: 1 pgs: 1 creating; 0 B data, 110 MiB used, 357 GiB / 358 GiB avail 2024-04-02T06:52:44.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:44 smithi052 bash[25156]: cluster 2024-04-02T06:52:44.195236+0000 mon.smithi037 (mon.0) 622 : cluster 1 osd.4 [v2:172.21.15.52:6816/409993662,v1:172.21.15.52:6817/409993662] boot 2024-04-02T06:52:44.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:44 smithi052 bash[25156]: cluster 2024-04-02T06:52:44.195280+0000 mon.smithi037 (mon.0) 623 : cluster 0 osdmap e27: 8 total, 5 up, 8 in 2024-04-02T06:52:44.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:44 smithi052 bash[25156]: audit 2024-04-02T06:52:44.195417+0000 mon.smithi037 (mon.0) 624 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-02T06:52:44.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:44 smithi052 bash[25156]: audit 2024-04-02T06:52:44.195791+0000 mon.smithi037 (mon.0) 625 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:44.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:44 smithi052 bash[25156]: audit 2024-04-02T06:52:44.196017+0000 mon.smithi037 (mon.0) 626 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:44.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:44 smithi052 bash[25156]: audit 2024-04-02T06:52:44.196228+0000 mon.smithi037 (mon.0) 627 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:45 smithi052 bash[25156]: cluster 2024-04-02T06:52:42.585629+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:45 smithi052 bash[25156]: cluster 2024-04-02T06:52:42.585727+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:45 smithi052 bash[25156]: audit 2024-04-02T06:52:44.572281+0000 mon.smithi037 (mon.0) 628 : audit 1 from='osd.5 [v2:172.21.15.37:6818/331039701,v1:172.21.15.37:6819/331039701]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-02T06:52:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:45 smithi052 bash[25156]: audit 2024-04-02T06:52:45.105483+0000 mon.smithi037 (mon.0) 629 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-04-02T06:52:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:45 smithi052 bash[25156]: audit 2024-04-02T06:52:45.105815+0000 mon.smithi052 (mon.1) 16 : audit 1 from='osd.6 [v2:172.21.15.52:6824/1677581049,v1:172.21.15.52:6825/1677581049]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-04-02T06:52:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:45 smithi052 bash[25156]: audit 2024-04-02T06:52:45.197094+0000 mon.smithi037 (mon.0) 630 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:45.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:45 smithi037 bash[18626]: cluster 2024-04-02T06:52:42.585629+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:45.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:45 smithi037 bash[18626]: cluster 2024-04-02T06:52:42.585727+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:45.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:45 smithi037 bash[18626]: audit 2024-04-02T06:52:44.572281+0000 mon.smithi037 (mon.0) 628 : audit 1 from='osd.5 [v2:172.21.15.37:6818/331039701,v1:172.21.15.37:6819/331039701]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-02T06:52:45.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:45 smithi037 bash[18626]: audit 2024-04-02T06:52:45.105483+0000 mon.smithi037 (mon.0) 629 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-04-02T06:52:45.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:45 smithi037 bash[18626]: audit 2024-04-02T06:52:45.105815+0000 mon.smithi052 (mon.1) 16 : audit 1 from='osd.6 [v2:172.21.15.52:6824/1677581049,v1:172.21.15.52:6825/1677581049]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-04-02T06:52:45.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:45 smithi037 bash[18626]: audit 2024-04-02T06:52:45.197094+0000 mon.smithi037 (mon.0) 630 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:46.543 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: audit 2024-04-02T06:52:45.303071+0000 mon.smithi037 (mon.0) 631 : audit 1 from='osd.5 [v2:172.21.15.37:6818/331039701,v1:172.21.15.37:6819/331039701]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-02T06:52:46.543 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: audit 2024-04-02T06:52:45.303235+0000 mon.smithi037 (mon.0) 632 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-04-02T06:52:46.543 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: cluster 2024-04-02T06:52:45.308021+0000 mon.smithi037 (mon.0) 633 : cluster 0 osdmap e28: 8 total, 5 up, 8 in 2024-04-02T06:52:46.543 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: audit 2024-04-02T06:52:45.308621+0000 mon.smithi037 (mon.0) 634 : audit 1 from='osd.5 [v2:172.21.15.37:6818/331039701,v1:172.21.15.37:6819/331039701]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-02T06:52:46.543 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: audit 2024-04-02T06:52:45.309157+0000 mon.smithi037 (mon.0) 635 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:46.544 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: audit 2024-04-02T06:52:45.309558+0000 mon.smithi037 (mon.0) 636 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:46.544 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: audit 2024-04-02T06:52:45.310015+0000 mon.smithi037 (mon.0) 637 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:46.544 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: audit 2024-04-02T06:52:45.310206+0000 mon.smithi052 (mon.1) 17 : audit 1 from='osd.6 [v2:172.21.15.52:6824/1677581049,v1:172.21.15.52:6825/1677581049]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:46.544 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: audit 2024-04-02T06:52:45.310450+0000 mon.smithi037 (mon.0) 638 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:46.544 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: cluster 2024-04-02T06:52:45.360953+0000 mgr.smithi037.yymbdj (mgr.14215) 120 : cluster 0 pgmap v83: 1 pgs: 1 creating; 0 B data, 137 MiB used, 447 GiB / 447 GiB avail 2024-04-02T06:52:46.544 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: audit 2024-04-02T06:52:45.464954+0000 mon.smithi037 (mon.0) 639 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:52:46.544 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:46 smithi052 bash[25156]: audit 2024-04-02T06:52:46.186408+0000 mon.smithi037 (mon.0) 640 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: audit 2024-04-02T06:52:45.303071+0000 mon.smithi037 (mon.0) 631 : audit 1 from='osd.5 [v2:172.21.15.37:6818/331039701,v1:172.21.15.37:6819/331039701]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: audit 2024-04-02T06:52:45.303235+0000 mon.smithi037 (mon.0) 632 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: cluster 2024-04-02T06:52:45.308021+0000 mon.smithi037 (mon.0) 633 : cluster 0 osdmap e28: 8 total, 5 up, 8 in 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: audit 2024-04-02T06:52:45.308621+0000 mon.smithi037 (mon.0) 634 : audit 1 from='osd.5 [v2:172.21.15.37:6818/331039701,v1:172.21.15.37:6819/331039701]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: audit 2024-04-02T06:52:45.309157+0000 mon.smithi037 (mon.0) 635 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: audit 2024-04-02T06:52:45.309558+0000 mon.smithi037 (mon.0) 636 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: audit 2024-04-02T06:52:45.310015+0000 mon.smithi037 (mon.0) 637 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: audit 2024-04-02T06:52:45.310206+0000 mon.smithi052 (mon.1) 17 : audit 1 from='osd.6 [v2:172.21.15.52:6824/1677581049,v1:172.21.15.52:6825/1677581049]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: audit 2024-04-02T06:52:45.310450+0000 mon.smithi037 (mon.0) 638 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]: dispatch 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: cluster 2024-04-02T06:52:45.360953+0000 mgr.smithi037.yymbdj (mgr.14215) 120 : cluster 0 pgmap v83: 1 pgs: 1 creating; 0 B data, 137 MiB used, 447 GiB / 447 GiB avail 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: audit 2024-04-02T06:52:45.464954+0000 mon.smithi037 (mon.0) 639 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:52:46.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:46 smithi037 bash[18626]: audit 2024-04-02T06:52:46.186408+0000 mon.smithi037 (mon.0) 640 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:47.539 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:52:47.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: audit 2024-04-02T06:52:46.304796+0000 mon.smithi037 (mon.0) 641 : audit 1 from='osd.5 [v2:172.21.15.37:6818/331039701,v1:172.21.15.37:6819/331039701]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-02T06:52:47.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: audit 2024-04-02T06:52:46.304978+0000 mon.smithi037 (mon.0) 642 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-04-02T06:52:47.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: cluster 2024-04-02T06:52:46.309044+0000 mon.smithi037 (mon.0) 643 : cluster 0 osdmap e29: 8 total, 5 up, 8 in 2024-04-02T06:52:47.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: audit 2024-04-02T06:52:46.310360+0000 mon.smithi037 (mon.0) 644 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:47.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: audit 2024-04-02T06:52:46.310550+0000 mon.smithi037 (mon.0) 645 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:47.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: audit 2024-04-02T06:52:46.310676+0000 mon.smithi037 (mon.0) 646 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:47.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: audit 2024-04-02T06:52:46.313626+0000 mon.smithi037 (mon.0) 647 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:47.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: cluster 2024-04-02T06:52:46.323693+0000 mon.smithi037 (mon.0) 648 : cluster 0 mgrmap e19: smithi037.yymbdj(active, since 2m), standbys: smithi052.hwhbeq 2024-04-02T06:52:47.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: audit 2024-04-02T06:52:46.657558+0000 mon.smithi037 (mon.0) 649 : audit 1 from='osd.6 ' entity='osd.6' 2024-04-02T06:52:47.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: audit 2024-04-02T06:52:47.182412+0000 mon.smithi037 (mon.0) 650 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:47.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:47 smithi052 bash[25156]: audit 2024-04-02T06:52:47.312096+0000 mon.smithi037 (mon.0) 651 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: audit 2024-04-02T06:52:46.304796+0000 mon.smithi037 (mon.0) 641 : audit 1 from='osd.5 [v2:172.21.15.37:6818/331039701,v1:172.21.15.37:6819/331039701]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: audit 2024-04-02T06:52:46.304978+0000 mon.smithi037 (mon.0) 642 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: cluster 2024-04-02T06:52:46.309044+0000 mon.smithi037 (mon.0) 643 : cluster 0 osdmap e29: 8 total, 5 up, 8 in 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: audit 2024-04-02T06:52:46.310360+0000 mon.smithi037 (mon.0) 644 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: audit 2024-04-02T06:52:46.310550+0000 mon.smithi037 (mon.0) 645 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: audit 2024-04-02T06:52:46.310676+0000 mon.smithi037 (mon.0) 646 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: audit 2024-04-02T06:52:46.313626+0000 mon.smithi037 (mon.0) 647 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: cluster 2024-04-02T06:52:46.323693+0000 mon.smithi037 (mon.0) 648 : cluster 0 mgrmap e19: smithi037.yymbdj(active, since 2m), standbys: smithi052.hwhbeq 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: audit 2024-04-02T06:52:46.657558+0000 mon.smithi037 (mon.0) 649 : audit 1 from='osd.6 ' entity='osd.6' 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: audit 2024-04-02T06:52:47.182412+0000 mon.smithi037 (mon.0) 650 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:47.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:47 smithi037 bash[18626]: audit 2024-04-02T06:52:47.312096+0000 mon.smithi037 (mon.0) 651 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:48.577 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: cluster 2024-04-02T06:52:45.538228+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: cluster 2024-04-02T06:52:45.538313+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: cluster 2024-04-02T06:52:46.075890+0000 osd.6 (osd.6) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: cluster 2024-04-02T06:52:46.075982+0000 osd.6 (osd.6) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: audit 2024-04-02T06:52:47.314155+0000 mon.smithi037 (mon.0) 652 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: cluster 2024-04-02T06:52:47.327652+0000 mon.smithi037 (mon.0) 653 : cluster 1 osd.5 [v2:172.21.15.37:6818/331039701,v1:172.21.15.37:6819/331039701] boot 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: cluster 2024-04-02T06:52:47.327751+0000 mon.smithi037 (mon.0) 654 : cluster 1 osd.6 [v2:172.21.15.52:6824/1677581049,v1:172.21.15.52:6825/1677581049] boot 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: cluster 2024-04-02T06:52:47.327819+0000 mon.smithi037 (mon.0) 655 : cluster 0 osdmap e30: 8 total, 7 up, 8 in 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: audit 2024-04-02T06:52:47.328986+0000 mon.smithi037 (mon.0) 656 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: audit 2024-04-02T06:52:47.329915+0000 mon.smithi037 (mon.0) 657 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: audit 2024-04-02T06:52:47.330259+0000 mon.smithi037 (mon.0) 658 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:48.578 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: cluster 2024-04-02T06:52:47.361598+0000 mgr.smithi037.yymbdj (mgr.14215) 121 : cluster 0 pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-02T06:52:48.579 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:48 smithi037 bash[18626]: audit 2024-04-02T06:52:48.143786+0000 mon.smithi037 (mon.0) 659 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:48.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: cluster 2024-04-02T06:52:45.538228+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:48.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: cluster 2024-04-02T06:52:45.538313+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:48.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: cluster 2024-04-02T06:52:46.075890+0000 osd.6 (osd.6) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:48.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: cluster 2024-04-02T06:52:46.075982+0000 osd.6 (osd.6) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:48.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: audit 2024-04-02T06:52:47.314155+0000 mon.smithi037 (mon.0) 652 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:48.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: cluster 2024-04-02T06:52:47.327652+0000 mon.smithi037 (mon.0) 653 : cluster 1 osd.5 [v2:172.21.15.37:6818/331039701,v1:172.21.15.37:6819/331039701] boot 2024-04-02T06:52:48.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: cluster 2024-04-02T06:52:47.327751+0000 mon.smithi037 (mon.0) 654 : cluster 1 osd.6 [v2:172.21.15.52:6824/1677581049,v1:172.21.15.52:6825/1677581049] boot 2024-04-02T06:52:48.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: cluster 2024-04-02T06:52:47.327819+0000 mon.smithi037 (mon.0) 655 : cluster 0 osdmap e30: 8 total, 7 up, 8 in 2024-04-02T06:52:48.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: audit 2024-04-02T06:52:47.328986+0000 mon.smithi037 (mon.0) 656 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-02T06:52:48.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: audit 2024-04-02T06:52:47.329915+0000 mon.smithi037 (mon.0) 657 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-02T06:52:48.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: audit 2024-04-02T06:52:47.330259+0000 mon.smithi037 (mon.0) 658 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:48.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: cluster 2024-04-02T06:52:47.361598+0000 mgr.smithi037.yymbdj (mgr.14215) 121 : cluster 0 pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-02T06:52:48.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:48 smithi052 bash[25156]: audit 2024-04-02T06:52:48.143786+0000 mon.smithi037 (mon.0) 659 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:49.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:49 smithi037 bash[18626]: cluster 2024-04-02T06:52:48.335050+0000 mon.smithi037 (mon.0) 660 : cluster 0 osdmap e31: 8 total, 7 up, 8 in 2024-04-02T06:52:49.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:49 smithi037 bash[18626]: audit 2024-04-02T06:52:48.335331+0000 mon.smithi037 (mon.0) 661 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:49.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:49 smithi037 bash[18626]: audit 2024-04-02T06:52:48.987188+0000 mon.smithi037 (mon.0) 662 : audit 1 from='osd.7 [v2:172.21.15.37:6826/3852816081,v1:172.21.15.37:6827/3852816081]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-04-02T06:52:49.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:49 smithi037 bash[18626]: audit 2024-04-02T06:52:48.994199+0000 mon.smithi037 (mon.0) 663 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:49.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:49 smithi037 bash[18626]: audit 2024-04-02T06:52:48.998924+0000 mon.smithi037 (mon.0) 664 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:49.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:49 smithi037 bash[18626]: audit 2024-04-02T06:52:49.130211+0000 mon.smithi037 (mon.0) 665 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:49.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:49 smithi052 bash[25156]: cluster 2024-04-02T06:52:48.335050+0000 mon.smithi037 (mon.0) 660 : cluster 0 osdmap e31: 8 total, 7 up, 8 in 2024-04-02T06:52:49.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:49 smithi052 bash[25156]: audit 2024-04-02T06:52:48.335331+0000 mon.smithi037 (mon.0) 661 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:49.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:49 smithi052 bash[25156]: audit 2024-04-02T06:52:48.987188+0000 mon.smithi037 (mon.0) 662 : audit 1 from='osd.7 [v2:172.21.15.37:6826/3852816081,v1:172.21.15.37:6827/3852816081]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-04-02T06:52:49.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:49 smithi052 bash[25156]: audit 2024-04-02T06:52:48.994199+0000 mon.smithi037 (mon.0) 663 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:49.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:49 smithi052 bash[25156]: audit 2024-04-02T06:52:48.998924+0000 mon.smithi037 (mon.0) 664 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:49.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:49 smithi052 bash[25156]: audit 2024-04-02T06:52:49.130211+0000 mon.smithi037 (mon.0) 665 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:50.625 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:50 smithi037 bash[18626]: audit 2024-04-02T06:52:49.334740+0000 mon.smithi037 (mon.0) 666 : audit 1 from='osd.7 [v2:172.21.15.37:6826/3852816081,v1:172.21.15.37:6827/3852816081]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-04-02T06:52:50.625 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:50 smithi037 bash[18626]: cluster 2024-04-02T06:52:49.341368+0000 mon.smithi037 (mon.0) 667 : cluster 0 osdmap e32: 8 total, 7 up, 8 in 2024-04-02T06:52:50.626 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:50 smithi037 bash[18626]: audit 2024-04-02T06:52:49.342270+0000 mon.smithi037 (mon.0) 668 : audit 1 from='osd.7 [v2:172.21.15.37:6826/3852816081,v1:172.21.15.37:6827/3852816081]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-02T06:52:50.626 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:50 smithi037 bash[18626]: audit 2024-04-02T06:52:49.342875+0000 mon.smithi037 (mon.0) 669 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:50.626 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:50 smithi037 bash[18626]: cluster 2024-04-02T06:52:49.362152+0000 mgr.smithi037.yymbdj (mgr.14215) 122 : cluster 0 pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 202 MiB used, 626 GiB / 626 GiB avail 2024-04-02T06:52:50.626 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:50 smithi037 bash[18626]: audit 2024-04-02T06:52:50.116246+0000 mon.smithi037 (mon.0) 670 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:50.626 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:50 smithi037 bash[18626]: audit 2024-04-02T06:52:50.336982+0000 mon.smithi037 (mon.0) 671 : audit 1 from='osd.7 [v2:172.21.15.37:6826/3852816081,v1:172.21.15.37:6827/3852816081]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-02T06:52:50.626 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:50 smithi037 bash[18626]: cluster 2024-04-02T06:52:50.342598+0000 mon.smithi037 (mon.0) 672 : cluster 0 osdmap e33: 8 total, 7 up, 8 in 2024-04-02T06:52:50.626 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:50 smithi037 bash[18626]: audit 2024-04-02T06:52:50.343768+0000 mon.smithi037 (mon.0) 673 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:50.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:50 smithi052 bash[25156]: audit 2024-04-02T06:52:49.334740+0000 mon.smithi037 (mon.0) 666 : audit 1 from='osd.7 [v2:172.21.15.37:6826/3852816081,v1:172.21.15.37:6827/3852816081]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-04-02T06:52:50.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:50 smithi052 bash[25156]: cluster 2024-04-02T06:52:49.341368+0000 mon.smithi037 (mon.0) 667 : cluster 0 osdmap e32: 8 total, 7 up, 8 in 2024-04-02T06:52:50.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:50 smithi052 bash[25156]: audit 2024-04-02T06:52:49.342270+0000 mon.smithi037 (mon.0) 668 : audit 1 from='osd.7 [v2:172.21.15.37:6826/3852816081,v1:172.21.15.37:6827/3852816081]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-02T06:52:50.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:50 smithi052 bash[25156]: audit 2024-04-02T06:52:49.342875+0000 mon.smithi037 (mon.0) 669 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:50.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:50 smithi052 bash[25156]: cluster 2024-04-02T06:52:49.362152+0000 mgr.smithi037.yymbdj (mgr.14215) 122 : cluster 0 pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 202 MiB used, 626 GiB / 626 GiB avail 2024-04-02T06:52:50.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:50 smithi052 bash[25156]: audit 2024-04-02T06:52:50.116246+0000 mon.smithi037 (mon.0) 670 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:50.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:50 smithi052 bash[25156]: audit 2024-04-02T06:52:50.336982+0000 mon.smithi037 (mon.0) 671 : audit 1 from='osd.7 [v2:172.21.15.37:6826/3852816081,v1:172.21.15.37:6827/3852816081]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-02T06:52:50.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:50 smithi052 bash[25156]: cluster 2024-04-02T06:52:50.342598+0000 mon.smithi037 (mon.0) 672 : cluster 0 osdmap e33: 8 total, 7 up, 8 in 2024-04-02T06:52:50.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:50 smithi052 bash[25156]: audit 2024-04-02T06:52:50.343768+0000 mon.smithi037 (mon.0) 673 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:51.020 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:52:51.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:51 smithi052 bash[25156]: audit 2024-04-02T06:52:50.358308+0000 mon.smithi037 (mon.0) 674 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:51.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:51 smithi052 bash[25156]: audit 2024-04-02T06:52:51.021659+0000 mon.smithi037 (mon.0) 675 : audit 0 from='client.? 172.21.15.37:0/3363170335' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:52:51.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:51 smithi052 bash[25156]: cluster 2024-04-02T06:52:51.342138+0000 mon.smithi037 (mon.0) 676 : cluster 1 osd.7 [v2:172.21.15.37:6826/3852816081,v1:172.21.15.37:6827/3852816081] boot 2024-04-02T06:52:51.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:51 smithi052 bash[25156]: cluster 2024-04-02T06:52:51.342211+0000 mon.smithi037 (mon.0) 677 : cluster 0 osdmap e34: 8 total, 8 up, 8 in 2024-04-02T06:52:51.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:51 smithi052 bash[25156]: audit 2024-04-02T06:52:51.342610+0000 mon.smithi037 (mon.0) 678 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:51.673 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:51 smithi037 bash[18626]: audit 2024-04-02T06:52:50.358308+0000 mon.smithi037 (mon.0) 674 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:51.673 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:51 smithi037 bash[18626]: audit 2024-04-02T06:52:51.021659+0000 mon.smithi037 (mon.0) 675 : audit 0 from='client.? 172.21.15.37:0/3363170335' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:52:51.673 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:51 smithi037 bash[18626]: cluster 2024-04-02T06:52:51.342138+0000 mon.smithi037 (mon.0) 676 : cluster 1 osd.7 [v2:172.21.15.37:6826/3852816081,v1:172.21.15.37:6827/3852816081] boot 2024-04-02T06:52:51.673 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:51 smithi037 bash[18626]: cluster 2024-04-02T06:52:51.342211+0000 mon.smithi037 (mon.0) 677 : cluster 0 osdmap e34: 8 total, 8 up, 8 in 2024-04-02T06:52:51.674 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:51 smithi037 bash[18626]: audit 2024-04-02T06:52:51.342610+0000 mon.smithi037 (mon.0) 678 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-02T06:52:51.724 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":33,"num_osds":8,"num_up_osds":7,"osd_up_since":1712040767,"num_in_osds":8,"osd_in_since":1712040726,"num_remapped_pgs":0} 2024-04-02T06:52:52.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:52 smithi052 bash[25156]: cluster 2024-04-02T06:52:49.954406+0000 osd.7 (osd.7) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:52.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:52 smithi052 bash[25156]: cluster 2024-04-02T06:52:49.954548+0000 osd.7 (osd.7) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:52.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:52 smithi052 bash[25156]: cluster 2024-04-02T06:52:51.362634+0000 mgr.smithi037.yymbdj (mgr.14215) 123 : cluster 0 pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:52:52.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:52 smithi052 bash[25156]: audit 2024-04-02T06:52:52.083419+0000 mon.smithi037 (mon.0) 679 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:52.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:52 smithi052 bash[25156]: audit 2024-04-02T06:52:52.094413+0000 mon.smithi037 (mon.0) 680 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:52.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:52 smithi052 bash[25156]: cluster 2024-04-02T06:52:52.197886+0000 mon.smithi037 (mon.0) 681 : cluster 0 osdmap e35: 8 total, 8 up, 8 in 2024-04-02T06:52:52.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:52 smithi052 bash[25156]: audit 2024-04-02T06:52:52.228264+0000 mon.smithi037 (mon.0) 682 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:52:52.725 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd stat -f json 2024-04-02T06:52:52.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:52 smithi037 bash[18626]: cluster 2024-04-02T06:52:49.954406+0000 osd.7 (osd.7) 1 : cluster 0 purged_snaps scrub starts 2024-04-02T06:52:52.733 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:52 smithi037 bash[18626]: cluster 2024-04-02T06:52:49.954548+0000 osd.7 (osd.7) 2 : cluster 0 purged_snaps scrub ok 2024-04-02T06:52:52.733 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:52 smithi037 bash[18626]: cluster 2024-04-02T06:52:51.362634+0000 mgr.smithi037.yymbdj (mgr.14215) 123 : cluster 0 pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:52:52.733 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:52 smithi037 bash[18626]: audit 2024-04-02T06:52:52.083419+0000 mon.smithi037 (mon.0) 679 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:52.733 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:52 smithi037 bash[18626]: audit 2024-04-02T06:52:52.094413+0000 mon.smithi037 (mon.0) 680 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:52.733 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:52 smithi037 bash[18626]: cluster 2024-04-02T06:52:52.197886+0000 mon.smithi037 (mon.0) 681 : cluster 0 osdmap e35: 8 total, 8 up, 8 in 2024-04-02T06:52:52.733 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:52 smithi037 bash[18626]: audit 2024-04-02T06:52:52.228264+0000 mon.smithi037 (mon.0) 682 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:52:54.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:54 smithi037 bash[18626]: cluster 2024-04-02T06:52:53.200113+0000 mon.smithi037 (mon.0) 683 : cluster 0 osdmap e36: 8 total, 8 up, 8 in 2024-04-02T06:52:54.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:54 smithi037 bash[18626]: cluster 2024-04-02T06:52:53.363174+0000 mgr.smithi037.yymbdj (mgr.14215) 124 : cluster 0 pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:52:54.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:54 smithi037 bash[18626]: audit 2024-04-02T06:52:53.744349+0000 mon.smithi037 (mon.0) 684 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:54.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:54 smithi052 bash[25156]: cluster 2024-04-02T06:52:53.200113+0000 mon.smithi037 (mon.0) 683 : cluster 0 osdmap e36: 8 total, 8 up, 8 in 2024-04-02T06:52:54.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:54 smithi052 bash[25156]: cluster 2024-04-02T06:52:53.363174+0000 mgr.smithi037.yymbdj (mgr.14215) 124 : cluster 0 pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:52:54.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:54 smithi052 bash[25156]: audit 2024-04-02T06:52:53.744349+0000 mon.smithi037 (mon.0) 684 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:55.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:55 smithi037 bash[18626]: cluster 2024-04-02T06:52:54.211217+0000 mon.smithi037 (mon.0) 685 : cluster 0 osdmap e37: 8 total, 8 up, 8 in 2024-04-02T06:52:55.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:55 smithi052 bash[25156]: cluster 2024-04-02T06:52:54.211217+0000 mon.smithi037 (mon.0) 685 : cluster 0 osdmap e37: 8 total, 8 up, 8 in 2024-04-02T06:52:56.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:56 smithi052 bash[25156]: cluster 2024-04-02T06:52:55.213660+0000 mon.smithi037 (mon.0) 686 : cluster 0 osdmap e38: 8 total, 8 up, 8 in 2024-04-02T06:52:56.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:56 smithi052 bash[25156]: audit 2024-04-02T06:52:55.268558+0000 mon.smithi037 (mon.0) 687 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:56.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:56 smithi052 bash[25156]: audit 2024-04-02T06:52:55.270359+0000 mon.smithi037 (mon.0) 688 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-02T06:52:56.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:56 smithi052 bash[25156]: cluster 2024-04-02T06:52:55.363747+0000 mgr.smithi037.yymbdj (mgr.14215) 125 : cluster 0 pgmap v98: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 652 KiB/s wr, 39 op/s; 144 KiB/s, 0 objects/s recovering 2024-04-02T06:52:56.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:56 smithi052 bash[25156]: audit 2024-04-02T06:52:56.204399+0000 mon.smithi037 (mon.0) 689 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-02T06:52:56.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:56 smithi052 bash[25156]: audit 2024-04-02T06:52:56.204991+0000 mon.smithi037 (mon.0) 690 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:52:56.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:56 smithi052 bash[25156]: audit 2024-04-02T06:52:56.205399+0000 mon.smithi037 (mon.0) 691 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:52:56.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:56 smithi037 bash[18626]: cluster 2024-04-02T06:52:55.213660+0000 mon.smithi037 (mon.0) 686 : cluster 0 osdmap e38: 8 total, 8 up, 8 in 2024-04-02T06:52:56.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:56 smithi037 bash[18626]: audit 2024-04-02T06:52:55.268558+0000 mon.smithi037 (mon.0) 687 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:56.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:56 smithi037 bash[18626]: audit 2024-04-02T06:52:55.270359+0000 mon.smithi037 (mon.0) 688 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-02T06:52:56.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:56 smithi037 bash[18626]: cluster 2024-04-02T06:52:55.363747+0000 mgr.smithi037.yymbdj (mgr.14215) 125 : cluster 0 pgmap v98: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 652 KiB/s wr, 39 op/s; 144 KiB/s, 0 objects/s recovering 2024-04-02T06:52:56.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:56 smithi037 bash[18626]: audit 2024-04-02T06:52:56.204399+0000 mon.smithi037 (mon.0) 689 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-02T06:52:56.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:56 smithi037 bash[18626]: audit 2024-04-02T06:52:56.204991+0000 mon.smithi037 (mon.0) 690 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:52:56.555 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:56 smithi037 bash[18626]: audit 2024-04-02T06:52:56.205399+0000 mon.smithi037 (mon.0) 691 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:52:57.296 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:52:57.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:57 smithi037 bash[18626]: audit 2024-04-02T06:52:56.238325+0000 mon.smithi037 (mon.0) 692 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:57.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:57 smithi037 bash[18626]: audit 2024-04-02T06:52:56.241369+0000 mon.smithi037 (mon.0) 693 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:52:57.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:57 smithi037 bash[18626]: audit 2024-04-02T06:52:56.241609+0000 mon.smithi037 (mon.0) 694 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:52:57.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:57 smithi037 bash[18626]: audit 2024-04-02T06:52:56.242049+0000 mon.smithi052 (mon.1) 18 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-02T06:52:57.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:57 smithi037 bash[18626]: audit 2024-04-02T06:52:57.158397+0000 mon.smithi052 (mon.1) 19 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-02T06:52:57.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:57 smithi037 bash[18626]: audit 2024-04-02T06:52:57.215614+0000 mon.smithi037 (mon.0) 695 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:57.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:57 smithi052 bash[25156]: audit 2024-04-02T06:52:56.238325+0000 mon.smithi037 (mon.0) 692 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:57.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:57 smithi052 bash[25156]: audit 2024-04-02T06:52:56.241369+0000 mon.smithi037 (mon.0) 693 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-02T06:52:57.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:57 smithi052 bash[25156]: audit 2024-04-02T06:52:56.241609+0000 mon.smithi037 (mon.0) 694 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "mon metadata", "id": "smithi052"}]: dispatch 2024-04-02T06:52:57.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:57 smithi052 bash[25156]: audit 2024-04-02T06:52:56.242049+0000 mon.smithi052 (mon.1) 18 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-02T06:52:57.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:57 smithi052 bash[25156]: audit 2024-04-02T06:52:57.158397+0000 mon.smithi052 (mon.1) 19 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-02T06:52:57.658 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:57 smithi052 bash[25156]: audit 2024-04-02T06:52:57.215614+0000 mon.smithi037 (mon.0) 695 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:59.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:58 smithi037 bash[18626]: cluster 2024-04-02T06:52:57.364320+0000 mgr.smithi037.yymbdj (mgr.14215) 126 : cluster 0 pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 12 KiB/s rd, 707 KiB/s wr, 43 op/s; 111 KiB/s, 0 objects/s recovering 2024-04-02T06:52:59.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:58 smithi037 bash[18626]: audit 2024-04-02T06:52:57.815905+0000 mon.smithi037 (mon.0) 696 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:59.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:58 smithi037 bash[18626]: audit 2024-04-02T06:52:57.820840+0000 mon.smithi037 (mon.0) 697 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:59.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:58 smithi037 bash[18626]: audit 2024-04-02T06:52:58.327187+0000 mon.smithi037 (mon.0) 698 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:59.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:58 smithi037 bash[18626]: audit 2024-04-02T06:52:58.335420+0000 mon.smithi037 (mon.0) 699 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:59.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:58 smithi052 bash[25156]: cluster 2024-04-02T06:52:57.364320+0000 mgr.smithi037.yymbdj (mgr.14215) 126 : cluster 0 pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 12 KiB/s rd, 707 KiB/s wr, 43 op/s; 111 KiB/s, 0 objects/s recovering 2024-04-02T06:52:59.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:58 smithi052 bash[25156]: audit 2024-04-02T06:52:57.815905+0000 mon.smithi037 (mon.0) 696 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:59.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:58 smithi052 bash[25156]: audit 2024-04-02T06:52:57.820840+0000 mon.smithi037 (mon.0) 697 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:59.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:58 smithi052 bash[25156]: audit 2024-04-02T06:52:58.327187+0000 mon.smithi037 (mon.0) 698 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:59.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:58 smithi052 bash[25156]: audit 2024-04-02T06:52:58.335420+0000 mon.smithi037 (mon.0) 699 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:52:59.748 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:53:00.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:52:59 smithi037 bash[18626]: audit 2024-04-02T06:52:59.749841+0000 mon.smithi037 (mon.0) 700 : audit 0 from='client.? 172.21.15.37:0/3473866411' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:53:00.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:52:59 smithi052 bash[25156]: audit 2024-04-02T06:52:59.749841+0000 mon.smithi037 (mon.0) 700 : audit 0 from='client.? 172.21.15.37:0/3473866411' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-02T06:53:00.337 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":38,"num_osds":8,"num_up_osds":8,"osd_up_since":1712040771,"num_in_osds":8,"osd_in_since":1712040726,"num_remapped_pgs":0} 2024-04-02T06:53:00.337 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd dump --format=json 2024-04-02T06:53:01.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:00 smithi052 bash[25156]: cluster 2024-04-02T06:52:59.364664+0000 mgr.smithi037.yymbdj (mgr.14215) 127 : cluster 0 pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 592 KiB/s wr, 36 op/s; 93 KiB/s, 0 objects/s recovering 2024-04-02T06:53:01.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:00 smithi052 bash[25156]: audit 2024-04-02T06:53:00.466106+0000 mon.smithi037 (mon.0) 701 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:53:01.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:00 smithi037 bash[18626]: cluster 2024-04-02T06:52:59.364664+0000 mgr.smithi037.yymbdj (mgr.14215) 127 : cluster 0 pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 592 KiB/s wr, 36 op/s; 93 KiB/s, 0 objects/s recovering 2024-04-02T06:53:01.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:00 smithi037 bash[18626]: audit 2024-04-02T06:53:00.466106+0000 mon.smithi037 (mon.0) 701 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:53:03.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:02 smithi037 bash[18626]: cluster 2024-04-02T06:53:01.365148+0000 mgr.smithi037.yymbdj (mgr.14215) 128 : cluster 0 pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 555 KiB/s wr, 34 op/s; 72 KiB/s, 0 objects/s recovering 2024-04-02T06:53:03.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:02 smithi052 bash[25156]: cluster 2024-04-02T06:53:01.365148+0000 mgr.smithi037.yymbdj (mgr.14215) 128 : cluster 0 pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 555 KiB/s wr, 34 op/s; 72 KiB/s, 0 objects/s recovering 2024-04-02T06:53:04.961 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:04 smithi037 bash[18626]: cluster 2024-04-02T06:53:03.365680+0000 mgr.smithi037.yymbdj (mgr.14215) 129 : cluster 0 pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 3.9 KiB/s rd, 200 KiB/s wr, 13 op/s 2024-04-02T06:53:04.962 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:53:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:04 smithi052 bash[25156]: cluster 2024-04-02T06:53:03.365680+0000 mgr.smithi037.yymbdj (mgr.14215) 129 : cluster 0 pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 3.9 KiB/s rd, 200 KiB/s wr, 13 op/s 2024-04-02T06:53:06.960 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:06 smithi037 bash[18626]: cluster 2024-04-02T06:53:05.366262+0000 mgr.smithi037.yymbdj (mgr.14215) 130 : cluster 0 pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 180 KiB/s wr, 11 op/s 2024-04-02T06:53:07.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:06 smithi052 bash[25156]: cluster 2024-04-02T06:53:05.366262+0000 mgr.smithi037.yymbdj (mgr.14215) 130 : cluster 0 pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 180 KiB/s wr, 11 op/s 2024-04-02T06:53:08.089 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:53:08.089 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":38,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","created":"2024-04-02T06:47:11.615847+0000","modified":"2024-04-02T06:52:55.203501+0000","last_up_change":"2024-04-02T06:52:51.336789+0000","last_in_change":"2024-04-02T06:52:06.509087+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"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-04-02T06:52:38.972880+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":"d6f0d68a-c31f-4a7f-9a2a-615fe61da9d0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":36,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6800","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6801","nonce":50716923}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6802","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6803","nonce":50716923}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6806","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6807","nonce":50716923}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6804","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6805","nonce":50716923}]},"public_addr":"172.21.15.52:6801/50716923","cluster_addr":"172.21.15.52:6803/50716923","heartbeat_back_addr":"172.21.15.52:6807/50716923","heartbeat_front_addr":"172.21.15.52:6805/50716923","state":["exists","up"]},{"osd":1,"uuid":"00c74907-11e6-4383-9735-d3bf1708a279","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6802","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6803","nonce":1789102859}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6804","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6805","nonce":1789102859}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6808","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6809","nonce":1789102859}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6806","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6807","nonce":1789102859}]},"public_addr":"172.21.15.37:6803/1789102859","cluster_addr":"172.21.15.37:6805/1789102859","heartbeat_back_addr":"172.21.15.37:6809/1789102859","heartbeat_front_addr":"172.21.15.37:6807/1789102859","state":["exists","up"]},{"osd":2,"uuid":"9b0117ed-ed70-412c-94d3-a712201361fc","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.52:6808","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6809","nonce":286255222}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6810","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6811","nonce":286255222}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6814","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6815","nonce":286255222}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6812","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6813","nonce":286255222}]},"public_addr":"172.21.15.52:6809/286255222","cluster_addr":"172.21.15.52:6811/286255222","heartbeat_back_addr":"172.21.15.52:6815/286255222","heartbeat_front_addr":"172.21.15.52:6813/286255222","state":["exists","up"]},{"osd":3,"uuid":"38f447c7-5636-4b23-aea7-eeaaa9c173b2","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.37:6810","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6811","nonce":2024787513}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6812","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6813","nonce":2024787513}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6816","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6817","nonce":2024787513}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6814","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6815","nonce":2024787513}]},"public_addr":"172.21.15.37:6811/2024787513","cluster_addr":"172.21.15.37:6813/2024787513","heartbeat_back_addr":"172.21.15.37:6817/2024787513","heartbeat_front_addr":"172.21.15.37:6815/2024787513","state":["exists","up"]},{"osd":4,"uuid":"77290f4d-31d1-42fa-aa0b-3721ded46c5e","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.52:6816","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6817","nonce":409993662}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6818","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6819","nonce":409993662}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6822","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6823","nonce":409993662}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6820","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6821","nonce":409993662}]},"public_addr":"172.21.15.52:6817/409993662","cluster_addr":"172.21.15.52:6819/409993662","heartbeat_back_addr":"172.21.15.52:6823/409993662","heartbeat_front_addr":"172.21.15.52:6821/409993662","state":["exists","up"]},{"osd":5,"uuid":"d56bd3a4-3ffe-42e0-a3ba-59e5b8f72ef8","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.37:6818","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6819","nonce":331039701}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6820","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6821","nonce":331039701}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6824","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6825","nonce":331039701}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6822","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6823","nonce":331039701}]},"public_addr":"172.21.15.37:6819/331039701","cluster_addr":"172.21.15.37:6821/331039701","heartbeat_back_addr":"172.21.15.37:6825/331039701","heartbeat_front_addr":"172.21.15.37:6823/331039701","state":["exists","up"]},{"osd":6,"uuid":"9d5a3dd3-6420-4eea-8304-e663ddf77a07","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.52:6824","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6825","nonce":1677581049}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6826","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6827","nonce":1677581049}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6830","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6831","nonce":1677581049}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6828","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6829","nonce":1677581049}]},"public_addr":"172.21.15.52:6825/1677581049","cluster_addr":"172.21.15.52:6827/1677581049","heartbeat_back_addr":"172.21.15.52:6831/1677581049","heartbeat_front_addr":"172.21.15.52:6829/1677581049","state":["exists","up"]},{"osd":7,"uuid":"097f83c6-e621-48c8-b6b5-02bc99aa934a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6826","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6827","nonce":3852816081}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6828","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6829","nonce":3852816081}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6832","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6833","nonce":3852816081}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6830","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6831","nonce":3852816081}]},"public_addr":"172.21.15.37:6827/3852816081","cluster_addr":"172.21.15.37:6829/3852816081","heartbeat_back_addr":"172.21.15.37:6833/3852816081","heartbeat_front_addr":"172.21.15.37:6831/3852816081","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-04-02T06:52:31.198312+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-04-02T06:52:33.780865+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-04-02T06:52:36.401916+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-04-02T06:52:39.325712+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-04-02T06:52:42.585732+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-04-02T06:52:45.538318+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-04-02T06:52:46.075988+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-04-02T06:52:49.954554+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.37:0/1097346873":"2024-04-03T06:50:30.388066+0000","172.21.15.37:6801/593817094":"2024-04-03T06:50:30.388066+0000","172.21.15.37:6800/593817094":"2024-04-03T06:50:30.388066+0000","172.21.15.37:0/2518756809":"2024-04-03T06:50:30.388066+0000","172.21.15.37:0/479093758":"2024-04-03T06:48:27.208765+0000","172.21.15.37:0/2922979551":"2024-04-03T06:48:27.208765+0000","172.21.15.37:0/253401310":"2024-04-03T06:50:30.388066+0000","172.21.15.37:0/1270158472":"2024-04-03T06:48:27.208765+0000","172.21.15.37:6800/1079366827":"2024-04-03T06:47:42.676621+0000","172.21.15.37:0/3533763370":"2024-04-03T06:47:42.676621+0000","172.21.15.37:6801/1079366827":"2024-04-03T06:47:42.676621+0000","172.21.15.37:0/3096041146":"2024-04-03T06:47:42.676621+0000","172.21.15.37:0/1473829332":"2024-04-03T06:47:42.676621+0000","172.21.15.37:6801/3403850564":"2024-04-03T06:48:27.208765+0000","172.21.15.37:6800/3403850564":"2024-04-03T06:48:27.208765+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-04-02T06:53:08.827 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-04-02T06:52:38.972880+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-04-02T06:53:08.827 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd pool get .mgr pg_num 2024-04-02T06:53:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:08 smithi037 bash[18626]: cluster 2024-04-02T06:53:07.366844+0000 mgr.smithi037.yymbdj (mgr.14215) 131 : cluster 0 pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 3.0 KiB/s rd, 152 KiB/s wr, 9 op/s 2024-04-02T06:53:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:08 smithi037 bash[18626]: audit 2024-04-02T06:53:08.090167+0000 mon.smithi037 (mon.0) 702 : audit 0 from='client.? 172.21.15.37:0/3695506805' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-02T06:53:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:08 smithi037 bash[18626]: audit 2024-04-02T06:53:08.747673+0000 mon.smithi037 (mon.0) 703 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:08 smithi037 bash[18626]: audit 2024-04-02T06:53:08.759354+0000 mon.smithi037 (mon.0) 704 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:08 smithi037 bash[18626]: audit 2024-04-02T06:53:08.762451+0000 mon.smithi037 (mon.0) 705 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:08 smithi037 bash[18626]: audit 2024-04-02T06:53:08.764679+0000 mon.smithi037 (mon.0) 706 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:09.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:08 smithi037 bash[18626]: audit 2024-04-02T06:53:08.766815+0000 mon.smithi037 (mon.0) 707 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:09.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:08 smithi037 bash[18626]: audit 2024-04-02T06:53:08.768750+0000 mon.smithi037 (mon.0) 708 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:09.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:08 smithi037 bash[18626]: audit 2024-04-02T06:53:08.776532+0000 mon.smithi037 (mon.0) 709 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:08 smithi052 bash[25156]: cluster 2024-04-02T06:53:07.366844+0000 mgr.smithi037.yymbdj (mgr.14215) 131 : cluster 0 pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 3.0 KiB/s rd, 152 KiB/s wr, 9 op/s 2024-04-02T06:53:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:08 smithi052 bash[25156]: audit 2024-04-02T06:53:08.090167+0000 mon.smithi037 (mon.0) 702 : audit 0 from='client.? 172.21.15.37:0/3695506805' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-02T06:53:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:08 smithi052 bash[25156]: audit 2024-04-02T06:53:08.747673+0000 mon.smithi037 (mon.0) 703 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:08 smithi052 bash[25156]: audit 2024-04-02T06:53:08.759354+0000 mon.smithi037 (mon.0) 704 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:08 smithi052 bash[25156]: audit 2024-04-02T06:53:08.762451+0000 mon.smithi037 (mon.0) 705 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:09.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:08 smithi052 bash[25156]: audit 2024-04-02T06:53:08.764679+0000 mon.smithi037 (mon.0) 706 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:09.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:08 smithi052 bash[25156]: audit 2024-04-02T06:53:08.766815+0000 mon.smithi037 (mon.0) 707 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:09.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:08 smithi052 bash[25156]: audit 2024-04-02T06:53:08.768750+0000 mon.smithi037 (mon.0) 708 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:09.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:08 smithi052 bash[25156]: audit 2024-04-02T06:53:08.776532+0000 mon.smithi037 (mon.0) 709 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: cephadm 2024-04-02T06:53:08.736225+0000 mgr.smithi037.yymbdj (mgr.14215) 132 : cephadm 1 Detected new or changed devices on smithi052 2024-04-02T06:53:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: cephadm 2024-04-02T06:53:08.770232+0000 mgr.smithi037.yymbdj (mgr.14215) 133 : cephadm 1 Adjusting osd_memory_target on smithi052 to 3773M 2024-04-02T06:53:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.375649+0000 mon.smithi037 (mon.0) 710 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.388648+0000 mon.smithi037 (mon.0) 711 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.392098+0000 mon.smithi037 (mon.0) 712 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.394243+0000 mon.smithi037 (mon.0) 713 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.396315+0000 mon.smithi037 (mon.0) 714 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.398417+0000 mon.smithi037 (mon.0) 715 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.406228+0000 mon.smithi037 (mon.0) 716 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:10.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.410920+0000 mon.smithi037 (mon.0) 717 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:53:10.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.412767+0000 mon.smithi037 (mon.0) 718 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:53:10.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.421377+0000 mon.smithi037 (mon.0) 719 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:10.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.427563+0000 mon.smithi037 (mon.0) 720 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:53:10.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.435748+0000 mon.smithi037 (mon.0) 721 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-02T06:53:10.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.437144+0000 mon.smithi037 (mon.0) 722 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:53:10.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.443951+0000 mon.smithi037 (mon.0) 723 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-02T06:53:10.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:09 smithi052 bash[25156]: audit 2024-04-02T06:53:09.445570+0000 mon.smithi037 (mon.0) 724 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:53:10.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: cephadm 2024-04-02T06:53:08.736225+0000 mgr.smithi037.yymbdj (mgr.14215) 132 : cephadm 1 Detected new or changed devices on smithi052 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: cephadm 2024-04-02T06:53:08.770232+0000 mgr.smithi037.yymbdj (mgr.14215) 133 : cephadm 1 Adjusting osd_memory_target on smithi052 to 3773M 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.375649+0000 mon.smithi037 (mon.0) 710 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.388648+0000 mon.smithi037 (mon.0) 711 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.392098+0000 mon.smithi037 (mon.0) 712 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.394243+0000 mon.smithi037 (mon.0) 713 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.396315+0000 mon.smithi037 (mon.0) 714 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.398417+0000 mon.smithi037 (mon.0) 715 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.406228+0000 mon.smithi037 (mon.0) 716 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.410920+0000 mon.smithi037 (mon.0) 717 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.412767+0000 mon.smithi037 (mon.0) 718 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.421377+0000 mon.smithi037 (mon.0) 719 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.427563+0000 mon.smithi037 (mon.0) 720 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:53:10.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.435748+0000 mon.smithi037 (mon.0) 721 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-02T06:53:10.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.437144+0000 mon.smithi037 (mon.0) 722 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:53:10.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.443951+0000 mon.smithi037 (mon.0) 723 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-02T06:53:10.306 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:09 smithi037 bash[18626]: audit 2024-04-02T06:53:09.445570+0000 mon.smithi037 (mon.0) 724 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:53:11.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:10 smithi052 bash[25156]: cephadm 2024-04-02T06:53:09.363730+0000 mgr.smithi037.yymbdj (mgr.14215) 134 : cephadm 1 Detected new or changed devices on smithi037 2024-04-02T06:53:11.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:10 smithi052 bash[25156]: cluster 2024-04-02T06:53:09.367397+0000 mgr.smithi037.yymbdj (mgr.14215) 135 : cluster 0 pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-04-02T06:53:11.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:10 smithi052 bash[25156]: cephadm 2024-04-02T06:53:09.399930+0000 mgr.smithi037.yymbdj (mgr.14215) 136 : cephadm 1 Adjusting osd_memory_target on smithi037 to 3005M 2024-04-02T06:53:11.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:10 smithi037 bash[18626]: cephadm 2024-04-02T06:53:09.363730+0000 mgr.smithi037.yymbdj (mgr.14215) 134 : cephadm 1 Detected new or changed devices on smithi037 2024-04-02T06:53:11.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:10 smithi037 bash[18626]: cluster 2024-04-02T06:53:09.367397+0000 mgr.smithi037.yymbdj (mgr.14215) 135 : cluster 0 pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-04-02T06:53:11.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:10 smithi037 bash[18626]: cephadm 2024-04-02T06:53:09.399930+0000 mgr.smithi037.yymbdj (mgr.14215) 136 : cephadm 1 Adjusting osd_memory_target on smithi037 to 3005M 2024-04-02T06:53:13.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:12 smithi037 bash[18626]: cluster 2024-04-02T06:53:11.370727+0000 mgr.smithi037.yymbdj (mgr.14215) 137 : cluster 0 pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-04-02T06:53:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:12 smithi052 bash[25156]: cluster 2024-04-02T06:53:11.370727+0000 mgr.smithi037.yymbdj (mgr.14215) 137 : cluster 0 pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-04-02T06:53:13.628 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:53:15.115 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:14 smithi037 bash[18626]: cluster 2024-04-02T06:53:13.371332+0000 mgr.smithi037.yymbdj (mgr.14215) 138 : cluster 0 pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:15.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:14 smithi052 bash[25156]: cluster 2024-04-02T06:53:13.371332+0000 mgr.smithi037.yymbdj (mgr.14215) 138 : cluster 0 pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:16.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:15 smithi052 bash[25156]: audit 2024-04-02T06:53:15.466668+0000 mon.smithi037 (mon.0) 725 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:53:16.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:15 smithi037 bash[18626]: audit 2024-04-02T06:53:15.466668+0000 mon.smithi037 (mon.0) 725 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:53:16.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:16 smithi052 bash[25156]: cluster 2024-04-02T06:53:15.371939+0000 mgr.smithi037.yymbdj (mgr.14215) 139 : cluster 0 pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:16.946 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:16 smithi037 bash[18626]: cluster 2024-04-02T06:53:15.371939+0000 mgr.smithi037.yymbdj (mgr.14215) 139 : cluster 0 pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:17.058 INFO:teuthology.orchestra.run.smithi037.stdout:pg_num: 1 2024-04-02T06:53:17.724 INFO:tasks.cephadm:Setting up client nodes... 2024-04-02T06:53:17.725 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-04-02T06:53:18.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:17 smithi037 bash[18626]: audit 2024-04-02T06:53:17.060711+0000 mon.smithi037 (mon.0) 726 : audit 0 from='client.? 172.21.15.37:0/652305141' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-02T06:53:18.156 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:17 smithi052 bash[25156]: audit 2024-04-02T06:53:17.060711+0000 mon.smithi037 (mon.0) 726 : audit 0 from='client.? 172.21.15.37:0/652305141' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-02T06:53:19.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:18 smithi052 bash[25156]: cluster 2024-04-02T06:53:17.372378+0000 mgr.smithi037.yymbdj (mgr.14215) 140 : cluster 0 pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:18 smithi037 bash[18626]: cluster 2024-04-02T06:53:17.372378+0000 mgr.smithi037.yymbdj (mgr.14215) 140 : cluster 0 pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:21.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:20 smithi052 bash[25156]: cluster 2024-04-02T06:53:19.372837+0000 mgr.smithi037.yymbdj (mgr.14215) 141 : cluster 0 pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:21.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:20 smithi037 bash[18626]: cluster 2024-04-02T06:53:19.372837+0000 mgr.smithi037.yymbdj (mgr.14215) 141 : cluster 0 pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:22.732 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:53:23.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:22 smithi037 bash[18626]: cluster 2024-04-02T06:53:21.373443+0000 mgr.smithi037.yymbdj (mgr.14215) 142 : cluster 0 pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:23.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:22 smithi052 bash[25156]: cluster 2024-04-02T06:53:21.373443+0000 mgr.smithi037.yymbdj (mgr.14215) 142 : cluster 0 pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:24.981 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:24 smithi052 bash[25156]: cluster 2024-04-02T06:53:23.373994+0000 mgr.smithi037.yymbdj (mgr.14215) 143 : cluster 0 pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:25.186 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:24 smithi037 bash[18626]: cluster 2024-04-02T06:53:23.373994+0000 mgr.smithi037.yymbdj (mgr.14215) 143 : cluster 0 pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:25.786 INFO:teuthology.orchestra.run.smithi037.stdout:[client.0] 2024-04-02T06:53:25.786 INFO:teuthology.orchestra.run.smithi037.stdout: key = AQBlqwtmxy7HLhAAJthXTcuSoMmjscLUGJ6/Dg== 2024-04-02T06:53:26.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:25 smithi037 bash[18626]: audit 2024-04-02T06:53:25.784420+0000 mon.smithi037 (mon.0) 727 : audit 1 from='client.? 172.21.15.37:0/3255276028' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-02T06:53:26.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:25 smithi037 bash[18626]: audit 2024-04-02T06:53:25.787998+0000 mon.smithi037 (mon.0) 728 : audit 1 from='client.? 172.21.15.37:0/3255276028' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-04-02T06:53:26.156 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:25 smithi052 bash[25156]: audit 2024-04-02T06:53:25.784420+0000 mon.smithi037 (mon.0) 727 : audit 1 from='client.? 172.21.15.37:0/3255276028' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-02T06:53:26.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:25 smithi052 bash[25156]: audit 2024-04-02T06:53:25.787998+0000 mon.smithi037 (mon.0) 728 : audit 1 from='client.? 172.21.15.37:0/3255276028' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-04-02T06:53:26.801 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T06:53:26.801 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-04-02T06:53:26.801 DEBUG:teuthology.orchestra.run.smithi037:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-04-02T06:53:26.824 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-04-02T06:53:27.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:26 smithi037 bash[18626]: cluster 2024-04-02T06:53:25.374362+0000 mgr.smithi037.yymbdj (mgr.14215) 144 : cluster 0 pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:27.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:26 smithi052 bash[25156]: cluster 2024-04-02T06:53:25.374362+0000 mgr.smithi037.yymbdj (mgr.14215) 144 : cluster 0 pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:29.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:28 smithi037 bash[18626]: cluster 2024-04-02T06:53:27.374930+0000 mgr.smithi037.yymbdj (mgr.14215) 145 : cluster 0 pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:29.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:28 smithi052 bash[25156]: cluster 2024-04-02T06:53:27.374930+0000 mgr.smithi037.yymbdj (mgr.14215) 145 : cluster 0 pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:31.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:30 smithi037 bash[18626]: cluster 2024-04-02T06:53:29.375508+0000 mgr.smithi037.yymbdj (mgr.14215) 146 : cluster 0 pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:31.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:30 smithi037 bash[18626]: audit 2024-04-02T06:53:30.470320+0000 mon.smithi037 (mon.0) 729 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:53:31.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:30 smithi052 bash[25156]: cluster 2024-04-02T06:53:29.375508+0000 mgr.smithi037.yymbdj (mgr.14215) 146 : cluster 0 pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:31.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:30 smithi052 bash[25156]: audit 2024-04-02T06:53:30.470320+0000 mon.smithi037 (mon.0) 729 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:53:31.608 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi052/config 2024-04-02T06:53:33.277 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:32 smithi037 bash[18626]: cluster 2024-04-02T06:53:31.376124+0000 mgr.smithi037.yymbdj (mgr.14215) 147 : cluster 0 pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:33.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:32 smithi052 bash[25156]: cluster 2024-04-02T06:53:31.376124+0000 mgr.smithi037.yymbdj (mgr.14215) 147 : cluster 0 pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:35.156 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:34 smithi052 bash[25156]: cluster 2024-04-02T06:53:33.376726+0000 mgr.smithi037.yymbdj (mgr.14215) 148 : cluster 0 pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:35.247 INFO:teuthology.orchestra.run.smithi052.stdout:[client.1] 2024-04-02T06:53:35.248 INFO:teuthology.orchestra.run.smithi052.stdout: key = AQBvqwtmcEmaDhAATyyqwaH9V+0FsPz+/mIBDA== 2024-04-02T06:53:35.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:34 smithi037 bash[18626]: cluster 2024-04-02T06:53:33.376726+0000 mgr.smithi037.yymbdj (mgr.14215) 148 : cluster 0 pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:36.007 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T06:53:36.007 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-04-02T06:53:36.007 DEBUG:teuthology.orchestra.run.smithi052:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-04-02T06:53:36.030 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-04-02T06:53:36.030 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-04-02T06:53:36.031 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph mgr dump --format=json 2024-04-02T06:53:36.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:35 smithi037 bash[18626]: audit 2024-04-02T06:53:35.244812+0000 mon.smithi037 (mon.0) 730 : audit 1 from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-02T06:53:36.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:35 smithi037 bash[18626]: audit 2024-04-02T06:53:35.245211+0000 mon.smithi052 (mon.1) 20 : audit 1 from='client.? 172.21.15.52:0/3504741579' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-02T06:53:36.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:35 smithi037 bash[18626]: audit 2024-04-02T06:53:35.247105+0000 mon.smithi037 (mon.0) 731 : audit 1 from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-04-02T06:53:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:35 smithi052 bash[25156]: audit 2024-04-02T06:53:35.244812+0000 mon.smithi037 (mon.0) 730 : audit 1 from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-02T06:53:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:35 smithi052 bash[25156]: audit 2024-04-02T06:53:35.245211+0000 mon.smithi052 (mon.1) 20 : audit 1 from='client.? 172.21.15.52:0/3504741579' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-02T06:53:36.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:35 smithi052 bash[25156]: audit 2024-04-02T06:53:35.247105+0000 mon.smithi037 (mon.0) 731 : audit 1 from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-04-02T06:53:37.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:36 smithi037 bash[18626]: cluster 2024-04-02T06:53:35.377379+0000 mgr.smithi037.yymbdj (mgr.14215) 149 : cluster 0 pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:37.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:36 smithi037 bash[18626]: audit 2024-04-02T06:53:36.384094+0000 mon.smithi037 (mon.0) 732 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:37.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:36 smithi037 bash[18626]: audit 2024-04-02T06:53:36.395609+0000 mon.smithi037 (mon.0) 733 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:37.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:36 smithi037 bash[18626]: audit 2024-04-02T06:53:36.843576+0000 mon.smithi037 (mon.0) 734 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:37.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:36 smithi037 bash[18626]: audit 2024-04-02T06:53:36.855539+0000 mon.smithi037 (mon.0) 735 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:37.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:36 smithi052 bash[25156]: cluster 2024-04-02T06:53:35.377379+0000 mgr.smithi037.yymbdj (mgr.14215) 149 : cluster 0 pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:37.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:36 smithi052 bash[25156]: audit 2024-04-02T06:53:36.384094+0000 mon.smithi037 (mon.0) 732 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:37.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:36 smithi052 bash[25156]: audit 2024-04-02T06:53:36.395609+0000 mon.smithi037 (mon.0) 733 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:37.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:36 smithi052 bash[25156]: audit 2024-04-02T06:53:36.843576+0000 mon.smithi037 (mon.0) 734 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:37.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:36 smithi052 bash[25156]: audit 2024-04-02T06:53:36.855539+0000 mon.smithi037 (mon.0) 735 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:53:39.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:38 smithi037 bash[18626]: cluster 2024-04-02T06:53:37.378095+0000 mgr.smithi037.yymbdj (mgr.14215) 150 : cluster 0 pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:39.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:38 smithi052 bash[25156]: cluster 2024-04-02T06:53:37.378095+0000 mgr.smithi037.yymbdj (mgr.14215) 150 : cluster 0 pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:40.848 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:53:41.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:40 smithi037 bash[18626]: cluster 2024-04-02T06:53:39.378913+0000 mgr.smithi037.yymbdj (mgr.14215) 151 : cluster 0 pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:41.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:40 smithi052 bash[25156]: cluster 2024-04-02T06:53:39.378913+0000 mgr.smithi037.yymbdj (mgr.14215) 151 : cluster 0 pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:43.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:42 smithi037 bash[18626]: cluster 2024-04-02T06:53:41.379775+0000 mgr.smithi037.yymbdj (mgr.14215) 152 : cluster 0 pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:43.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:42 smithi052 bash[25156]: cluster 2024-04-02T06:53:41.379775+0000 mgr.smithi037.yymbdj (mgr.14215) 152 : cluster 0 pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:43.447 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:53:44.007 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":19,"flags":0,"active_gid":14215,"active_name":"smithi037.yymbdj","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6800","nonce":2951439759},{"type":"v1","addr":"172.21.15.37:6801","nonce":2951439759}]},"active_addr":"172.21.15.37:6801/2951439759","active_change":"2024-04-02T06:50:30.388414+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":14231,"name":"smithi052.hwhbeq","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/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":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"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":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"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/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":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"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":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"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.37:8443/","prometheus":"http://172.21.15.37: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.37:0","nonce":2955352527}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.37:0","nonce":1568800525}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.37:0","nonce":412910138}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.37:0","nonce":1606969688}]}]} 2024-04-02T06:53:44.013 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-04-02T06:53:44.013 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-04-02T06:53:44.014 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd dump --format=json 2024-04-02T06:53:44.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:43 smithi037 bash[18626]: audit 2024-04-02T06:53:43.437620+0000 mon.smithi037 (mon.0) 736 : audit 0 from='client.? 172.21.15.37:0/1306397441' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-02T06:53:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:43 smithi052 bash[25156]: audit 2024-04-02T06:53:43.437620+0000 mon.smithi037 (mon.0) 736 : audit 0 from='client.? 172.21.15.37:0/1306397441' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-02T06:53:45.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:44 smithi037 bash[18626]: cluster 2024-04-02T06:53:43.380379+0000 mgr.smithi037.yymbdj (mgr.14215) 153 : cluster 0 pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:44 smithi052 bash[25156]: cluster 2024-04-02T06:53:43.380379+0000 mgr.smithi037.yymbdj (mgr.14215) 153 : cluster 0 pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:46.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:45 smithi037 bash[18626]: audit 2024-04-02T06:53:45.471035+0000 mon.smithi037 (mon.0) 737 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:53:46.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:45 smithi052 bash[25156]: audit 2024-04-02T06:53:45.471035+0000 mon.smithi037 (mon.0) 737 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:53:47.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:46 smithi037 bash[18626]: cluster 2024-04-02T06:53:45.381103+0000 mgr.smithi037.yymbdj (mgr.14215) 154 : cluster 0 pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:47.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:46 smithi052 bash[25156]: cluster 2024-04-02T06:53:45.381103+0000 mgr.smithi037.yymbdj (mgr.14215) 154 : cluster 0 pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:48.825 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:53:49.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:48 smithi037 bash[18626]: cluster 2024-04-02T06:53:47.381882+0000 mgr.smithi037.yymbdj (mgr.14215) 155 : cluster 0 pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:49.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:48 smithi052 bash[25156]: cluster 2024-04-02T06:53:47.381882+0000 mgr.smithi037.yymbdj (mgr.14215) 155 : cluster 0 pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:51.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:50 smithi037 bash[18626]: cluster 2024-04-02T06:53:49.382687+0000 mgr.smithi037.yymbdj (mgr.14215) 156 : cluster 0 pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:51.350 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:53:51.351 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":38,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","created":"2024-04-02T06:47:11.615847+0000","modified":"2024-04-02T06:52:55.203501+0000","last_up_change":"2024-04-02T06:52:51.336789+0000","last_in_change":"2024-04-02T06:52:06.509087+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"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-04-02T06:52:38.972880+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":"d6f0d68a-c31f-4a7f-9a2a-615fe61da9d0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":36,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6800","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6801","nonce":50716923}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6802","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6803","nonce":50716923}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6806","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6807","nonce":50716923}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6804","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6805","nonce":50716923}]},"public_addr":"172.21.15.52:6801/50716923","cluster_addr":"172.21.15.52:6803/50716923","heartbeat_back_addr":"172.21.15.52:6807/50716923","heartbeat_front_addr":"172.21.15.52:6805/50716923","state":["exists","up"]},{"osd":1,"uuid":"00c74907-11e6-4383-9735-d3bf1708a279","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6802","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6803","nonce":1789102859}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6804","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6805","nonce":1789102859}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6808","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6809","nonce":1789102859}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6806","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6807","nonce":1789102859}]},"public_addr":"172.21.15.37:6803/1789102859","cluster_addr":"172.21.15.37:6805/1789102859","heartbeat_back_addr":"172.21.15.37:6809/1789102859","heartbeat_front_addr":"172.21.15.37:6807/1789102859","state":["exists","up"]},{"osd":2,"uuid":"9b0117ed-ed70-412c-94d3-a712201361fc","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.52:6808","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6809","nonce":286255222}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6810","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6811","nonce":286255222}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6814","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6815","nonce":286255222}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6812","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6813","nonce":286255222}]},"public_addr":"172.21.15.52:6809/286255222","cluster_addr":"172.21.15.52:6811/286255222","heartbeat_back_addr":"172.21.15.52:6815/286255222","heartbeat_front_addr":"172.21.15.52:6813/286255222","state":["exists","up"]},{"osd":3,"uuid":"38f447c7-5636-4b23-aea7-eeaaa9c173b2","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.37:6810","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6811","nonce":2024787513}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6812","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6813","nonce":2024787513}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6816","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6817","nonce":2024787513}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6814","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6815","nonce":2024787513}]},"public_addr":"172.21.15.37:6811/2024787513","cluster_addr":"172.21.15.37:6813/2024787513","heartbeat_back_addr":"172.21.15.37:6817/2024787513","heartbeat_front_addr":"172.21.15.37:6815/2024787513","state":["exists","up"]},{"osd":4,"uuid":"77290f4d-31d1-42fa-aa0b-3721ded46c5e","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.52:6816","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6817","nonce":409993662}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6818","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6819","nonce":409993662}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6822","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6823","nonce":409993662}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6820","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6821","nonce":409993662}]},"public_addr":"172.21.15.52:6817/409993662","cluster_addr":"172.21.15.52:6819/409993662","heartbeat_back_addr":"172.21.15.52:6823/409993662","heartbeat_front_addr":"172.21.15.52:6821/409993662","state":["exists","up"]},{"osd":5,"uuid":"d56bd3a4-3ffe-42e0-a3ba-59e5b8f72ef8","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.37:6818","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6819","nonce":331039701}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6820","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6821","nonce":331039701}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6824","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6825","nonce":331039701}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6822","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6823","nonce":331039701}]},"public_addr":"172.21.15.37:6819/331039701","cluster_addr":"172.21.15.37:6821/331039701","heartbeat_back_addr":"172.21.15.37:6825/331039701","heartbeat_front_addr":"172.21.15.37:6823/331039701","state":["exists","up"]},{"osd":6,"uuid":"9d5a3dd3-6420-4eea-8304-e663ddf77a07","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.52:6824","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6825","nonce":1677581049}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6826","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6827","nonce":1677581049}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6830","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6831","nonce":1677581049}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6828","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6829","nonce":1677581049}]},"public_addr":"172.21.15.52:6825/1677581049","cluster_addr":"172.21.15.52:6827/1677581049","heartbeat_back_addr":"172.21.15.52:6831/1677581049","heartbeat_front_addr":"172.21.15.52:6829/1677581049","state":["exists","up"]},{"osd":7,"uuid":"097f83c6-e621-48c8-b6b5-02bc99aa934a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6826","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6827","nonce":3852816081}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6828","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6829","nonce":3852816081}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6832","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6833","nonce":3852816081}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6830","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6831","nonce":3852816081}]},"public_addr":"172.21.15.37:6827/3852816081","cluster_addr":"172.21.15.37:6829/3852816081","heartbeat_back_addr":"172.21.15.37:6833/3852816081","heartbeat_front_addr":"172.21.15.37:6831/3852816081","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-04-02T06:52:31.198312+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-04-02T06:52:33.780865+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-04-02T06:52:36.401916+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-04-02T06:52:39.325712+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-04-02T06:52:42.585732+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-04-02T06:52:45.538318+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-04-02T06:52:46.075988+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-04-02T06:52:49.954554+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.37:0/1097346873":"2024-04-03T06:50:30.388066+0000","172.21.15.37:6801/593817094":"2024-04-03T06:50:30.388066+0000","172.21.15.37:6800/593817094":"2024-04-03T06:50:30.388066+0000","172.21.15.37:0/2518756809":"2024-04-03T06:50:30.388066+0000","172.21.15.37:0/479093758":"2024-04-03T06:48:27.208765+0000","172.21.15.37:0/2922979551":"2024-04-03T06:48:27.208765+0000","172.21.15.37:0/253401310":"2024-04-03T06:50:30.388066+0000","172.21.15.37:0/1270158472":"2024-04-03T06:48:27.208765+0000","172.21.15.37:6800/1079366827":"2024-04-03T06:47:42.676621+0000","172.21.15.37:0/3533763370":"2024-04-03T06:47:42.676621+0000","172.21.15.37:6801/1079366827":"2024-04-03T06:47:42.676621+0000","172.21.15.37:0/3096041146":"2024-04-03T06:47:42.676621+0000","172.21.15.37:0/1473829332":"2024-04-03T06:47:42.676621+0000","172.21.15.37:6801/3403850564":"2024-04-03T06:48:27.208765+0000","172.21.15.37:6800/3403850564":"2024-04-03T06:48:27.208765+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-04-02T06:53:51.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:50 smithi052 bash[25156]: cluster 2024-04-02T06:53:49.382687+0000 mgr.smithi037.yymbdj (mgr.14215) 156 : cluster 0 pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:51.970 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-04-02T06:53:51.973 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd dump --format=json 2024-04-02T06:53:52.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:51 smithi037 bash[18626]: audit 2024-04-02T06:53:51.351391+0000 mon.smithi037 (mon.0) 738 : audit 0 from='client.? 172.21.15.37:0/4192120298' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-02T06:53:52.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:51 smithi052 bash[25156]: audit 2024-04-02T06:53:51.351391+0000 mon.smithi037 (mon.0) 738 : audit 0 from='client.? 172.21.15.37:0/4192120298' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-02T06:53:53.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:52 smithi037 bash[18626]: cluster 2024-04-02T06:53:51.383369+0000 mgr.smithi037.yymbdj (mgr.14215) 157 : cluster 0 pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:53.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:52 smithi052 bash[25156]: cluster 2024-04-02T06:53:51.383369+0000 mgr.smithi037.yymbdj (mgr.14215) 157 : cluster 0 pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:55.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:54 smithi037 bash[18626]: cluster 2024-04-02T06:53:53.383936+0000 mgr.smithi037.yymbdj (mgr.14215) 158 : cluster 0 pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:55.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:54 smithi052 bash[25156]: cluster 2024-04-02T06:53:53.383936+0000 mgr.smithi037.yymbdj (mgr.14215) 158 : cluster 0 pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:56.776 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:53:57.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:56 smithi037 bash[18626]: cluster 2024-04-02T06:53:55.384529+0000 mgr.smithi037.yymbdj (mgr.14215) 159 : cluster 0 pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:57.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:56 smithi052 bash[25156]: cluster 2024-04-02T06:53:55.384529+0000 mgr.smithi037.yymbdj (mgr.14215) 159 : cluster 0 pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:59.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:53:58 smithi037 bash[18626]: cluster 2024-04-02T06:53:57.385127+0000 mgr.smithi037.yymbdj (mgr.14215) 160 : cluster 0 pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:59.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:53:58 smithi052 bash[25156]: cluster 2024-04-02T06:53:57.385127+0000 mgr.smithi037.yymbdj (mgr.14215) 160 : cluster 0 pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:53:59.482 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:53:59.482 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":38,"fsid":"aad02026-f0bc-11ee-b647-cb9ed24678a4","created":"2024-04-02T06:47:11.615847+0000","modified":"2024-04-02T06:52:55.203501+0000","last_up_change":"2024-04-02T06:52:51.336789+0000","last_in_change":"2024-04-02T06:52:06.509087+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"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-04-02T06:52:38.972880+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":"d6f0d68a-c31f-4a7f-9a2a-615fe61da9d0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":36,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6800","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6801","nonce":50716923}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6802","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6803","nonce":50716923}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6806","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6807","nonce":50716923}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6804","nonce":50716923},{"type":"v1","addr":"172.21.15.52:6805","nonce":50716923}]},"public_addr":"172.21.15.52:6801/50716923","cluster_addr":"172.21.15.52:6803/50716923","heartbeat_back_addr":"172.21.15.52:6807/50716923","heartbeat_front_addr":"172.21.15.52:6805/50716923","state":["exists","up"]},{"osd":1,"uuid":"00c74907-11e6-4383-9735-d3bf1708a279","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6802","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6803","nonce":1789102859}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6804","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6805","nonce":1789102859}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6808","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6809","nonce":1789102859}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6806","nonce":1789102859},{"type":"v1","addr":"172.21.15.37:6807","nonce":1789102859}]},"public_addr":"172.21.15.37:6803/1789102859","cluster_addr":"172.21.15.37:6805/1789102859","heartbeat_back_addr":"172.21.15.37:6809/1789102859","heartbeat_front_addr":"172.21.15.37:6807/1789102859","state":["exists","up"]},{"osd":2,"uuid":"9b0117ed-ed70-412c-94d3-a712201361fc","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.52:6808","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6809","nonce":286255222}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6810","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6811","nonce":286255222}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6814","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6815","nonce":286255222}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6812","nonce":286255222},{"type":"v1","addr":"172.21.15.52:6813","nonce":286255222}]},"public_addr":"172.21.15.52:6809/286255222","cluster_addr":"172.21.15.52:6811/286255222","heartbeat_back_addr":"172.21.15.52:6815/286255222","heartbeat_front_addr":"172.21.15.52:6813/286255222","state":["exists","up"]},{"osd":3,"uuid":"38f447c7-5636-4b23-aea7-eeaaa9c173b2","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.37:6810","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6811","nonce":2024787513}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6812","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6813","nonce":2024787513}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6816","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6817","nonce":2024787513}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6814","nonce":2024787513},{"type":"v1","addr":"172.21.15.37:6815","nonce":2024787513}]},"public_addr":"172.21.15.37:6811/2024787513","cluster_addr":"172.21.15.37:6813/2024787513","heartbeat_back_addr":"172.21.15.37:6817/2024787513","heartbeat_front_addr":"172.21.15.37:6815/2024787513","state":["exists","up"]},{"osd":4,"uuid":"77290f4d-31d1-42fa-aa0b-3721ded46c5e","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.52:6816","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6817","nonce":409993662}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6818","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6819","nonce":409993662}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6822","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6823","nonce":409993662}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6820","nonce":409993662},{"type":"v1","addr":"172.21.15.52:6821","nonce":409993662}]},"public_addr":"172.21.15.52:6817/409993662","cluster_addr":"172.21.15.52:6819/409993662","heartbeat_back_addr":"172.21.15.52:6823/409993662","heartbeat_front_addr":"172.21.15.52:6821/409993662","state":["exists","up"]},{"osd":5,"uuid":"d56bd3a4-3ffe-42e0-a3ba-59e5b8f72ef8","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.37:6818","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6819","nonce":331039701}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6820","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6821","nonce":331039701}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6824","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6825","nonce":331039701}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6822","nonce":331039701},{"type":"v1","addr":"172.21.15.37:6823","nonce":331039701}]},"public_addr":"172.21.15.37:6819/331039701","cluster_addr":"172.21.15.37:6821/331039701","heartbeat_back_addr":"172.21.15.37:6825/331039701","heartbeat_front_addr":"172.21.15.37:6823/331039701","state":["exists","up"]},{"osd":6,"uuid":"9d5a3dd3-6420-4eea-8304-e663ddf77a07","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.52:6824","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6825","nonce":1677581049}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6826","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6827","nonce":1677581049}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6830","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6831","nonce":1677581049}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6828","nonce":1677581049},{"type":"v1","addr":"172.21.15.52:6829","nonce":1677581049}]},"public_addr":"172.21.15.52:6825/1677581049","cluster_addr":"172.21.15.52:6827/1677581049","heartbeat_back_addr":"172.21.15.52:6831/1677581049","heartbeat_front_addr":"172.21.15.52:6829/1677581049","state":["exists","up"]},{"osd":7,"uuid":"097f83c6-e621-48c8-b6b5-02bc99aa934a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6826","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6827","nonce":3852816081}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6828","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6829","nonce":3852816081}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6832","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6833","nonce":3852816081}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6830","nonce":3852816081},{"type":"v1","addr":"172.21.15.37:6831","nonce":3852816081}]},"public_addr":"172.21.15.37:6827/3852816081","cluster_addr":"172.21.15.37:6829/3852816081","heartbeat_back_addr":"172.21.15.37:6833/3852816081","heartbeat_front_addr":"172.21.15.37:6831/3852816081","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-04-02T06:52:31.198312+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-04-02T06:52:33.780865+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-04-02T06:52:36.401916+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-04-02T06:52:39.325712+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-04-02T06:52:42.585732+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-04-02T06:52:45.538318+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-04-02T06:52:46.075988+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-04-02T06:52:49.954554+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.37:0/1097346873":"2024-04-03T06:50:30.388066+0000","172.21.15.37:6801/593817094":"2024-04-03T06:50:30.388066+0000","172.21.15.37:6800/593817094":"2024-04-03T06:50:30.388066+0000","172.21.15.37:0/2518756809":"2024-04-03T06:50:30.388066+0000","172.21.15.37:0/479093758":"2024-04-03T06:48:27.208765+0000","172.21.15.37:0/2922979551":"2024-04-03T06:48:27.208765+0000","172.21.15.37:0/253401310":"2024-04-03T06:50:30.388066+0000","172.21.15.37:0/1270158472":"2024-04-03T06:48:27.208765+0000","172.21.15.37:6800/1079366827":"2024-04-03T06:47:42.676621+0000","172.21.15.37:0/3533763370":"2024-04-03T06:47:42.676621+0000","172.21.15.37:6801/1079366827":"2024-04-03T06:47:42.676621+0000","172.21.15.37:0/3096041146":"2024-04-03T06:47:42.676621+0000","172.21.15.37:0/1473829332":"2024-04-03T06:47:42.676621+0000","172.21.15.37:6801/3403850564":"2024-04-03T06:48:27.208765+0000","172.21.15.37:6800/3403850564":"2024-04-03T06:48:27.208765+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-04-02T06:54:00.100 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph tell osd.0 flush_pg_stats 2024-04-02T06:54:00.101 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph tell osd.1 flush_pg_stats 2024-04-02T06:54:00.101 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph tell osd.2 flush_pg_stats 2024-04-02T06:54:00.101 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph tell osd.3 flush_pg_stats 2024-04-02T06:54:00.102 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph tell osd.4 flush_pg_stats 2024-04-02T06:54:00.102 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph tell osd.5 flush_pg_stats 2024-04-02T06:54:00.102 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph tell osd.6 flush_pg_stats 2024-04-02T06:54:00.103 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph tell osd.7 flush_pg_stats 2024-04-02T06:54:00.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:00 smithi037 bash[18626]: audit 2024-04-02T06:53:59.482356+0000 mon.smithi037 (mon.0) 739 : audit 0 from='client.? 172.21.15.37:0/3689718213' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-02T06:54:00.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:00 smithi052 bash[25156]: audit 2024-04-02T06:53:59.482356+0000 mon.smithi037 (mon.0) 739 : audit 0 from='client.? 172.21.15.37:0/3689718213' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-02T06:54:01.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:01 smithi037 bash[18626]: cluster 2024-04-02T06:53:59.385551+0000 mgr.smithi037.yymbdj (mgr.14215) 161 : cluster 0 pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:01.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:01 smithi037 bash[18626]: audit 2024-04-02T06:54:00.470330+0000 mon.smithi037 (mon.0) 740 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:54:01.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:01 smithi052 bash[25156]: cluster 2024-04-02T06:53:59.385551+0000 mgr.smithi037.yymbdj (mgr.14215) 161 : cluster 0 pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:01.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:01 smithi052 bash[25156]: audit 2024-04-02T06:54:00.470330+0000 mon.smithi037 (mon.0) 740 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:54:03.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:03 smithi037 bash[18626]: cluster 2024-04-02T06:54:01.386121+0000 mgr.smithi037.yymbdj (mgr.14215) 162 : cluster 0 pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:03.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:03 smithi052 bash[25156]: cluster 2024-04-02T06:54:01.386121+0000 mgr.smithi037.yymbdj (mgr.14215) 162 : cluster 0 pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:05.030 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:05.030 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:05.031 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:05.032 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:05.032 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:05.032 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:05.033 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:05.036 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:05.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:05 smithi037 bash[18626]: cluster 2024-04-02T06:54:03.386773+0000 mgr.smithi037.yymbdj (mgr.14215) 163 : cluster 0 pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:05.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:05 smithi052 bash[25156]: cluster 2024-04-02T06:54:03.386773+0000 mgr.smithi037.yymbdj (mgr.14215) 163 : cluster 0 pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:07.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:07 smithi037 bash[18626]: cluster 2024-04-02T06:54:05.387353+0000 mgr.smithi037.yymbdj (mgr.14215) 164 : cluster 0 pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:07.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:07 smithi052 bash[25156]: cluster 2024-04-02T06:54:05.387353+0000 mgr.smithi037.yymbdj (mgr.14215) 164 : cluster 0 pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:08.328 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:08 smithi037 bash[18626]: cluster 2024-04-02T06:54:07.387866+0000 mgr.smithi037.yymbdj (mgr.14215) 165 : cluster 0 pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:08.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:08 smithi052 bash[25156]: cluster 2024-04-02T06:54:07.387866+0000 mgr.smithi037.yymbdj (mgr.14215) 165 : cluster 0 pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:10.809 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:10 smithi037 bash[18626]: cluster 2024-04-02T06:54:09.388379+0000 mgr.smithi037.yymbdj (mgr.14215) 166 : cluster 0 pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:10.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:10 smithi052 bash[25156]: cluster 2024-04-02T06:54:09.388379+0000 mgr.smithi037.yymbdj (mgr.14215) 166 : cluster 0 pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:12.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:12 smithi037 bash[18626]: cluster 2024-04-02T06:54:11.388853+0000 mgr.smithi037.yymbdj (mgr.14215) 167 : cluster 0 pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:12.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:12 smithi052 bash[25156]: cluster 2024-04-02T06:54:11.388853+0000 mgr.smithi037.yymbdj (mgr.14215) 167 : cluster 0 pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:14.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:14 smithi037 bash[18626]: cluster 2024-04-02T06:54:13.389460+0000 mgr.smithi037.yymbdj (mgr.14215) 168 : cluster 0 pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:14.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:14 smithi052 bash[25156]: cluster 2024-04-02T06:54:13.389460+0000 mgr.smithi037.yymbdj (mgr.14215) 168 : cluster 0 pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:16.786 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:16 smithi037 bash[18626]: cluster 2024-04-02T06:54:15.389924+0000 mgr.smithi037.yymbdj (mgr.14215) 169 : cluster 0 pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:16.786 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:16 smithi037 bash[18626]: audit 2024-04-02T06:54:15.470989+0000 mon.smithi037 (mon.0) 741 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:54:16.787 INFO:teuthology.orchestra.run.smithi037.stdout:77309411351 2024-04-02T06:54:16.787 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.1 2024-04-02T06:54:16.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:16 smithi052 bash[25156]: cluster 2024-04-02T06:54:15.389924+0000 mgr.smithi037.yymbdj (mgr.14215) 169 : cluster 0 pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:16.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:16 smithi052 bash[25156]: audit 2024-04-02T06:54:15.470989+0000 mon.smithi037 (mon.0) 741 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:54:17.228 INFO:teuthology.orchestra.run.smithi037.stdout:68719476759 2024-04-02T06:54:17.228 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.0 2024-04-02T06:54:17.661 INFO:teuthology.orchestra.run.smithi037.stdout:128849018900 2024-04-02T06:54:17.662 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.5 2024-04-02T06:54:18.051 INFO:teuthology.orchestra.run.smithi037.stdout:103079215124 2024-04-02T06:54:18.052 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.3 2024-04-02T06:54:18.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:18 smithi037 bash[18626]: cluster 2024-04-02T06:54:17.390354+0000 mgr.smithi037.yymbdj (mgr.14215) 170 : cluster 0 pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:18.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:18 smithi052 bash[25156]: cluster 2024-04-02T06:54:17.390354+0000 mgr.smithi037.yymbdj (mgr.14215) 170 : cluster 0 pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:19.609 INFO:teuthology.orchestra.run.smithi037.stdout:115964117013 2024-04-02T06:54:19.609 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.4 2024-04-02T06:54:19.674 INFO:teuthology.orchestra.run.smithi037.stdout:128849018900 2024-04-02T06:54:19.674 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.6 2024-04-02T06:54:19.817 INFO:teuthology.orchestra.run.smithi037.stdout:90194313238 2024-04-02T06:54:19.818 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.2 2024-04-02T06:54:20.003 INFO:teuthology.orchestra.run.smithi037.stdout:146028888084 2024-04-02T06:54:20.003 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph osd last-stat-seq osd.7 2024-04-02T06:54:20.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:20 smithi037 bash[18626]: cluster 2024-04-02T06:54:19.390970+0000 mgr.smithi037.yymbdj (mgr.14215) 171 : cluster 0 pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:20.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:20 smithi052 bash[25156]: cluster 2024-04-02T06:54:19.390970+0000 mgr.smithi037.yymbdj (mgr.14215) 171 : cluster 0 pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:22.530 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:22.534 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:22.534 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:22.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:22 smithi037 bash[18626]: cluster 2024-04-02T06:54:21.391524+0000 mgr.smithi037.yymbdj (mgr.14215) 172 : cluster 0 pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:22.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:22 smithi052 bash[25156]: cluster 2024-04-02T06:54:21.391524+0000 mgr.smithi037.yymbdj (mgr.14215) 172 : cluster 0 pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:23.549 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:24.598 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:24 smithi037 bash[18626]: cluster 2024-04-02T06:54:23.392107+0000 mgr.smithi037.yymbdj (mgr.14215) 173 : cluster 0 pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:24.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:24 smithi052 bash[25156]: cluster 2024-04-02T06:54:23.392107+0000 mgr.smithi037.yymbdj (mgr.14215) 173 : cluster 0 pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:26.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:26 smithi037 bash[18626]: cluster 2024-04-02T06:54:25.392661+0000 mgr.smithi037.yymbdj (mgr.14215) 174 : cluster 0 pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:26.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:26 smithi052 bash[25156]: cluster 2024-04-02T06:54:25.392661+0000 mgr.smithi037.yymbdj (mgr.14215) 174 : cluster 0 pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:28.032 INFO:teuthology.orchestra.run.smithi037.stdout:77309411354 2024-04-02T06:54:28.146 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:28.147 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:28.147 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:28.147 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:28.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:28 smithi037 bash[18626]: cluster 2024-04-02T06:54:27.393253+0000 mgr.smithi037.yymbdj (mgr.14215) 175 : cluster 0 pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:28.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:28 smithi037 bash[18626]: audit 2024-04-02T06:54:28.033746+0000 mon.smithi037 (mon.0) 742 : audit 0 from='client.? 172.21.15.37:0/86765890' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-02T06:54:28.882 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:28 smithi052 bash[25156]: cluster 2024-04-02T06:54:27.393253+0000 mgr.smithi037.yymbdj (mgr.14215) 175 : cluster 0 pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:28.882 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:28 smithi052 bash[25156]: audit 2024-04-02T06:54:28.033746+0000 mon.smithi037 (mon.0) 742 : audit 0 from='client.? 172.21.15.37:0/86765890' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-02T06:54:29.491 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411351 got 77309411354 for osd.1 2024-04-02T06:54:29.491 DEBUG:teuthology.parallel:result is None 2024-04-02T06:54:29.606 INFO:teuthology.orchestra.run.smithi037.stdout:68719476762 2024-04-02T06:54:29.708 INFO:teuthology.orchestra.run.smithi037.stdout:128849018903 2024-04-02T06:54:30.101 INFO:teuthology.orchestra.run.smithi037.stdout:103079215127 2024-04-02T06:54:30.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:30 smithi037 bash[18626]: cluster 2024-04-02T06:54:29.393725+0000 mgr.smithi037.yymbdj (mgr.14215) 176 : cluster 0 pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:30.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:30 smithi037 bash[18626]: audit 2024-04-02T06:54:29.608159+0000 mon.smithi037 (mon.0) 743 : audit 0 from='client.? 172.21.15.37:0/3564936559' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-02T06:54:30.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:30 smithi037 bash[18626]: audit 2024-04-02T06:54:29.710711+0000 mon.smithi037 (mon.0) 744 : audit 0 from='client.? 172.21.15.37:0/3523137930' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-02T06:54:30.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:30 smithi037 bash[18626]: audit 2024-04-02T06:54:30.103065+0000 mon.smithi037 (mon.0) 745 : audit 0 from='client.? 172.21.15.37:0/181068162' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-02T06:54:30.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:30 smithi037 bash[18626]: audit 2024-04-02T06:54:30.471826+0000 mon.smithi037 (mon.0) 746 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:54:30.880 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476759 got 68719476762 for osd.0 2024-04-02T06:54:30.880 DEBUG:teuthology.parallel:result is None 2024-04-02T06:54:30.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:30 smithi052 bash[25156]: cluster 2024-04-02T06:54:29.393725+0000 mgr.smithi037.yymbdj (mgr.14215) 176 : cluster 0 pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:30.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:30 smithi052 bash[25156]: audit 2024-04-02T06:54:29.608159+0000 mon.smithi037 (mon.0) 743 : audit 0 from='client.? 172.21.15.37:0/3564936559' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-02T06:54:30.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:30 smithi052 bash[25156]: audit 2024-04-02T06:54:29.710711+0000 mon.smithi037 (mon.0) 744 : audit 0 from='client.? 172.21.15.37:0/3523137930' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-02T06:54:30.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:30 smithi052 bash[25156]: audit 2024-04-02T06:54:30.103065+0000 mon.smithi037 (mon.0) 745 : audit 0 from='client.? 172.21.15.37:0/181068162' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-02T06:54:30.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:30 smithi052 bash[25156]: audit 2024-04-02T06:54:30.471826+0000 mon.smithi037 (mon.0) 746 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:54:31.840 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018900 got 128849018903 for osd.5 2024-04-02T06:54:31.840 DEBUG:teuthology.parallel:result is None 2024-04-02T06:54:32.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:32 smithi037 bash[18626]: cluster 2024-04-02T06:54:31.394317+0000 mgr.smithi037.yymbdj (mgr.14215) 177 : cluster 0 pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:32.877 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215124 got 103079215127 for osd.3 2024-04-02T06:54:32.877 DEBUG:teuthology.parallel:result is None 2024-04-02T06:54:32.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:32 smithi052 bash[25156]: cluster 2024-04-02T06:54:31.394317+0000 mgr.smithi037.yymbdj (mgr.14215) 177 : cluster 0 pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:34.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:34 smithi037 bash[18626]: cluster 2024-04-02T06:54:33.394734+0000 mgr.smithi037.yymbdj (mgr.14215) 178 : cluster 0 pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:34.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:34 smithi052 bash[25156]: cluster 2024-04-02T06:54:33.394734+0000 mgr.smithi037.yymbdj (mgr.14215) 178 : cluster 0 pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:36.087 INFO:teuthology.orchestra.run.smithi037.stdout:146028888087 2024-04-02T06:54:36.308 INFO:teuthology.orchestra.run.smithi037.stdout:115964117017 2024-04-02T06:54:36.486 INFO:teuthology.orchestra.run.smithi037.stdout:128849018904 2024-04-02T06:54:36.702 INFO:teuthology.orchestra.run.smithi037.stdout:90194313242 2024-04-02T06:54:36.718 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:36 smithi037 bash[18626]: cluster 2024-04-02T06:54:35.395267+0000 mgr.smithi037.yymbdj (mgr.14215) 179 : cluster 0 pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:36.718 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:36 smithi037 bash[18626]: audit 2024-04-02T06:54:36.089539+0000 mon.smithi037 (mon.0) 747 : audit 0 from='client.? 172.21.15.37:0/1848634796' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-04-02T06:54:36.718 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:36 smithi037 bash[18626]: audit 2024-04-02T06:54:36.310124+0000 mon.smithi037 (mon.0) 748 : audit 0 from='client.? 172.21.15.37:0/2918315' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-02T06:54:36.719 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:36 smithi037 bash[18626]: audit 2024-04-02T06:54:36.488896+0000 mon.smithi037 (mon.0) 749 : audit 0 from='client.? 172.21.15.37:0/3364935706' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-04-02T06:54:36.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:36 smithi052 bash[25156]: cluster 2024-04-02T06:54:35.395267+0000 mgr.smithi037.yymbdj (mgr.14215) 179 : cluster 0 pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:36.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:36 smithi052 bash[25156]: audit 2024-04-02T06:54:36.089539+0000 mon.smithi037 (mon.0) 747 : audit 0 from='client.? 172.21.15.37:0/1848634796' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-04-02T06:54:36.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:36 smithi052 bash[25156]: audit 2024-04-02T06:54:36.310124+0000 mon.smithi037 (mon.0) 748 : audit 0 from='client.? 172.21.15.37:0/2918315' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-02T06:54:36.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:36 smithi052 bash[25156]: audit 2024-04-02T06:54:36.488896+0000 mon.smithi037 (mon.0) 749 : audit 0 from='client.? 172.21.15.37:0/3364935706' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-04-02T06:54:37.440 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888084 got 146028888087 for osd.7 2024-04-02T06:54:37.440 DEBUG:teuthology.parallel:result is None 2024-04-02T06:54:37.544 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964117013 got 115964117017 for osd.4 2024-04-02T06:54:37.545 DEBUG:teuthology.parallel:result is None 2024-04-02T06:54:37.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:37 smithi037 bash[18626]: audit 2024-04-02T06:54:36.704360+0000 mon.smithi037 (mon.0) 750 : audit 0 from='client.? 172.21.15.37:0/2265982916' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-02T06:54:37.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:37 smithi037 bash[18626]: audit 2024-04-02T06:54:36.970743+0000 mon.smithi037 (mon.0) 751 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:54:37.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:37 smithi052 bash[25156]: audit 2024-04-02T06:54:36.704360+0000 mon.smithi037 (mon.0) 750 : audit 0 from='client.? 172.21.15.37:0/2265982916' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-02T06:54:37.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:37 smithi052 bash[25156]: audit 2024-04-02T06:54:36.970743+0000 mon.smithi037 (mon.0) 751 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:54:38.147 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313238 got 90194313242 for osd.2 2024-04-02T06:54:38.148 DEBUG:teuthology.parallel:result is None 2024-04-02T06:54:38.157 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018900 got 128849018904 for osd.6 2024-04-02T06:54:38.157 DEBUG:teuthology.parallel:result is None 2024-04-02T06:54:38.157 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-04-02T06:54:38.157 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph pg dump --format=json 2024-04-02T06:54:38.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:38 smithi037 bash[18626]: cluster 2024-04-02T06:54:37.395825+0000 mgr.smithi037.yymbdj (mgr.14215) 180 : cluster 0 pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:38.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:38 smithi052 bash[25156]: cluster 2024-04-02T06:54:37.395825+0000 mgr.smithi037.yymbdj (mgr.14215) 180 : cluster 0 pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:40.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:40 smithi037 bash[18626]: cluster 2024-04-02T06:54:39.396421+0000 mgr.smithi037.yymbdj (mgr.14215) 181 : cluster 0 pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:40.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:40 smithi052 bash[25156]: cluster 2024-04-02T06:54:39.396421+0000 mgr.smithi037.yymbdj (mgr.14215) 181 : cluster 0 pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:42.041 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:42.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:42 smithi037 bash[18626]: cluster 2024-04-02T06:54:41.396952+0000 mgr.smithi037.yymbdj (mgr.14215) 182 : cluster 0 pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:42.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:42 smithi052 bash[25156]: cluster 2024-04-02T06:54:41.396952+0000 mgr.smithi037.yymbdj (mgr.14215) 182 : cluster 0 pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:43.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:43 smithi037 bash[18626]: audit 2024-04-02T06:54:42.558616+0000 mon.smithi037 (mon.0) 752 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:54:43.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:43 smithi037 bash[18626]: audit 2024-04-02T06:54:42.564293+0000 mon.smithi037 (mon.0) 753 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:54:43.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:43 smithi037 bash[18626]: audit 2024-04-02T06:54:42.961388+0000 mon.smithi037 (mon.0) 754 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:54:43.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:43 smithi037 bash[18626]: audit 2024-04-02T06:54:42.968270+0000 mon.smithi037 (mon.0) 755 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:54:43.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:43 smithi037 bash[18626]: audit 2024-04-02T06:54:43.551426+0000 mon.smithi037 (mon.0) 756 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:54:43.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:43 smithi037 bash[18626]: audit 2024-04-02T06:54:43.552558+0000 mon.smithi037 (mon.0) 757 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:54:43.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:43 smithi052 bash[25156]: audit 2024-04-02T06:54:42.558616+0000 mon.smithi037 (mon.0) 752 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:54:43.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:43 smithi052 bash[25156]: audit 2024-04-02T06:54:42.564293+0000 mon.smithi037 (mon.0) 753 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:54:43.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:43 smithi052 bash[25156]: audit 2024-04-02T06:54:42.961388+0000 mon.smithi037 (mon.0) 754 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:54:43.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:43 smithi052 bash[25156]: audit 2024-04-02T06:54:42.968270+0000 mon.smithi037 (mon.0) 755 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:54:43.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:43 smithi052 bash[25156]: audit 2024-04-02T06:54:43.551426+0000 mon.smithi037 (mon.0) 756 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:54:43.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:43 smithi052 bash[25156]: audit 2024-04-02T06:54:43.552558+0000 mon.smithi037 (mon.0) 757 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:54:44.524 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:54:44.527 INFO:teuthology.orchestra.run.smithi037.stderr:dumped all 2024-04-02T06:54:44.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:44 smithi052 bash[25156]: cluster 2024-04-02T06:54:43.397352+0000 mgr.smithi037.yymbdj (mgr.14215) 183 : cluster 0 pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:44.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:44 smithi052 bash[25156]: audit 2024-04-02T06:54:43.557709+0000 mon.smithi037 (mon.0) 758 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:54:44.657 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:44 smithi052 bash[25156]: audit 2024-04-02T06:54:43.565983+0000 mon.smithi037 (mon.0) 759 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:54:44.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:44 smithi037 bash[18626]: cluster 2024-04-02T06:54:43.397352+0000 mgr.smithi037.yymbdj (mgr.14215) 183 : cluster 0 pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:44.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:44 smithi037 bash[18626]: audit 2024-04-02T06:54:43.557709+0000 mon.smithi037 (mon.0) 758 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:54:44.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:44 smithi037 bash[18626]: audit 2024-04-02T06:54:43.565983+0000 mon.smithi037 (mon.0) 759 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:54:45.106 INFO:teuthology.orchestra.run.smithi037.stdout:{"pg_ready":true,"pg_map":{"version":152,"stamp":"2024-04-02T06:54:43.397185+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":196,"num_read_kb":172,"num_write":335,"num_write_kb":6592,"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":277,"ondisk_log_size":277,"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":233812,"kb_used_data":4716,"kb_used_omap":12,"kb_used_meta":228531,"kb_avail":749694636,"statfs":{"total":767926730752,"available":767687307264,"internally_reserved":0,"allocated":4829184,"data_stored":2993944,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12751,"internal_metadata":234016305},"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.003170"},"pg_stats":[{"pgid":"1.0","version":"38'277","reported_seq":388,"reported_epoch":38,"state":"active+clean","last_fresh":"2024-04-02T06:52:57.246939+0000","last_change":"2024-04-02T06:52:55.217264+0000","last_active":"2024-04-02T06:52:57.246939+0000","last_peered":"2024-04-02T06:52:57.246939+0000","last_clean":"2024-04-02T06:52:57.246939+0000","last_became_active":"2024-04-02T06:52:55.215980+0000","last_became_peered":"2024-04-02T06:52:55.215980+0000","last_unstale":"2024-04-02T06:52:57.246939+0000","last_undegraded":"2024-04-02T06:52:57.246939+0000","last_fullsized":"2024-04-02T06:52:57.246939+0000","mapping_epoch":37,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":38,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-02T06:52:39.249561+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-02T06:52:39.249561+0000","last_clean_scrub_stamp":"2024-04-02T06:52:39.249561+0000","objects_scrubbed":0,"log_size":277,"log_dups_size":0,"ondisk_log_size":277,"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-04-03T13:08:45.401221+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":196,"num_read_kb":172,"num_write":335,"num_write_kb":6592,"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":196,"num_read_kb":172,"num_write":335,"num_write_kb":6592,"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":1781760,"data_stored":1771104,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":277,"ondisk_log_size":277,"up":3,"acting":3,"num_store_stats":4}],"osd_stats":[{"osd":7,"up_from":34,"seq":146028888089,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28156,"kb_used_data":952,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93712900,"statfs":{"total":95990841344,"available":95962009600,"internally_reserved":0,"allocated":974848,"data_stored":743223,"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":6,"up_from":30,"seq":128849018906,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31560,"kb_used_data":372,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709496,"statfs":{"total":95990841344,"available":95958523904,"internally_reserved":0,"allocated":380928,"data_stored":152855,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":18,"seq":77309411357,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27396,"kb_used_data":372,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713660,"statfs":{"total":95990841344,"available":95962787840,"internally_reserved":0,"allocated":380928,"data_stored":152855,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476764,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32256,"kb_used_data":952,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708800,"statfs":{"total":95990841344,"available":95957811200,"internally_reserved":0,"allocated":974848,"data_stored":743223,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":21,"seq":90194313243,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27396,"kb_used_data":372,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713660,"statfs":{"total":95990841344,"available":95962787840,"internally_reserved":0,"allocated":380928,"data_stored":152855,"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":103079215130,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32256,"kb_used_data":952,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708800,"statfs":{"total":95990841344,"available":95957811200,"internally_reserved":0,"allocated":974848,"data_stored":743223,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":27,"seq":115964117018,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27396,"kb_used_data":372,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713660,"statfs":{"total":95990841344,"available":95962787840,"internally_reserved":0,"allocated":380928,"data_stored":152855,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":30,"seq":128849018906,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27396,"kb_used_data":372,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713660,"statfs":{"total":95990841344,"available":95962787840,"internally_reserved":0,"allocated":380928,"data_stored":152855,"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":[]}],"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":0,"data_stored":0,"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-04-02T06:54:45.106 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph pg dump --format=json 2024-04-02T06:54:45.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:45 smithi052 bash[25156]: audit 2024-04-02T06:54:44.523910+0000 mgr.smithi037.yymbdj (mgr.14215) 184 : audit 0 from='client.14476 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-02T06:54:45.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:45 smithi052 bash[25156]: audit 2024-04-02T06:54:45.472428+0000 mon.smithi037 (mon.0) 760 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:54:46.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:45 smithi037 bash[18626]: audit 2024-04-02T06:54:44.523910+0000 mgr.smithi037.yymbdj (mgr.14215) 184 : audit 0 from='client.14476 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-02T06:54:46.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:45 smithi037 bash[18626]: audit 2024-04-02T06:54:45.472428+0000 mon.smithi037 (mon.0) 760 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:54:46.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:46 smithi052 bash[25156]: cluster 2024-04-02T06:54:45.397894+0000 mgr.smithi037.yymbdj (mgr.14215) 185 : cluster 0 pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:47.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:46 smithi037 bash[18626]: cluster 2024-04-02T06:54:45.397894+0000 mgr.smithi037.yymbdj (mgr.14215) 185 : cluster 0 pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:48.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:48 smithi052 bash[25156]: cluster 2024-04-02T06:54:47.398454+0000 mgr.smithi037.yymbdj (mgr.14215) 186 : cluster 0 pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:49.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:48 smithi037 bash[18626]: cluster 2024-04-02T06:54:47.398454+0000 mgr.smithi037.yymbdj (mgr.14215) 186 : cluster 0 pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:49.925 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:50.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:50 smithi052 bash[25156]: cluster 2024-04-02T06:54:49.399008+0000 mgr.smithi037.yymbdj (mgr.14215) 187 : cluster 0 pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:50.947 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:50 smithi037 bash[18626]: cluster 2024-04-02T06:54:49.399008+0000 mgr.smithi037.yymbdj (mgr.14215) 187 : cluster 0 pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:52.376 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:54:52.379 INFO:teuthology.orchestra.run.smithi037.stderr:dumped all 2024-04-02T06:54:52.805 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:52 smithi037 bash[18626]: cluster 2024-04-02T06:54:51.399577+0000 mgr.smithi037.yymbdj (mgr.14215) 188 : cluster 0 pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:52.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:52 smithi052 bash[25156]: cluster 2024-04-02T06:54:51.399577+0000 mgr.smithi037.yymbdj (mgr.14215) 188 : cluster 0 pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:53.027 INFO:teuthology.orchestra.run.smithi037.stdout:{"pg_ready":true,"pg_map":{"version":156,"stamp":"2024-04-02T06:54:51.399270+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":196,"num_read_kb":172,"num_write":335,"num_write_kb":6592,"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":277,"ondisk_log_size":277,"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":233812,"kb_used_data":4716,"kb_used_omap":12,"kb_used_meta":228531,"kb_avail":749694636,"statfs":{"total":767926730752,"available":767687307264,"internally_reserved":0,"allocated":4829184,"data_stored":2993944,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12751,"internal_metadata":234016305},"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.003141"},"pg_stats":[{"pgid":"1.0","version":"38'277","reported_seq":388,"reported_epoch":38,"state":"active+clean","last_fresh":"2024-04-02T06:52:57.246939+0000","last_change":"2024-04-02T06:52:55.217264+0000","last_active":"2024-04-02T06:52:57.246939+0000","last_peered":"2024-04-02T06:52:57.246939+0000","last_clean":"2024-04-02T06:52:57.246939+0000","last_became_active":"2024-04-02T06:52:55.215980+0000","last_became_peered":"2024-04-02T06:52:55.215980+0000","last_unstale":"2024-04-02T06:52:57.246939+0000","last_undegraded":"2024-04-02T06:52:57.246939+0000","last_fullsized":"2024-04-02T06:52:57.246939+0000","mapping_epoch":37,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":38,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-02T06:52:39.249561+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-02T06:52:39.249561+0000","last_clean_scrub_stamp":"2024-04-02T06:52:39.249561+0000","objects_scrubbed":0,"log_size":277,"log_dups_size":0,"ondisk_log_size":277,"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-04-03T13:08:45.401221+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":196,"num_read_kb":172,"num_write":335,"num_write_kb":6592,"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":196,"num_read_kb":172,"num_write":335,"num_write_kb":6592,"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":1781760,"data_stored":1771104,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":277,"ondisk_log_size":277,"up":3,"acting":3,"num_store_stats":4}],"osd_stats":[{"osd":7,"up_from":34,"seq":146028888091,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28156,"kb_used_data":952,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93712900,"statfs":{"total":95990841344,"available":95962009600,"internally_reserved":0,"allocated":974848,"data_stored":743223,"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":6,"up_from":30,"seq":128849018907,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31560,"kb_used_data":372,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709496,"statfs":{"total":95990841344,"available":95958523904,"internally_reserved":0,"allocated":380928,"data_stored":152855,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":18,"seq":77309411359,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27396,"kb_used_data":372,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713660,"statfs":{"total":95990841344,"available":95962787840,"internally_reserved":0,"allocated":380928,"data_stored":152855,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476766,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32256,"kb_used_data":952,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708800,"statfs":{"total":95990841344,"available":95957811200,"internally_reserved":0,"allocated":974848,"data_stored":743223,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":21,"seq":90194313245,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27396,"kb_used_data":372,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713660,"statfs":{"total":95990841344,"available":95962787840,"internally_reserved":0,"allocated":380928,"data_stored":152855,"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":103079215132,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32256,"kb_used_data":952,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708800,"statfs":{"total":95990841344,"available":95957811200,"internally_reserved":0,"allocated":974848,"data_stored":743223,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":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":27396,"kb_used_data":372,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713660,"statfs":{"total":95990841344,"available":95962787840,"internally_reserved":0,"allocated":380928,"data_stored":152855,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":30,"seq":128849018907,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27396,"kb_used_data":372,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713660,"statfs":{"total":95990841344,"available":95962787840,"internally_reserved":0,"allocated":380928,"data_stored":152855,"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":[]}],"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":0,"data_stored":0,"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-04-02T06:54:53.028 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-04-02T06:54:53.028 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-04-02T06:54:53.028 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-04-02T06:54:53.028 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph health --format=json 2024-04-02T06:54:53.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:53 smithi052 bash[25156]: audit 2024-04-02T06:54:52.375898+0000 mgr.smithi037.yymbdj (mgr.14215) 189 : audit 0 from='client.14480 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-02T06:54:54.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:53 smithi037 bash[18626]: audit 2024-04-02T06:54:52.375898+0000 mgr.smithi037.yymbdj (mgr.14215) 189 : audit 0 from='client.14480 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-02T06:54:54.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:54 smithi037 bash[18626]: cluster 2024-04-02T06:54:53.400171+0000 mgr.smithi037.yymbdj (mgr.14215) 190 : cluster 0 pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:54.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:54 smithi052 bash[25156]: cluster 2024-04-02T06:54:53.400171+0000 mgr.smithi037.yymbdj (mgr.14215) 190 : cluster 0 pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:56.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:56 smithi052 bash[25156]: cluster 2024-04-02T06:54:55.400792+0000 mgr.smithi037.yymbdj (mgr.14215) 191 : cluster 0 pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:57.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:56 smithi037 bash[18626]: cluster 2024-04-02T06:54:55.400792+0000 mgr.smithi037.yymbdj (mgr.14215) 191 : cluster 0 pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:57.833 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:54:58.856 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:54:58 smithi037 bash[18626]: cluster 2024-04-02T06:54:57.401366+0000 mgr.smithi037.yymbdj (mgr.14215) 192 : cluster 0 pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:54:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:54:58 smithi052 bash[25156]: cluster 2024-04-02T06:54:57.401366+0000 mgr.smithi037.yymbdj (mgr.14215) 192 : cluster 0 pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:00.452 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:55:00.452 INFO:teuthology.orchestra.run.smithi037.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-04-02T06:55:00.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:00 smithi037 bash[18626]: cluster 2024-04-02T06:54:59.401885+0000 mgr.smithi037.yymbdj (mgr.14215) 193 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:00.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:00 smithi037 bash[18626]: audit 2024-04-02T06:55:00.453746+0000 mon.smithi037 (mon.0) 761 : audit 0 from='client.? 172.21.15.37:0/4015405431' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-02T06:55:00.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:00 smithi037 bash[18626]: audit 2024-04-02T06:55:00.472244+0000 mon.smithi037 (mon.0) 762 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:55:00.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:00 smithi052 bash[25156]: cluster 2024-04-02T06:54:59.401885+0000 mgr.smithi037.yymbdj (mgr.14215) 193 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:00.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:00 smithi052 bash[25156]: audit 2024-04-02T06:55:00.453746+0000 mon.smithi037 (mon.0) 761 : audit 0 from='client.? 172.21.15.37:0/4015405431' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-02T06:55:00.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:00 smithi052 bash[25156]: audit 2024-04-02T06:55:00.472244+0000 mon.smithi037 (mon.0) 762 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:55:01.081 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-04-02T06:55:01.081 INFO:tasks.cephadm:Setup complete, yielding 2024-04-02T06:55:01.081 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-02T06:55:01.094 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:55:01.094 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch status' 2024-04-02T06:55:02.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:02 smithi052 bash[25156]: cluster 2024-04-02T06:55:01.402551+0000 mgr.smithi037.yymbdj (mgr.14215) 194 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:03.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:02 smithi037 bash[18626]: cluster 2024-04-02T06:55:01.402551+0000 mgr.smithi037.yymbdj (mgr.14215) 194 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:04.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:04 smithi052 bash[25156]: cluster 2024-04-02T06:55:03.403125+0000 mgr.smithi037.yymbdj (mgr.14215) 195 : cluster 0 pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:05.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:04 smithi037 bash[18626]: cluster 2024-04-02T06:55:03.403125+0000 mgr.smithi037.yymbdj (mgr.14215) 195 : cluster 0 pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:05.908 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:55:06.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:06 smithi052 bash[25156]: cluster 2024-04-02T06:55:05.403582+0000 mgr.smithi037.yymbdj (mgr.14215) 196 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:06.965 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:06 smithi037 bash[18626]: cluster 2024-04-02T06:55:05.403582+0000 mgr.smithi037.yymbdj (mgr.14215) 196 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:08.523 INFO:teuthology.orchestra.run.smithi037.stdout:Backend: cephadm 2024-04-02T06:55:08.523 INFO:teuthology.orchestra.run.smithi037.stdout:Available: Yes 2024-04-02T06:55:08.523 INFO:teuthology.orchestra.run.smithi037.stdout:Paused: No 2024-04-02T06:55:08.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:08 smithi037 bash[18626]: cluster 2024-04-02T06:55:07.404190+0000 mgr.smithi037.yymbdj (mgr.14215) 197 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:08.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:08 smithi052 bash[25156]: cluster 2024-04-02T06:55:07.404190+0000 mgr.smithi037.yymbdj (mgr.14215) 197 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:09.118 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch ps' 2024-04-02T06:55:09.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:09 smithi052 bash[25156]: audit 2024-04-02T06:55:08.524489+0000 mgr.smithi037.yymbdj (mgr.14215) 198 : audit 0 from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:10.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:09 smithi037 bash[18626]: audit 2024-04-02T06:55:08.524489+0000 mgr.smithi037.yymbdj (mgr.14215) 198 : audit 0 from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:10.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:10 smithi052 bash[25156]: cluster 2024-04-02T06:55:09.404754+0000 mgr.smithi037.yymbdj (mgr.14215) 199 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:11.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:10 smithi037 bash[18626]: cluster 2024-04-02T06:55:09.404754+0000 mgr.smithi037.yymbdj (mgr.14215) 199 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:12.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:12 smithi052 bash[25156]: cluster 2024-04-02T06:55:11.405388+0000 mgr.smithi037.yymbdj (mgr.14215) 200 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:13.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:12 smithi037 bash[18626]: cluster 2024-04-02T06:55:11.405388+0000 mgr.smithi037.yymbdj (mgr.14215) 200 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:13.936 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:55:14.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:14 smithi052 bash[25156]: cluster 2024-04-02T06:55:13.405982+0000 mgr.smithi037.yymbdj (mgr.14215) 201 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:14.957 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:14 smithi037 bash[18626]: cluster 2024-04-02T06:55:13.405982+0000 mgr.smithi037.yymbdj (mgr.14215) 201 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:16.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:15 smithi037 bash[18626]: audit 2024-04-02T06:55:15.472754+0000 mon.smithi037 (mon.0) 763 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:55:16.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:15 smithi052 bash[25156]: audit 2024-04-02T06:55:15.472754+0000 mon.smithi037 (mon.0) 763 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:55:16.483 INFO:teuthology.orchestra.run.smithi037.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-02T06:55:16.484 INFO:teuthology.orchestra.run.smithi037.stdout:alertmanager.smithi037 smithi037 *:9093,9094 running (3m) 33s ago 5m 13.7M - 0.25.0 c8568f914cd2 d59c79db2239 2024-04-02T06:55:16.484 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter.smithi037 smithi037 running (6m) 33s ago 6m 8443k - 19.0.0-1979-g6cec793d 78f830190839 5d02325101ff 2024-04-02T06:55:16.484 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter.smithi052 smithi052 running (4m) 33s ago 4m 8464k - 19.0.0-1979-g6cec793d 78f830190839 8399486b3ded 2024-04-02T06:55:16.484 INFO:teuthology.orchestra.run.smithi037.stdout:crash.smithi037 smithi037 running (6m) 33s ago 6m 7107k - 19.0.0-1979-g6cec793d 78f830190839 d4824c486c1b 2024-04-02T06:55:16.484 INFO:teuthology.orchestra.run.smithi037.stdout:crash.smithi052 smithi052 running (4m) 33s ago 4m 7088k - 19.0.0-1979-g6cec793d 78f830190839 bbbfd79137c0 2024-04-02T06:55:16.484 INFO:teuthology.orchestra.run.smithi037.stdout:grafana.smithi037 smithi037 *:3000 running (3m) 33s ago 5m 71.9M - 9.4.12 2bacad6d85d8 03ce2747387b 2024-04-02T06:55:16.484 INFO:teuthology.orchestra.run.smithi037.stdout:mgr.smithi037.yymbdj smithi037 *:9283,8765,8443 running (7m) 33s ago 7m 489M - 19.0.0-1979-g6cec793d 78f830190839 d883ef8a469e 2024-04-02T06:55:16.484 INFO:teuthology.orchestra.run.smithi037.stdout:mgr.smithi052.hwhbeq smithi052 *:8443,9283,8765 running (4m) 33s ago 4m 436M - 19.0.0-1979-g6cec793d 78f830190839 2bd9c0785bc3 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:mon.smithi037 smithi037 running (8m) 33s ago 8m 48.8M 2048M 19.0.0-1979-g6cec793d 78f830190839 95d89a821921 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:mon.smithi052 smithi052 running (4m) 33s ago 4m 41.2M 2048M 19.0.0-1979-g6cec793d 78f830190839 b9dea0a28ecd 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter.smithi037 smithi037 *:9100 running (6m) 33s ago 6m 8320k - 1.5.0 0da6a335fe13 901b5c5a8db8 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter.smithi052 smithi052 *:9100 running (4m) 33s ago 4m 8548k - 1.5.0 0da6a335fe13 d45cb2681caf 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:osd.0 smithi052 running (2m) 33s ago 2m 49.3M 3773M 19.0.0-1979-g6cec793d 78f830190839 4a2542fe1516 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:osd.1 smithi037 running (2m) 33s ago 2m 40.1M 3005M 19.0.0-1979-g6cec793d 78f830190839 95c0ee409fa4 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:osd.2 smithi052 running (2m) 33s ago 2m 38.3M 3773M 19.0.0-1979-g6cec793d 78f830190839 1771b82ae325 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:osd.3 smithi037 running (2m) 33s ago 2m 49.0M 3005M 19.0.0-1979-g6cec793d 78f830190839 cb4839def631 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:osd.4 smithi052 running (2m) 33s ago 2m 36.5M 3773M 19.0.0-1979-g6cec793d 78f830190839 1b3353933bf3 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:osd.5 smithi037 running (2m) 33s ago 2m 36.1M 3005M 19.0.0-1979-g6cec793d 78f830190839 f1797de7b3a5 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:osd.6 smithi052 running (2m) 33s ago 2m 42.4M 3773M 19.0.0-1979-g6cec793d 78f830190839 3751d2588e84 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:osd.7 smithi037 running (2m) 33s ago 2m 40.1M 3005M 19.0.0-1979-g6cec793d 78f830190839 7ba0928d39be 2024-04-02T06:55:16.485 INFO:teuthology.orchestra.run.smithi037.stdout:prometheus.smithi037 smithi037 *:9095 running (3m) 33s ago 4m 52.0M - 2.43.0 a07b618ecd1d a536745bd0e2 2024-04-02T06:55:16.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:16 smithi037 bash[18626]: cluster 2024-04-02T06:55:15.406418+0000 mgr.smithi037.yymbdj (mgr.14215) 202 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:17.130 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch ls' 2024-04-02T06:55:17.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:16 smithi052 bash[25156]: cluster 2024-04-02T06:55:15.406418+0000 mgr.smithi037.yymbdj (mgr.14215) 202 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:18.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:17 smithi037 bash[18626]: audit 2024-04-02T06:55:16.465622+0000 mgr.smithi037.yymbdj (mgr.14215) 203 : audit 0 from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:18.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:17 smithi052 bash[25156]: audit 2024-04-02T06:55:16.465622+0000 mgr.smithi037.yymbdj (mgr.14215) 203 : audit 0 from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:19.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:18 smithi037 bash[18626]: cluster 2024-04-02T06:55:17.406960+0000 mgr.smithi037.yymbdj (mgr.14215) 204 : cluster 0 pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:19.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:18 smithi052 bash[25156]: cluster 2024-04-02T06:55:17.406960+0000 mgr.smithi037.yymbdj (mgr.14215) 204 : cluster 0 pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:20.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:20 smithi052 bash[25156]: cluster 2024-04-02T06:55:19.407564+0000 mgr.smithi037.yymbdj (mgr.14215) 205 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:21.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:20 smithi037 bash[18626]: cluster 2024-04-02T06:55:19.407564+0000 mgr.smithi037.yymbdj (mgr.14215) 205 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:21.936 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:55:22.963 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:22 smithi037 bash[18626]: cluster 2024-04-02T06:55:21.408163+0000 mgr.smithi037.yymbdj (mgr.14215) 206 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:23.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:22 smithi052 bash[25156]: cluster 2024-04-02T06:55:21.408163+0000 mgr.smithi037.yymbdj (mgr.14215) 206 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:24.476 INFO:teuthology.orchestra.run.smithi037.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-04-02T06:55:24.476 INFO:teuthology.orchestra.run.smithi037.stdout:alertmanager ?:9093,9094 1/1 41s ago 7m count:1 2024-04-02T06:55:24.476 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter 2/2 41s ago 7m * 2024-04-02T06:55:24.476 INFO:teuthology.orchestra.run.smithi037.stdout:crash 2/2 41s ago 7m * 2024-04-02T06:55:24.476 INFO:teuthology.orchestra.run.smithi037.stdout:grafana ?:3000 1/1 41s ago 7m count:1 2024-04-02T06:55:24.476 INFO:teuthology.orchestra.run.smithi037.stdout:mgr 2/2 41s ago 7m count:2 2024-04-02T06:55:24.476 INFO:teuthology.orchestra.run.smithi037.stdout:mon 2/2 41s ago 5m smithi037:172.21.15.37=smithi037;smithi052:172.21.15.52=smithi052;count:2 2024-04-02T06:55:24.476 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter ?:9100 2/2 41s ago 7m * 2024-04-02T06:55:24.476 INFO:teuthology.orchestra.run.smithi037.stdout:osd.all-available-devices 8 41s ago 4m * 2024-04-02T06:55:24.476 INFO:teuthology.orchestra.run.smithi037.stdout:prometheus ?:9095 1/1 41s ago 7m count:1 2024-04-02T06:55:24.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:24 smithi037 bash[18626]: cluster 2024-04-02T06:55:23.408586+0000 mgr.smithi037.yymbdj (mgr.14215) 207 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:25.074 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch host ls' 2024-04-02T06:55:25.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:24 smithi052 bash[25156]: cluster 2024-04-02T06:55:23.408586+0000 mgr.smithi037.yymbdj (mgr.14215) 207 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:26.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:25 smithi037 bash[18626]: audit 2024-04-02T06:55:24.463628+0000 mgr.smithi037.yymbdj (mgr.14215) 208 : audit 0 from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:26.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:25 smithi052 bash[25156]: audit 2024-04-02T06:55:24.463628+0000 mgr.smithi037.yymbdj (mgr.14215) 208 : audit 0 from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:27.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:26 smithi037 bash[18626]: cluster 2024-04-02T06:55:25.409174+0000 mgr.smithi037.yymbdj (mgr.14215) 209 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:27.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:26 smithi052 bash[25156]: cluster 2024-04-02T06:55:25.409174+0000 mgr.smithi037.yymbdj (mgr.14215) 209 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:29.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:28 smithi037 bash[18626]: cluster 2024-04-02T06:55:27.409799+0000 mgr.smithi037.yymbdj (mgr.14215) 210 : cluster 0 pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:29.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:28 smithi052 bash[25156]: cluster 2024-04-02T06:55:27.409799+0000 mgr.smithi037.yymbdj (mgr.14215) 210 : cluster 0 pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:29.893 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:55:30.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:30 smithi037 bash[18626]: cluster 2024-04-02T06:55:29.410420+0000 mgr.smithi037.yymbdj (mgr.14215) 211 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:30.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:30 smithi037 bash[18626]: audit 2024-04-02T06:55:30.473581+0000 mon.smithi037 (mon.0) 764 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:55:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:30 smithi052 bash[25156]: cluster 2024-04-02T06:55:29.410420+0000 mgr.smithi037.yymbdj (mgr.14215) 211 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:30 smithi052 bash[25156]: audit 2024-04-02T06:55:30.473581+0000 mon.smithi037 (mon.0) 764 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:55:32.459 INFO:teuthology.orchestra.run.smithi037.stdout:HOST ADDR LABELS STATUS 2024-04-02T06:55:32.459 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 172.21.15.37 2024-04-02T06:55:32.459 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 172.21.15.52 2024-04-02T06:55:32.460 INFO:teuthology.orchestra.run.smithi037.stdout:2 hosts in cluster 2024-04-02T06:55:32.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:32 smithi037 bash[18626]: cluster 2024-04-02T06:55:31.410867+0000 mgr.smithi037.yymbdj (mgr.14215) 212 : cluster 0 pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:33.093 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch device ls' 2024-04-02T06:55:33.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:32 smithi052 bash[25156]: cluster 2024-04-02T06:55:31.410867+0000 mgr.smithi037.yymbdj (mgr.14215) 212 : cluster 0 pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:34.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:33 smithi037 bash[18626]: audit 2024-04-02T06:55:32.459401+0000 mgr.smithi037.yymbdj (mgr.14215) 213 : audit 0 from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:34.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:33 smithi052 bash[25156]: audit 2024-04-02T06:55:32.459401+0000 mgr.smithi037.yymbdj (mgr.14215) 213 : audit 0 from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:35.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:34 smithi037 bash[18626]: cluster 2024-04-02T06:55:33.411365+0000 mgr.smithi037.yymbdj (mgr.14215) 214 : cluster 0 pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:35.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:34 smithi052 bash[25156]: cluster 2024-04-02T06:55:33.411365+0000 mgr.smithi037.yymbdj (mgr.14215) 214 : cluster 0 pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:37.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:36 smithi037 bash[18626]: cluster 2024-04-02T06:55:35.412137+0000 mgr.smithi037.yymbdj (mgr.14215) 215 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:37.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:36 smithi052 bash[25156]: cluster 2024-04-02T06:55:35.412137+0000 mgr.smithi037.yymbdj (mgr.14215) 215 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:37.903 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:55:38.954 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:38 smithi037 bash[18626]: cluster 2024-04-02T06:55:37.412897+0000 mgr.smithi037.yymbdj (mgr.14215) 216 : cluster 0 pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:39.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:38 smithi052 bash[25156]: cluster 2024-04-02T06:55:37.412897+0000 mgr.smithi037.yymbdj (mgr.14215) 216 : cluster 0 pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:40.457 INFO:teuthology.orchestra.run.smithi037.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-04-02T06:55:40.457 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5331005T400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-04-02T06:55:40.457 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme1n1 ssd Linux_3cf3d7e93623fc63b500 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:40.457 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme2n1 ssd Linux_2a9f2e1698ed0f8e0da8 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:40.458 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme3n1 ssd Linux_3b18cdc853e1f477a06e 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:40.458 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme4n1 ssd Linux_39e9aa2f1f1627d2f86f 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:40.458 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7513010N480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-04-02T06:55:40.458 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme1n1 ssd Linux_43648c8302fcc97b56ba 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:40.458 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme2n1 ssd Linux_d16d799d86ccd10e32c9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:40.458 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme3n1 ssd Linux_53dee4c11eab07978984 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:40.458 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme4n1 ssd Linux_f3902035cc7e36c0275f 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:41.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:40 smithi037 bash[18626]: cluster 2024-04-02T06:55:39.413350+0000 mgr.smithi037.yymbdj (mgr.14215) 217 : cluster 0 pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:41.072 INFO:teuthology.run_tasks:Running task vip... 2024-04-02T06:55:41.081 INFO:tasks.vip:Allocating static IPs for each host... 2024-04-02T06:55:41.082 INFO:tasks.vip:peername 172.21.15.37 2024-04-02T06:55:41.084 INFO:tasks.vip:172.21.15.37 in 172.21.0.0/20, pos 3876 2024-04-02T06:55:41.088 INFO:tasks.vip:smithi037.front.sepia.ceph.com static 10.0.15.37, vnet 10.0.0.0/16 2024-04-02T06:55:41.088 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-04-02T06:55:41.089 DEBUG:teuthology.orchestra.run.smithi037:> sudo ip route ls 2024-04-02T06:55:41.102 INFO:teuthology.orchestra.run.smithi037.stdout:default via 172.21.15.254 dev ens1f0 2024-04-02T06:55:41.103 INFO:teuthology.orchestra.run.smithi037.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-04-02T06:55:41.103 INFO:teuthology.orchestra.run.smithi037.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.37 2024-04-02T06:55:41.104 INFO:tasks.vip:Configuring 10.0.15.37 on smithi037.front.sepia.ceph.com iface ens1f0... 2024-04-02T06:55:41.104 DEBUG:teuthology.orchestra.run.smithi037:> sudo ip addr add 10.0.15.37/16 dev ens1f0 2024-04-02T06:55:41.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:40 smithi052 bash[25156]: cluster 2024-04-02T06:55:39.413350+0000 mgr.smithi037.yymbdj (mgr.14215) 217 : cluster 0 pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:41.164 INFO:tasks.vip:peername 172.21.15.52 2024-04-02T06:55:41.167 INFO:tasks.vip:172.21.15.52 in 172.21.0.0/20, pos 3891 2024-04-02T06:55:41.171 INFO:tasks.vip:smithi052.front.sepia.ceph.com static 10.0.15.52, vnet 10.0.0.0/16 2024-04-02T06:55:41.171 DEBUG:teuthology.orchestra.run.smithi052:> sudo ip route ls 2024-04-02T06:55:41.185 INFO:teuthology.orchestra.run.smithi052.stdout:default via 172.21.15.254 dev ens1f0 2024-04-02T06:55:41.185 INFO:teuthology.orchestra.run.smithi052.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-04-02T06:55:41.185 INFO:teuthology.orchestra.run.smithi052.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.52 2024-04-02T06:55:41.187 INFO:tasks.vip:Configuring 10.0.15.52 on smithi052.front.sepia.ceph.com iface ens1f0... 2024-04-02T06:55:41.187 DEBUG:teuthology.orchestra.run.smithi052:> sudo ip addr add 10.0.15.52/16 dev ens1f0 2024-04-02T06:55:41.241 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-02T06:55:41.251 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:55:41.251 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch device ls --refresh' 2024-04-02T06:55:42.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:41 smithi037 bash[18626]: audit 2024-04-02T06:55:40.453799+0000 mgr.smithi037.yymbdj (mgr.14215) 218 : audit 0 from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:42.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:41 smithi052 bash[25156]: audit 2024-04-02T06:55:40.453799+0000 mgr.smithi037.yymbdj (mgr.14215) 218 : audit 0 from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:43.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:42 smithi037 bash[18626]: cluster 2024-04-02T06:55:41.413881+0000 mgr.smithi037.yymbdj (mgr.14215) 219 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:43.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:42 smithi052 bash[25156]: cluster 2024-04-02T06:55:41.413881+0000 mgr.smithi037.yymbdj (mgr.14215) 219 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:44.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:43 smithi037 bash[18626]: audit 2024-04-02T06:55:43.642850+0000 mon.smithi037 (mon.0) 765 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:55:44.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:43 smithi052 bash[25156]: audit 2024-04-02T06:55:43.642850+0000 mon.smithi037 (mon.0) 765 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:55:45.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:44 smithi037 bash[18626]: cluster 2024-04-02T06:55:43.414435+0000 mgr.smithi037.yymbdj (mgr.14215) 220 : cluster 0 pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:45.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:44 smithi052 bash[25156]: cluster 2024-04-02T06:55:43.414435+0000 mgr.smithi037.yymbdj (mgr.14215) 220 : cluster 0 pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:46.034 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:45 smithi037 bash[18626]: audit 2024-04-02T06:55:45.473943+0000 mon.smithi037 (mon.0) 766 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:55:46.066 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:55:46.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:45 smithi052 bash[25156]: audit 2024-04-02T06:55:45.473943+0000 mon.smithi037 (mon.0) 766 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:55:47.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:46 smithi037 bash[18626]: cluster 2024-04-02T06:55:45.414995+0000 mgr.smithi037.yymbdj (mgr.14215) 221 : cluster 0 pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:47.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:46 smithi052 bash[25156]: cluster 2024-04-02T06:55:45.414995+0000 mgr.smithi037.yymbdj (mgr.14215) 221 : cluster 0 pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:48.841 INFO:teuthology.orchestra.run.smithi037.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-04-02T06:55:48.842 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5331005T400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-04-02T06:55:48.842 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme1n1 ssd Linux_3cf3d7e93623fc63b500 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:48.842 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme2n1 ssd Linux_2a9f2e1698ed0f8e0da8 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:48.842 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme3n1 ssd Linux_3b18cdc853e1f477a06e 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:48.842 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme4n1 ssd Linux_39e9aa2f1f1627d2f86f 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:48.842 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7513010N480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-04-02T06:55:48.842 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme1n1 ssd Linux_43648c8302fcc97b56ba 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:48.842 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme2n1 ssd Linux_d16d799d86ccd10e32c9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:48.842 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme3n1 ssd Linux_53dee4c11eab07978984 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:48.842 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme4n1 ssd Linux_f3902035cc7e36c0275f 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:55:49.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:48 smithi037 bash[18626]: cluster 2024-04-02T06:55:47.415647+0000 mgr.smithi037.yymbdj (mgr.14215) 222 : cluster 0 pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:49.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:48 smithi052 bash[25156]: cluster 2024-04-02T06:55:47.415647+0000 mgr.smithi037.yymbdj (mgr.14215) 222 : cluster 0 pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:49.365 INFO:teuthology.run_tasks:Running task vip.exec... 2024-04-02T06:55:49.374 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:55:49.374 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-04-02T06:55:49.385 INFO:teuthology.orchestra.run.smithi037.stderr:+ systemctl stop nfs-server 2024-04-02T06:55:49.502 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi052.front.sepia.ceph.com 2024-04-02T06:55:49.502 DEBUG:teuthology.orchestra.run.smithi052:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-04-02T06:55:49.515 INFO:teuthology.orchestra.run.smithi052.stderr:+ systemctl stop nfs-server 2024-04-02T06:55:49.646 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-02T06:55:49.655 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:55:49.655 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-04-02T06:55:49.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:49 smithi052 bash[25156]: audit 2024-04-02T06:55:48.833257+0000 mgr.smithi037.yymbdj (mgr.14215) 223 : audit 0 from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:49.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:49 smithi052 bash[25156]: audit 2024-04-02T06:55:49.081171+0000 mon.smithi037 (mon.0) 767 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:49.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:49 smithi052 bash[25156]: audit 2024-04-02T06:55:49.085801+0000 mon.smithi037 (mon.0) 768 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:49.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:49 smithi052 bash[25156]: audit 2024-04-02T06:55:49.197441+0000 mon.smithi037 (mon.0) 769 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:49.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:49 smithi052 bash[25156]: audit 2024-04-02T06:55:49.210288+0000 mon.smithi037 (mon.0) 770 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:50.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:49 smithi037 bash[18626]: audit 2024-04-02T06:55:48.833257+0000 mgr.smithi037.yymbdj (mgr.14215) 223 : audit 0 from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:50.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:49 smithi037 bash[18626]: audit 2024-04-02T06:55:49.081171+0000 mon.smithi037 (mon.0) 767 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:50.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:49 smithi037 bash[18626]: audit 2024-04-02T06:55:49.085801+0000 mon.smithi037 (mon.0) 768 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:50.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:49 smithi037 bash[18626]: audit 2024-04-02T06:55:49.197441+0000 mon.smithi037 (mon.0) 769 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:50.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:49 smithi037 bash[18626]: audit 2024-04-02T06:55:49.210288+0000 mon.smithi037 (mon.0) 770 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:51.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:50 smithi037 bash[18626]: cluster 2024-04-02T06:55:49.416105+0000 mgr.smithi037.yymbdj (mgr.14215) 224 : cluster 0 pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:51.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:50 smithi037 bash[18626]: audit 2024-04-02T06:55:50.092068+0000 mon.smithi037 (mon.0) 771 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:51.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:50 smithi037 bash[18626]: audit 2024-04-02T06:55:50.098919+0000 mon.smithi037 (mon.0) 772 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:51.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:50 smithi037 bash[18626]: audit 2024-04-02T06:55:50.208697+0000 mon.smithi037 (mon.0) 773 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:51.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:50 smithi037 bash[18626]: audit 2024-04-02T06:55:50.221467+0000 mon.smithi037 (mon.0) 774 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:51.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:50 smithi052 bash[25156]: cluster 2024-04-02T06:55:49.416105+0000 mgr.smithi037.yymbdj (mgr.14215) 224 : cluster 0 pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:51.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:50 smithi052 bash[25156]: audit 2024-04-02T06:55:50.092068+0000 mon.smithi037 (mon.0) 771 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:51.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:50 smithi052 bash[25156]: audit 2024-04-02T06:55:50.098919+0000 mon.smithi037 (mon.0) 772 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:51.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:50 smithi052 bash[25156]: audit 2024-04-02T06:55:50.208697+0000 mon.smithi037 (mon.0) 773 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:51.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:50 smithi052 bash[25156]: audit 2024-04-02T06:55:50.221467+0000 mon.smithi037 (mon.0) 774 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:53.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:52 smithi037 bash[18626]: cluster 2024-04-02T06:55:51.416626+0000 mgr.smithi037.yymbdj (mgr.14215) 225 : cluster 0 pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:53.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:52 smithi052 bash[25156]: cluster 2024-04-02T06:55:51.416626+0000 mgr.smithi037.yymbdj (mgr.14215) 225 : cluster 0 pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:54.446 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:55:55.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:54 smithi037 bash[18626]: cluster 2024-04-02T06:55:53.417204+0000 mgr.smithi037.yymbdj (mgr.14215) 226 : cluster 0 pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:55.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:54 smithi052 bash[25156]: cluster 2024-04-02T06:55:53.417204+0000 mgr.smithi037.yymbdj (mgr.14215) 226 : cluster 0 pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:56.962 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:56 smithi052 bash[25156]: cluster 2024-04-02T06:55:55.417888+0000 mgr.smithi037.yymbdj (mgr.14215) 227 : cluster 0 pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:57.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:56 smithi037 bash[18626]: cluster 2024-04-02T06:55:55.417888+0000 mgr.smithi037.yymbdj (mgr.14215) 227 : cluster 0 pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:57.790 INFO:teuthology.orchestra.run.smithi037.stdout:Scheduled rgw.foorgw update... 2024-04-02T06:55:58.458 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.37/16' 2024-04-02T06:55:59.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:58 smithi037 bash[18626]: cluster 2024-04-02T06:55:57.418296+0000 mgr.smithi037.yymbdj (mgr.14215) 228 : cluster 0 pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:59.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:58 smithi037 bash[18626]: audit 2024-04-02T06:55:57.782696+0000 mgr.smithi037.yymbdj (mgr.14215) 229 : audit 0 from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:59.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:58 smithi037 bash[18626]: cephadm 2024-04-02T06:55:57.787191+0000 mgr.smithi037.yymbdj (mgr.14215) 230 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-04-02T06:55:59.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:55:58 smithi037 bash[18626]: audit 2024-04-02T06:55:57.791718+0000 mon.smithi037 (mon.0) 775 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:55:59.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:58 smithi052 bash[25156]: cluster 2024-04-02T06:55:57.418296+0000 mgr.smithi037.yymbdj (mgr.14215) 228 : cluster 0 pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:55:59.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:58 smithi052 bash[25156]: audit 2024-04-02T06:55:57.782696+0000 mgr.smithi037.yymbdj (mgr.14215) 229 : audit 0 from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:55:59.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:58 smithi052 bash[25156]: cephadm 2024-04-02T06:55:57.787191+0000 mgr.smithi037.yymbdj (mgr.14215) 230 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-04-02T06:55:59.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:55:58 smithi052 bash[25156]: audit 2024-04-02T06:55:57.791718+0000 mon.smithi037 (mon.0) 775 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: cluster 2024-04-02T06:55:59.418730+0000 mgr.smithi037.yymbdj (mgr.14215) 231 : cluster 0 pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:56:01.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.202333+0000 mon.smithi037 (mon.0) 776 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.214891+0000 mon.smithi037 (mon.0) 777 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.474385+0000 mon.smithi037 (mon.0) 778 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:56:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.730269+0000 mon.smithi037 (mon.0) 779 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.741699+0000 mon.smithi037 (mon.0) 780 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.744246+0000 mon.smithi037 (mon.0) 781 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.746168+0000 mon.smithi037 (mon.0) 782 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:56:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.755914+0000 mon.smithi037 (mon.0) 783 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.764262+0000 mon.smithi037 (mon.0) 784 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:56:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.786710+0000 mon.smithi037 (mon.0) 785 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi052.ytmeom", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-02T06:56:01.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:00 smithi037 bash[18626]: audit 2024-04-02T06:56:00.790448+0000 mon.smithi037 (mon.0) 786 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi052.ytmeom", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-02T06:56:01.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: cluster 2024-04-02T06:55:59.418730+0000 mgr.smithi037.yymbdj (mgr.14215) 231 : cluster 0 pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:56:01.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.202333+0000 mon.smithi037 (mon.0) 776 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.214891+0000 mon.smithi037 (mon.0) 777 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.474385+0000 mon.smithi037 (mon.0) 778 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:56:01.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.730269+0000 mon.smithi037 (mon.0) 779 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.741699+0000 mon.smithi037 (mon.0) 780 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.744246+0000 mon.smithi037 (mon.0) 781 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:01.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.746168+0000 mon.smithi037 (mon.0) 782 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:56:01.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.755914+0000 mon.smithi037 (mon.0) 783 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:01.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.764262+0000 mon.smithi037 (mon.0) 784 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:56:01.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.786710+0000 mon.smithi037 (mon.0) 785 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi052.ytmeom", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-02T06:56:01.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:00 smithi052 bash[25156]: audit 2024-04-02T06:56:00.790448+0000 mon.smithi037 (mon.0) 786 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi052.ytmeom", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-02T06:56:02.134 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:01 smithi052 bash[25156]: audit 2024-04-02T06:56:00.807347+0000 mon.smithi037 (mon.0) 787 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:02.134 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:01 smithi052 bash[25156]: audit 2024-04-02T06:56:00.817707+0000 mon.smithi037 (mon.0) 788 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:02.134 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:01 smithi052 bash[25156]: cephadm 2024-04-02T06:56:00.819717+0000 mgr.smithi037.yymbdj (mgr.14215) 232 : cephadm 1 Deploying daemon rgw.foorgw.smithi052.ytmeom on smithi052 2024-04-02T06:56:02.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:01 smithi037 bash[18626]: audit 2024-04-02T06:56:00.807347+0000 mon.smithi037 (mon.0) 787 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:02.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:01 smithi037 bash[18626]: audit 2024-04-02T06:56:00.817707+0000 mon.smithi037 (mon.0) 788 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:02.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:01 smithi037 bash[18626]: cephadm 2024-04-02T06:56:00.819717+0000 mgr.smithi037.yymbdj (mgr.14215) 232 : cephadm 1 Deploying daemon rgw.foorgw.smithi052.ytmeom on smithi052 2024-04-02T06:56:03.055 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:02 smithi052 bash[25156]: cluster 2024-04-02T06:56:01.419310+0000 mgr.smithi037.yymbdj (mgr.14215) 233 : cluster 0 pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:56:03.056 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:02 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:03.149 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:02 smithi037 bash[18626]: cluster 2024-04-02T06:56:01.419310+0000 mgr.smithi037.yymbdj (mgr.14215) 233 : cluster 0 pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:56:03.314 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:03 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:03.707 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:56:04.969 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:04 smithi037 bash[18626]: audit 2024-04-02T06:56:03.369999+0000 mon.smithi037 (mon.0) 789 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:04.969 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:04 smithi037 bash[18626]: audit 2024-04-02T06:56:03.381017+0000 mon.smithi037 (mon.0) 790 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:04.969 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:04 smithi037 bash[18626]: audit 2024-04-02T06:56:03.399443+0000 mon.smithi037 (mon.0) 791 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:04.969 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:04 smithi037 bash[18626]: audit 2024-04-02T06:56:03.401007+0000 mon.smithi037 (mon.0) 792 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi037.tbjgok", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-02T06:56:04.969 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:04 smithi037 bash[18626]: audit 2024-04-02T06:56:03.404245+0000 mon.smithi037 (mon.0) 793 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi037.tbjgok", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-02T06:56:04.969 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:04 smithi037 bash[18626]: audit 2024-04-02T06:56:03.414227+0000 mon.smithi037 (mon.0) 794 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:04.969 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:04 smithi037 bash[18626]: audit 2024-04-02T06:56:03.418033+0000 mon.smithi037 (mon.0) 795 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:04.969 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:04 smithi037 bash[18626]: cluster 2024-04-02T06:56:03.419826+0000 mgr.smithi037.yymbdj (mgr.14215) 234 : cluster 0 pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:56:04.969 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:04 smithi037 bash[18626]: cephadm 2024-04-02T06:56:03.420080+0000 mgr.smithi037.yymbdj (mgr.14215) 235 : cephadm 1 Deploying daemon rgw.foorgw.smithi037.tbjgok on smithi037 2024-04-02T06:56:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:04 smithi052 bash[25156]: audit 2024-04-02T06:56:03.369999+0000 mon.smithi037 (mon.0) 789 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:04 smithi052 bash[25156]: audit 2024-04-02T06:56:03.381017+0000 mon.smithi037 (mon.0) 790 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:04 smithi052 bash[25156]: audit 2024-04-02T06:56:03.399443+0000 mon.smithi037 (mon.0) 791 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:05.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:04 smithi052 bash[25156]: audit 2024-04-02T06:56:03.401007+0000 mon.smithi037 (mon.0) 792 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi037.tbjgok", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-02T06:56:05.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:04 smithi052 bash[25156]: audit 2024-04-02T06:56:03.404245+0000 mon.smithi037 (mon.0) 793 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi037.tbjgok", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-02T06:56:05.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:04 smithi052 bash[25156]: audit 2024-04-02T06:56:03.414227+0000 mon.smithi037 (mon.0) 794 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:05.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:04 smithi052 bash[25156]: audit 2024-04-02T06:56:03.418033+0000 mon.smithi037 (mon.0) 795 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:05.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:04 smithi052 bash[25156]: cluster 2024-04-02T06:56:03.419826+0000 mgr.smithi037.yymbdj (mgr.14215) 234 : cluster 0 pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:56:05.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:04 smithi052 bash[25156]: cephadm 2024-04-02T06:56:03.420080+0000 mgr.smithi037.yymbdj (mgr.14215) 235 : cephadm 1 Deploying daemon rgw.foorgw.smithi037.tbjgok on smithi037 2024-04-02T06:56:06.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:05 smithi037 bash[18626]: cluster 2024-04-02T06:56:04.750742+0000 mon.smithi037 (mon.0) 796 : cluster 0 osdmap e39: 8 total, 8 up, 8 in 2024-04-02T06:56:06.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:05 smithi037 bash[18626]: audit 2024-04-02T06:56:04.756285+0000 mon.smithi052 (mon.1) 21 : audit 1 from='client.? 172.21.15.52:0/2571596467' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-04-02T06:56:06.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:05 smithi037 bash[18626]: audit 2024-04-02T06:56:04.756544+0000 mon.smithi037 (mon.0) 797 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-04-02T06:56:06.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:05 smithi052 bash[25156]: cluster 2024-04-02T06:56:04.750742+0000 mon.smithi037 (mon.0) 796 : cluster 0 osdmap e39: 8 total, 8 up, 8 in 2024-04-02T06:56:06.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:05 smithi052 bash[25156]: audit 2024-04-02T06:56:04.756285+0000 mon.smithi052 (mon.1) 21 : audit 1 from='client.? 172.21.15.52:0/2571596467' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-04-02T06:56:06.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:05 smithi052 bash[25156]: audit 2024-04-02T06:56:04.756544+0000 mon.smithi037 (mon.0) 797 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-04-02T06:56:06.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:06 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:07.007 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:06 smithi052 bash[25156]: cluster 2024-04-02T06:56:05.420436+0000 mgr.smithi037.yymbdj (mgr.14215) 236 : cluster 0 pgmap v194: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:56:07.008 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:06 smithi052 bash[25156]: cluster 2024-04-02T06:56:05.745141+0000 mon.smithi037 (mon.0) 798 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-02T06:56:07.008 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:06 smithi052 bash[25156]: audit 2024-04-02T06:56:05.753638+0000 mon.smithi037 (mon.0) 799 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-04-02T06:56:07.008 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:06 smithi052 bash[25156]: cluster 2024-04-02T06:56:05.762064+0000 mon.smithi037 (mon.0) 800 : cluster 0 osdmap e40: 8 total, 8 up, 8 in 2024-04-02T06:56:07.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:06 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:07.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:06 smithi037 bash[18626]: cluster 2024-04-02T06:56:05.420436+0000 mgr.smithi037.yymbdj (mgr.14215) 236 : cluster 0 pgmap v194: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:56:07.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:06 smithi037 bash[18626]: cluster 2024-04-02T06:56:05.745141+0000 mon.smithi037 (mon.0) 798 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-02T06:56:07.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:06 smithi037 bash[18626]: audit 2024-04-02T06:56:05.753638+0000 mon.smithi037 (mon.0) 799 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-04-02T06:56:07.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:06 smithi037 bash[18626]: cluster 2024-04-02T06:56:05.762064+0000 mon.smithi037 (mon.0) 800 : cluster 0 osdmap e40: 8 total, 8 up, 8 in 2024-04-02T06:56:08.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: cluster 2024-04-02T06:56:06.764251+0000 mon.smithi037 (mon.0) 801 : cluster 0 osdmap e41: 8 total, 8 up, 8 in 2024-04-02T06:56:08.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: audit 2024-04-02T06:56:06.773193+0000 mon.smithi037 (mon.0) 802 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:08.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: audit 2024-04-02T06:56:06.776018+0000 mon.smithi052 (mon.1) 22 : audit 1 from='client.? 172.21.15.52:0/552635241' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-04-02T06:56:08.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: audit 2024-04-02T06:56:06.776764+0000 mon.smithi037 (mon.0) 803 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-04-02T06:56:08.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: audit 2024-04-02T06:56:06.780230+0000 mon.smithi037 (mon.0) 804 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:08.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: audit 2024-04-02T06:56:06.794557+0000 mon.smithi037 (mon.0) 805 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:08.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: cephadm 2024-04-02T06:56:06.795179+0000 mgr.smithi037.yymbdj (mgr.14215) 237 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-04-02T06:56:08.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: audit 2024-04-02T06:56:06.799919+0000 mon.smithi037 (mon.0) 806 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:08.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: audit 2024-04-02T06:56:06.805356+0000 mon.smithi037 (mon.0) 807 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:08.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: audit 2024-04-02T06:56:06.837304+0000 mon.smithi037 (mon.0) 808 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:56:08.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:07 smithi037 bash[18626]: audit 2024-04-02T06:56:07.179646+0000 mon.smithi037 (mon.0) 809 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-04-02T06:56:08.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: cluster 2024-04-02T06:56:06.764251+0000 mon.smithi037 (mon.0) 801 : cluster 0 osdmap e41: 8 total, 8 up, 8 in 2024-04-02T06:56:08.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: audit 2024-04-02T06:56:06.773193+0000 mon.smithi037 (mon.0) 802 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:08.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: audit 2024-04-02T06:56:06.776018+0000 mon.smithi052 (mon.1) 22 : audit 1 from='client.? 172.21.15.52:0/552635241' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-04-02T06:56:08.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: audit 2024-04-02T06:56:06.776764+0000 mon.smithi037 (mon.0) 803 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-04-02T06:56:08.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: audit 2024-04-02T06:56:06.780230+0000 mon.smithi037 (mon.0) 804 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:08.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: audit 2024-04-02T06:56:06.794557+0000 mon.smithi037 (mon.0) 805 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:08.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: cephadm 2024-04-02T06:56:06.795179+0000 mgr.smithi037.yymbdj (mgr.14215) 237 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-04-02T06:56:08.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: audit 2024-04-02T06:56:06.799919+0000 mon.smithi037 (mon.0) 806 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:08.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: audit 2024-04-02T06:56:06.805356+0000 mon.smithi037 (mon.0) 807 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:08.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: audit 2024-04-02T06:56:06.837304+0000 mon.smithi037 (mon.0) 808 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:56:08.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:07 smithi052 bash[25156]: audit 2024-04-02T06:56:07.179646+0000 mon.smithi037 (mon.0) 809 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-04-02T06:56:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:08 smithi037 bash[18626]: audit 2024-04-02T06:56:07.177210+0000 mgr.smithi037.yymbdj (mgr.14215) 238 : audit 0 from='client.14526 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.37/16", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:56:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:08 smithi037 bash[18626]: cluster 2024-04-02T06:56:07.421036+0000 mgr.smithi037.yymbdj (mgr.14215) 239 : cluster 0 pgmap v197: 65 pgs: 13 active+clean, 52 unknown; 578 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 682 B/s wr, 1 op/s 2024-04-02T06:56:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:08 smithi037 bash[18626]: audit 2024-04-02T06:56:07.770873+0000 mon.smithi037 (mon.0) 810 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-04-02T06:56:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:08 smithi037 bash[18626]: audit 2024-04-02T06:56:07.770959+0000 mon.smithi037 (mon.0) 811 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-04-02T06:56:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:08 smithi037 bash[18626]: cluster 2024-04-02T06:56:07.775776+0000 mon.smithi037 (mon.0) 812 : cluster 0 osdmap e42: 8 total, 8 up, 8 in 2024-04-02T06:56:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:08 smithi037 bash[18626]: audit 2024-04-02T06:56:07.778036+0000 mon.smithi037 (mon.0) 813 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-04-02T06:56:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:08 smithi052 bash[25156]: audit 2024-04-02T06:56:07.177210+0000 mgr.smithi037.yymbdj (mgr.14215) 238 : audit 0 from='client.14526 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.37/16", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:56:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:08 smithi052 bash[25156]: cluster 2024-04-02T06:56:07.421036+0000 mgr.smithi037.yymbdj (mgr.14215) 239 : cluster 0 pgmap v197: 65 pgs: 13 active+clean, 52 unknown; 578 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 682 B/s wr, 1 op/s 2024-04-02T06:56:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:08 smithi052 bash[25156]: audit 2024-04-02T06:56:07.770873+0000 mon.smithi037 (mon.0) 810 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-04-02T06:56:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:08 smithi052 bash[25156]: audit 2024-04-02T06:56:07.770959+0000 mon.smithi037 (mon.0) 811 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-04-02T06:56:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:08 smithi052 bash[25156]: cluster 2024-04-02T06:56:07.775776+0000 mon.smithi037 (mon.0) 812 : cluster 0 osdmap e42: 8 total, 8 up, 8 in 2024-04-02T06:56:09.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:08 smithi052 bash[25156]: audit 2024-04-02T06:56:07.778036+0000 mon.smithi037 (mon.0) 813 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-04-02T06:56:09.517 INFO:teuthology.run_tasks:Running task vip.exec... 2024-04-02T06:56:09.526 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:56:09.527 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-04-02T06:56:09.540 INFO:teuthology.orchestra.run.smithi037.stderr:+ dnf install -y python3-boto3 2024-04-02T06:56:09.540 INFO:teuthology.orchestra.run.smithi037.stderr:bash: line 1: dnf: command not found 2024-04-02T06:56:09.540 INFO:teuthology.orchestra.run.smithi037.stderr:+ apt install -y python3-boto3 2024-04-02T06:56:09.545 INFO:teuthology.orchestra.run.smithi037.stderr: 2024-04-02T06:56:09.545 INFO:teuthology.orchestra.run.smithi037.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-04-02T06:56:09.545 INFO:teuthology.orchestra.run.smithi037.stderr: 2024-04-02T06:56:09.595 INFO:teuthology.orchestra.run.smithi037.stdout:Reading package lists... 2024-04-02T06:56:09.792 INFO:teuthology.orchestra.run.smithi037.stdout:Building dependency tree... 2024-04-02T06:56:09.793 INFO:teuthology.orchestra.run.smithi037.stdout:Reading state information... 2024-04-02T06:56:10.046 INFO:teuthology.orchestra.run.smithi037.stdout:The following packages were automatically installed and are no longer required: 2024-04-02T06:56:10.046 INFO:teuthology.orchestra.run.smithi037.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-02T06:56:10.046 INFO:teuthology.orchestra.run.smithi037.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-02T06:56:10.046 INFO:teuthology.orchestra.run.smithi037.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-02T06:56:10.046 INFO:teuthology.orchestra.run.smithi037.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-02T06:56:10.047 INFO:teuthology.orchestra.run.smithi037.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-02T06:56:10.047 INFO:teuthology.orchestra.run.smithi037.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-02T06:56:10.048 INFO:teuthology.orchestra.run.smithi037.stdout:The following additional packages will be installed: 2024-04-02T06:56:10.048 INFO:teuthology.orchestra.run.smithi037.stdout: python3-botocore python3-certifi python3-idna python3-jmespath 2024-04-02T06:56:10.048 INFO:teuthology.orchestra.run.smithi037.stdout: python3-requests python3-s3transfer python3-urllib3 2024-04-02T06:56:10.050 INFO:teuthology.orchestra.run.smithi037.stdout:Suggested packages: 2024-04-02T06:56:10.050 INFO:teuthology.orchestra.run.smithi037.stdout: python3-openssl python3-socks python-requests-doc 2024-04-02T06:56:10.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: audit 2024-04-02T06:56:08.774907+0000 mon.smithi037 (mon.0) 814 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-04-02T06:56:10.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: cluster 2024-04-02T06:56:08.783867+0000 mon.smithi037 (mon.0) 815 : cluster 0 osdmap e43: 8 total, 8 up, 8 in 2024-04-02T06:56:10.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: audit 2024-04-02T06:56:08.790422+0000 mon.smithi052 (mon.1) 23 : audit 1 from='client.? 172.21.15.52:0/552635241' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-04-02T06:56:10.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: audit 2024-04-02T06:56:08.800433+0000 mon.smithi037 (mon.0) 816 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-04-02T06:56:10.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: audit 2024-04-02T06:56:08.801142+0000 mon.smithi037 (mon.0) 817 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-04-02T06:56:10.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: cephadm 2024-04-02T06:56:08.846673+0000 mgr.smithi037.yymbdj (mgr.14215) 240 : cephadm 1 Saving service nfs.foo spec with placement count:1 2024-04-02T06:56:10.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: audit 2024-04-02T06:56:08.851915+0000 mon.smithi037 (mon.0) 818 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:10.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: cephadm 2024-04-02T06:56:08.853788+0000 mgr.smithi037.yymbdj (mgr.14215) 241 : cephadm 1 Saving service ingress.nfs.foo spec with placement count:2 2024-04-02T06:56:10.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: audit 2024-04-02T06:56:08.858548+0000 mon.smithi037 (mon.0) 819 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:10.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: audit 2024-04-02T06:56:09.777687+0000 mon.smithi037 (mon.0) 820 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-04-02T06:56:10.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: audit 2024-04-02T06:56:09.777829+0000 mon.smithi037 (mon.0) 821 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-04-02T06:56:10.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:09 smithi037 bash[18626]: cluster 2024-04-02T06:56:09.784850+0000 mon.smithi037 (mon.0) 822 : cluster 0 osdmap e44: 8 total, 8 up, 8 in 2024-04-02T06:56:10.077 INFO:teuthology.orchestra.run.smithi037.stdout:The following NEW packages will be installed: 2024-04-02T06:56:10.077 INFO:teuthology.orchestra.run.smithi037.stdout: python3-boto3 python3-botocore python3-certifi python3-idna python3-jmespath 2024-04-02T06:56:10.077 INFO:teuthology.orchestra.run.smithi037.stdout: python3-requests python3-s3transfer python3-urllib3 2024-04-02T06:56:10.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: audit 2024-04-02T06:56:08.774907+0000 mon.smithi037 (mon.0) 814 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-04-02T06:56:10.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: cluster 2024-04-02T06:56:08.783867+0000 mon.smithi037 (mon.0) 815 : cluster 0 osdmap e43: 8 total, 8 up, 8 in 2024-04-02T06:56:10.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: audit 2024-04-02T06:56:08.790422+0000 mon.smithi052 (mon.1) 23 : audit 1 from='client.? 172.21.15.52:0/552635241' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-04-02T06:56:10.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: audit 2024-04-02T06:56:08.800433+0000 mon.smithi037 (mon.0) 816 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-04-02T06:56:10.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: audit 2024-04-02T06:56:08.801142+0000 mon.smithi037 (mon.0) 817 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-04-02T06:56:10.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: cephadm 2024-04-02T06:56:08.846673+0000 mgr.smithi037.yymbdj (mgr.14215) 240 : cephadm 1 Saving service nfs.foo spec with placement count:1 2024-04-02T06:56:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: audit 2024-04-02T06:56:08.851915+0000 mon.smithi037 (mon.0) 818 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: cephadm 2024-04-02T06:56:08.853788+0000 mgr.smithi037.yymbdj (mgr.14215) 241 : cephadm 1 Saving service ingress.nfs.foo spec with placement count:2 2024-04-02T06:56:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: audit 2024-04-02T06:56:08.858548+0000 mon.smithi037 (mon.0) 819 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: audit 2024-04-02T06:56:09.777687+0000 mon.smithi037 (mon.0) 820 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-04-02T06:56:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: audit 2024-04-02T06:56:09.777829+0000 mon.smithi037 (mon.0) 821 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-04-02T06:56:10.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:09 smithi052 bash[25156]: cluster 2024-04-02T06:56:09.784850+0000 mon.smithi037 (mon.0) 822 : cluster 0 osdmap e44: 8 total, 8 up, 8 in 2024-04-02T06:56:10.259 INFO:teuthology.orchestra.run.smithi037.stdout:0 upgraded, 8 newly installed, 0 to remove and 299 not upgraded. 2024-04-02T06:56:10.259 INFO:teuthology.orchestra.run.smithi037.stdout:Need to get 4,996 kB of archives. 2024-04-02T06:56:10.259 INFO:teuthology.orchestra.run.smithi037.stdout:After this operation, 66.8 MB of additional disk space will be used. 2024-04-02T06:56:10.259 INFO:teuthology.orchestra.run.smithi037.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jmespath all 0.10.0-1 [21.7 kB] 2024-04-02T06:56:10.431 INFO:teuthology.orchestra.run.smithi037.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-04-02T06:56:10.604 INFO:teuthology.orchestra.run.smithi037.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-02T06:56:10.706 INFO:teuthology.orchestra.run.smithi037.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-02T06:56:10.725 INFO:teuthology.orchestra.run.smithi037.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-04-02T06:56:10.742 INFO:teuthology.orchestra.run.smithi037.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-botocore all 1.23.34+repack-1 [4,508 kB] 2024-04-02T06:56:11.051 INFO:teuthology.orchestra.run.smithi037.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-s3transfer all 0.5.0-1 [51.5 kB] 2024-04-02T06:56:11.052 INFO:teuthology.orchestra.run.smithi037.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-boto3 all 1.20.34+dfsg-1 [68.0 kB] 2024-04-02T06:56:11.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:10 smithi052 bash[25156]: cluster 2024-04-02T06:56:09.422050+0000 mgr.smithi037.yymbdj (mgr.14215) 242 : cluster 0 pgmap v200: 129 pgs: 20 creating+peering, 41 unknown, 68 active+clean; 578 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.5 KiB/s wr, 3 op/s 2024-04-02T06:56:11.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:10 smithi052 bash[25156]: cluster 2024-04-02T06:56:09.873145+0000 mon.smithi037 (mon.0) 823 : cluster 0 mgrmap e20: smithi037.yymbdj(active, since 5m), standbys: smithi052.hwhbeq 2024-04-02T06:56:11.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:10 smithi052 bash[25156]: cluster 2024-04-02T06:56:10.818037+0000 mon.smithi037 (mon.0) 824 : cluster 0 osdmap e45: 8 total, 8 up, 8 in 2024-04-02T06:56:11.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:10 smithi052 bash[25156]: audit 2024-04-02T06:56:10.819318+0000 mon.smithi037 (mon.0) 825 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-04-02T06:56:11.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:10 smithi052 bash[25156]: audit 2024-04-02T06:56:10.828432+0000 mon.smithi052 (mon.1) 24 : audit 1 from='client.? 172.21.15.52:0/552635241' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-04-02T06:56:11.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:10 smithi052 bash[25156]: audit 2024-04-02T06:56:10.830654+0000 mon.smithi037 (mon.0) 826 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:11.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:10 smithi052 bash[25156]: audit 2024-04-02T06:56:10.845030+0000 mon.smithi037 (mon.0) 827 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-04-02T06:56:11.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:10 smithi037 bash[18626]: cluster 2024-04-02T06:56:09.422050+0000 mgr.smithi037.yymbdj (mgr.14215) 242 : cluster 0 pgmap v200: 129 pgs: 20 creating+peering, 41 unknown, 68 active+clean; 578 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.5 KiB/s wr, 3 op/s 2024-04-02T06:56:11.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:10 smithi037 bash[18626]: cluster 2024-04-02T06:56:09.873145+0000 mon.smithi037 (mon.0) 823 : cluster 0 mgrmap e20: smithi037.yymbdj(active, since 5m), standbys: smithi052.hwhbeq 2024-04-02T06:56:11.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:10 smithi037 bash[18626]: cluster 2024-04-02T06:56:10.818037+0000 mon.smithi037 (mon.0) 824 : cluster 0 osdmap e45: 8 total, 8 up, 8 in 2024-04-02T06:56:11.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:10 smithi037 bash[18626]: audit 2024-04-02T06:56:10.819318+0000 mon.smithi037 (mon.0) 825 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-04-02T06:56:11.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:10 smithi037 bash[18626]: audit 2024-04-02T06:56:10.828432+0000 mon.smithi052 (mon.1) 24 : audit 1 from='client.? 172.21.15.52:0/552635241' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-04-02T06:56:11.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:10 smithi037 bash[18626]: audit 2024-04-02T06:56:10.830654+0000 mon.smithi037 (mon.0) 826 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:11.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:10 smithi037 bash[18626]: audit 2024-04-02T06:56:10.845030+0000 mon.smithi037 (mon.0) 827 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-04-02T06:56:11.361 INFO:teuthology.orchestra.run.smithi037.stderr:debconf: unable to initialize frontend: Dialog 2024-04-02T06:56:11.361 INFO:teuthology.orchestra.run.smithi037.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-04-02T06:56:11.361 INFO:teuthology.orchestra.run.smithi037.stderr:debconf: falling back to frontend: Readline 2024-04-02T06:56:11.378 INFO:teuthology.orchestra.run.smithi037.stderr:debconf: unable to initialize frontend: Readline 2024-04-02T06:56:11.378 INFO:teuthology.orchestra.run.smithi037.stderr:debconf: (This frontend requires a controlling tty.) 2024-04-02T06:56:11.378 INFO:teuthology.orchestra.run.smithi037.stderr:debconf: falling back to frontend: Teletype 2024-04-02T06:56:11.383 INFO:teuthology.orchestra.run.smithi037.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-04-02T06:56:11.415 INFO:teuthology.orchestra.run.smithi037.stdout:Fetched 4,996 kB in 1s (5,169 kB/s) 2024-04-02T06:56:11.548 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package python3-jmespath. 2024-04-02T06:56:11.604 INFO:teuthology.orchestra.run.smithi037.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-04-02T06:56:11.609 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../0-python3-jmespath_0.10.0-1_all.deb ... 2024-04-02T06:56:11.656 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking python3-jmespath (0.10.0-1) ... 2024-04-02T06:56:11.960 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package python3-urllib3. 2024-04-02T06:56:11.987 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../1-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-02T06:56:12.026 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-02T06:56:12.346 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package python3-certifi. 2024-04-02T06:56:12.358 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../2-python3-certifi_2020.6.20-1_all.deb ... 2024-04-02T06:56:12.396 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-02T06:56:12.734 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package python3-idna. 2024-04-02T06:56:12.760 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../3-python3-idna_3.3-1_all.deb ... 2024-04-02T06:56:12.800 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-02T06:56:13.104 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package python3-requests. 2024-04-02T06:56:13.118 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../4-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-02T06:56:13.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:12 smithi037 bash[18626]: cluster 2024-04-02T06:56:11.422685+0000 mgr.smithi037.yymbdj (mgr.14215) 243 : cluster 0 pgmap v203: 161 pgs: 31 creating+peering, 28 unknown, 102 active+clean; 578 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 511 B/s wr, 3 op/s 2024-04-02T06:56:13.151 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:12 smithi037 bash[18626]: audit 2024-04-02T06:56:11.816602+0000 mon.smithi037 (mon.0) 828 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-04-02T06:56:13.151 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:12 smithi037 bash[18626]: audit 2024-04-02T06:56:11.816686+0000 mon.smithi037 (mon.0) 829 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-04-02T06:56:13.151 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:12 smithi037 bash[18626]: cluster 2024-04-02T06:56:11.822398+0000 mon.smithi037 (mon.0) 830 : cluster 0 osdmap e46: 8 total, 8 up, 8 in 2024-04-02T06:56:13.151 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:12 smithi037 bash[18626]: audit 2024-04-02T06:56:11.827586+0000 mon.smithi052 (mon.1) 25 : audit 1 from='client.? 172.21.15.52:0/552635241' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-02T06:56:13.151 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:12 smithi037 bash[18626]: audit 2024-04-02T06:56:11.829707+0000 mon.smithi037 (mon.0) 831 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-02T06:56:13.151 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:12 smithi037 bash[18626]: audit 2024-04-02T06:56:11.831213+0000 mon.smithi037 (mon.0) 832 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-02T06:56:13.151 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:12 smithi037 bash[18626]: audit 2024-04-02T06:56:12.423774+0000 mon.smithi037 (mon.0) 833 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:13.151 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:12 smithi037 bash[18626]: audit 2024-04-02T06:56:12.430208+0000 mon.smithi037 (mon.0) 834 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:12 smithi052 bash[25156]: cluster 2024-04-02T06:56:11.422685+0000 mgr.smithi037.yymbdj (mgr.14215) 243 : cluster 0 pgmap v203: 161 pgs: 31 creating+peering, 28 unknown, 102 active+clean; 578 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 511 B/s wr, 3 op/s 2024-04-02T06:56:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:12 smithi052 bash[25156]: audit 2024-04-02T06:56:11.816602+0000 mon.smithi037 (mon.0) 828 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-04-02T06:56:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:12 smithi052 bash[25156]: audit 2024-04-02T06:56:11.816686+0000 mon.smithi037 (mon.0) 829 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-04-02T06:56:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:12 smithi052 bash[25156]: cluster 2024-04-02T06:56:11.822398+0000 mon.smithi037 (mon.0) 830 : cluster 0 osdmap e46: 8 total, 8 up, 8 in 2024-04-02T06:56:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:12 smithi052 bash[25156]: audit 2024-04-02T06:56:11.827586+0000 mon.smithi052 (mon.1) 25 : audit 1 from='client.? 172.21.15.52:0/552635241' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-02T06:56:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:12 smithi052 bash[25156]: audit 2024-04-02T06:56:11.829707+0000 mon.smithi037 (mon.0) 831 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-02T06:56:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:12 smithi052 bash[25156]: audit 2024-04-02T06:56:11.831213+0000 mon.smithi037 (mon.0) 832 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-02T06:56:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:12 smithi052 bash[25156]: audit 2024-04-02T06:56:12.423774+0000 mon.smithi037 (mon.0) 833 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:12 smithi052 bash[25156]: audit 2024-04-02T06:56:12.430208+0000 mon.smithi037 (mon.0) 834 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:13.162 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-02T06:56:13.457 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package python3-botocore. 2024-04-02T06:56:13.469 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../5-python3-botocore_1.23.34+repack-1_all.deb ... 2024-04-02T06:56:13.507 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking python3-botocore (1.23.34+repack-1) ... 2024-04-02T06:56:14.128 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:12.818151+0000 mon.smithi037 (mon.0) 835 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-04-02T06:56:14.128 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:12.818232+0000 mon.smithi037 (mon.0) 836 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-04-02T06:56:14.128 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: cluster 2024-04-02T06:56:12.820902+0000 mon.smithi037 (mon.0) 837 : cluster 0 osdmap e47: 8 total, 8 up, 8 in 2024-04-02T06:56:14.128 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.075368+0000 mon.smithi037 (mon.0) 838 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.128 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.081508+0000 mon.smithi037 (mon.0) 839 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.128 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.082889+0000 mon.smithi037 (mon.0) 840 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:14.128 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.084511+0000 mon.smithi037 (mon.0) 841 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:56:14.128 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.563985+0000 mon.smithi037 (mon.0) 842 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.572278+0000 mon.smithi037 (mon.0) 843 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.580683+0000 mon.smithi037 (mon.0) 844 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.585220+0000 mon.smithi037 (mon.0) 845 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.603200+0000 mon.smithi037 (mon.0) 846 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.604307+0000 mon.smithi037 (mon.0) 847 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.evpznx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.606207+0000 mon.smithi037 (mon.0) 848 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.evpznx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.609342+0000 mon.smithi037 (mon.0) 849 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.611232+0000 mon.smithi037 (mon.0) 850 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.614349+0000 mon.smithi037 (mon.0) 851 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.666715+0000 mon.smithi037 (mon.0) 852 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.668540+0000 mon.smithi037 (mon.0) 853 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.730407+0000 mon.smithi037 (mon.0) 854 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.evpznx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-02T06:56:14.129 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.734196+0000 mon.smithi037 (mon.0) 855 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.evpznx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-02T06:56:14.130 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:13 smithi037 bash[18626]: audit 2024-04-02T06:56:13.741854+0000 mon.smithi037 (mon.0) 856 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:14.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:12.818151+0000 mon.smithi037 (mon.0) 835 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi052.ytmeom' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-04-02T06:56:14.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:12.818232+0000 mon.smithi037 (mon.0) 836 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-04-02T06:56:14.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: cluster 2024-04-02T06:56:12.820902+0000 mon.smithi037 (mon.0) 837 : cluster 0 osdmap e47: 8 total, 8 up, 8 in 2024-04-02T06:56:14.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.075368+0000 mon.smithi037 (mon.0) 838 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.081508+0000 mon.smithi037 (mon.0) 839 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.082889+0000 mon.smithi037 (mon.0) 840 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:14.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.084511+0000 mon.smithi037 (mon.0) 841 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:56:14.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.563985+0000 mon.smithi037 (mon.0) 842 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.572278+0000 mon.smithi037 (mon.0) 843 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.160 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.580683+0000 mon.smithi037 (mon.0) 844 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.160 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.585220+0000 mon.smithi037 (mon.0) 845 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:56:14.160 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.603200+0000 mon.smithi037 (mon.0) 846 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:14.160 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.604307+0000 mon.smithi037 (mon.0) 847 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.evpznx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-04-02T06:56:14.160 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.606207+0000 mon.smithi037 (mon.0) 848 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.evpznx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-04-02T06:56:14.161 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.609342+0000 mon.smithi037 (mon.0) 849 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-04-02T06:56:14.161 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.611232+0000 mon.smithi037 (mon.0) 850 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-04-02T06:56:14.161 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.614349+0000 mon.smithi037 (mon.0) 851 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:14.161 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.666715+0000 mon.smithi037 (mon.0) 852 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-04-02T06:56:14.161 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.668540+0000 mon.smithi037 (mon.0) 853 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-04-02T06:56:14.161 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.730407+0000 mon.smithi037 (mon.0) 854 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.evpznx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-02T06:56:14.162 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.734196+0000 mon.smithi037 (mon.0) 855 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.evpznx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-02T06:56:14.162 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:13 smithi052 bash[25156]: audit 2024-04-02T06:56:13.741854+0000 mon.smithi037 (mon.0) 856 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:56:15.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:14 smithi052 bash[25156]: cephadm 2024-04-02T06:56:13.090250+0000 mgr.smithi037.yymbdj (mgr.14215) 244 : cephadm 1 Checking dashboard <-> RGW credentials 2024-04-02T06:56:15.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:14 smithi052 bash[25156]: cluster 2024-04-02T06:56:13.423459+0000 mgr.smithi037.yymbdj (mgr.14215) 245 : cluster 0 pgmap v206: 161 pgs: 25 creating+peering, 10 unknown, 126 active+clean; 579 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s rd, 3.5 KiB/s wr, 142 op/s 2024-04-02T06:56:15.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:14 smithi052 bash[25156]: cephadm 2024-04-02T06:56:13.603901+0000 mgr.smithi037.yymbdj (mgr.14215) 246 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi037.evpznx 2024-04-02T06:56:15.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:14 smithi052 bash[25156]: cephadm 2024-04-02T06:56:13.608994+0000 mgr.smithi037.yymbdj (mgr.14215) 247 : cephadm 1 Ensuring nfs.foo.0 is in the ganesha grace table 2024-04-02T06:56:15.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:14 smithi052 bash[25156]: cephadm 2024-04-02T06:56:13.729900+0000 mgr.smithi037.yymbdj (mgr.14215) 248 : cephadm 1 Rados config object exists: conf-nfs.foo 2024-04-02T06:56:15.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:14 smithi052 bash[25156]: cephadm 2024-04-02T06:56:13.729999+0000 mgr.smithi037.yymbdj (mgr.14215) 249 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi037.evpznx-rgw 2024-04-02T06:56:15.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:14 smithi052 bash[25156]: cephadm 2024-04-02T06:56:13.736718+0000 mgr.smithi037.yymbdj (mgr.14215) 250 : cephadm 3 Bind address in nfs.foo.0.0.smithi037.evpznx's ganesha conf is defaulting to empty 2024-04-02T06:56:15.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:14 smithi052 bash[25156]: cephadm 2024-04-02T06:56:13.743083+0000 mgr.smithi037.yymbdj (mgr.14215) 251 : cephadm 1 Deploying daemon nfs.foo.0.0.smithi037.evpznx on smithi037 2024-04-02T06:56:15.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:14 smithi052 bash[25156]: cluster 2024-04-02T06:56:14.079526+0000 mon.smithi037 (mon.0) 857 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-02T06:56:15.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:14 smithi052 bash[25156]: cluster 2024-04-02T06:56:14.079578+0000 mon.smithi037 (mon.0) 858 : cluster 1 Cluster is now healthy 2024-04-02T06:56:15.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:14 smithi037 bash[18626]: cephadm 2024-04-02T06:56:13.090250+0000 mgr.smithi037.yymbdj (mgr.14215) 244 : cephadm 1 Checking dashboard <-> RGW credentials 2024-04-02T06:56:15.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:14 smithi037 bash[18626]: cluster 2024-04-02T06:56:13.423459+0000 mgr.smithi037.yymbdj (mgr.14215) 245 : cluster 0 pgmap v206: 161 pgs: 25 creating+peering, 10 unknown, 126 active+clean; 579 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s rd, 3.5 KiB/s wr, 142 op/s 2024-04-02T06:56:15.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:14 smithi037 bash[18626]: cephadm 2024-04-02T06:56:13.603901+0000 mgr.smithi037.yymbdj (mgr.14215) 246 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi037.evpznx 2024-04-02T06:56:15.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:14 smithi037 bash[18626]: cephadm 2024-04-02T06:56:13.608994+0000 mgr.smithi037.yymbdj (mgr.14215) 247 : cephadm 1 Ensuring nfs.foo.0 is in the ganesha grace table 2024-04-02T06:56:15.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:14 smithi037 bash[18626]: cephadm 2024-04-02T06:56:13.729900+0000 mgr.smithi037.yymbdj (mgr.14215) 248 : cephadm 1 Rados config object exists: conf-nfs.foo 2024-04-02T06:56:15.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:14 smithi037 bash[18626]: cephadm 2024-04-02T06:56:13.729999+0000 mgr.smithi037.yymbdj (mgr.14215) 249 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi037.evpznx-rgw 2024-04-02T06:56:15.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:14 smithi037 bash[18626]: cephadm 2024-04-02T06:56:13.736718+0000 mgr.smithi037.yymbdj (mgr.14215) 250 : cephadm 3 Bind address in nfs.foo.0.0.smithi037.evpznx's ganesha conf is defaulting to empty 2024-04-02T06:56:15.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:14 smithi037 bash[18626]: cephadm 2024-04-02T06:56:13.743083+0000 mgr.smithi037.yymbdj (mgr.14215) 251 : cephadm 1 Deploying daemon nfs.foo.0.0.smithi037.evpznx on smithi037 2024-04-02T06:56:15.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:14 smithi037 bash[18626]: cluster 2024-04-02T06:56:14.079526+0000 mon.smithi037 (mon.0) 857 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-02T06:56:15.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:14 smithi037 bash[18626]: cluster 2024-04-02T06:56:14.079578+0000 mon.smithi037 (mon.0) 858 : cluster 1 Cluster is now healthy 2024-04-02T06:56:16.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:15 smithi052 bash[25156]: audit 2024-04-02T06:56:15.475605+0000 mon.smithi037 (mon.0) 859 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:56:16.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:15 smithi037 bash[18626]: audit 2024-04-02T06:56:15.475605+0000 mon.smithi037 (mon.0) 859 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:56:17.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:16 smithi037 bash[18626]: cluster 2024-04-02T06:56:15.424807+0000 mgr.smithi037.yymbdj (mgr.14215) 252 : cluster 0 pgmap v207: 161 pgs: 11 creating+peering, 150 active+clean; 581 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 98 KiB/s rd, 4.4 KiB/s wr, 197 op/s 2024-04-02T06:56:17.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:16 smithi052 bash[25156]: cluster 2024-04-02T06:56:15.424807+0000 mgr.smithi037.yymbdj (mgr.14215) 252 : cluster 0 pgmap v207: 161 pgs: 11 creating+peering, 150 active+clean; 581 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 98 KiB/s rd, 4.4 KiB/s wr, 197 op/s 2024-04-02T06:56:17.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:17 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:17.562 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package python3-s3transfer. 2024-04-02T06:56:17.591 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../6-python3-s3transfer_0.5.0-1_all.deb ... 2024-04-02T06:56:17.629 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking python3-s3transfer (0.5.0-1) ... 2024-04-02T06:56:17.857 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:17 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:18.100 INFO:teuthology.orchestra.run.smithi037.stdout:Selecting previously unselected package python3-boto3. 2024-04-02T06:56:18.127 INFO:teuthology.orchestra.run.smithi037.stdout:Preparing to unpack .../7-python3-boto3_1.20.34+dfsg-1_all.deb ... 2024-04-02T06:56:18.433 INFO:teuthology.orchestra.run.smithi037.stdout:Unpacking python3-boto3 (1.20.34+dfsg-1) ... 2024-04-02T06:56:19.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:18 smithi052 bash[25156]: cluster 2024-04-02T06:56:17.425572+0000 mgr.smithi037.yymbdj (mgr.14215) 253 : cluster 0 pgmap v208: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 120 KiB/s rd, 5.3 KiB/s wr, 242 op/s 2024-04-02T06:56:19.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:18 smithi052 bash[25156]: audit 2024-04-02T06:56:17.899895+0000 mon.smithi037 (mon.0) 860 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:19.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:18 smithi052 bash[25156]: audit 2024-04-02T06:56:17.906247+0000 mon.smithi037 (mon.0) 861 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:19.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:18 smithi052 bash[25156]: audit 2024-04-02T06:56:17.944576+0000 mon.smithi037 (mon.0) 862 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:19.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:18 smithi052 bash[25156]: audit 2024-04-02T06:56:17.973973+0000 mon.smithi037 (mon.0) 863 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:19.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:18 smithi052 bash[25156]: audit 2024-04-02T06:56:17.984751+0000 mon.smithi037 (mon.0) 864 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:19.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:18 smithi052 bash[25156]: cephadm 2024-04-02T06:56:18.009049+0000 mgr.smithi037.yymbdj (mgr.14215) 254 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi037.vmqnxi on smithi037 2024-04-02T06:56:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:18 smithi037 bash[18626]: cluster 2024-04-02T06:56:17.425572+0000 mgr.smithi037.yymbdj (mgr.14215) 253 : cluster 0 pgmap v208: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 120 KiB/s rd, 5.3 KiB/s wr, 242 op/s 2024-04-02T06:56:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:18 smithi037 bash[18626]: audit 2024-04-02T06:56:17.899895+0000 mon.smithi037 (mon.0) 860 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:18 smithi037 bash[18626]: audit 2024-04-02T06:56:17.906247+0000 mon.smithi037 (mon.0) 861 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:18 smithi037 bash[18626]: audit 2024-04-02T06:56:17.944576+0000 mon.smithi037 (mon.0) 862 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:18 smithi037 bash[18626]: audit 2024-04-02T06:56:17.973973+0000 mon.smithi037 (mon.0) 863 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:18 smithi037 bash[18626]: audit 2024-04-02T06:56:17.984751+0000 mon.smithi037 (mon.0) 864 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:18 smithi037 bash[18626]: cephadm 2024-04-02T06:56:18.009049+0000 mgr.smithi037.yymbdj (mgr.14215) 254 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi037.vmqnxi on smithi037 2024-04-02T06:56:19.599 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-02T06:56:19.854 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up python3-jmespath (0.10.0-1) ... 2024-04-02T06:56:20.114 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up python3-idna (3.3-1) ... 2024-04-02T06:56:20.487 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-02T06:56:20.799 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-02T06:56:21.125 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up python3-botocore (1.23.34+repack-1) ... 2024-04-02T06:56:21.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:20 smithi052 bash[25156]: cluster 2024-04-02T06:56:19.426357+0000 mgr.smithi037.yymbdj (mgr.14215) 255 : cluster 0 pgmap v209: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 99 KiB/s rd, 4.7 KiB/s wr, 200 op/s 2024-04-02T06:56:21.159 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:20 smithi052 bash[25156]: audit 2024-04-02T06:56:20.839273+0000 mon.smithi037 (mon.0) 865 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:21.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:20 smithi037 bash[18626]: cluster 2024-04-02T06:56:19.426357+0000 mgr.smithi037.yymbdj (mgr.14215) 255 : cluster 0 pgmap v209: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 99 KiB/s rd, 4.7 KiB/s wr, 200 op/s 2024-04-02T06:56:21.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:20 smithi037 bash[18626]: audit 2024-04-02T06:56:20.839273+0000 mon.smithi037 (mon.0) 865 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:21.658 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up python3-s3transfer (0.5.0-1) ... 2024-04-02T06:56:22.070 INFO:teuthology.orchestra.run.smithi037.stdout:Setting up python3-boto3 (1.20.34+dfsg-1) ... 2024-04-02T06:56:23.118 DEBUG:teuthology.orchestra.run.smithi037:> 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-04-02T06:56:23.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:22 smithi052 bash[25156]: cluster 2024-04-02T06:56:21.427115+0000 mgr.smithi037.yymbdj (mgr.14215) 256 : cluster 0 pgmap v210: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 82 KiB/s rd, 4.0 KiB/s wr, 166 op/s 2024-04-02T06:56:23.173 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:22 smithi037 bash[18626]: cluster 2024-04-02T06:56:21.427115+0000 mgr.smithi037.yymbdj (mgr.14215) 256 : cluster 0 pgmap v210: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 82 KiB/s rd, 4.0 KiB/s wr, 166 op/s 2024-04-02T06:56:23.175 INFO:teuthology.orchestra.run.smithi037.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-04-02T06:56:25.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:24 smithi037 bash[18626]: cluster 2024-04-02T06:56:23.428154+0000 mgr.smithi037.yymbdj (mgr.14215) 257 : cluster 0 pgmap v211: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 76 KiB/s rd, 4.1 KiB/s wr, 152 op/s 2024-04-02T06:56:25.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:24 smithi052 bash[25156]: cluster 2024-04-02T06:56:23.428154+0000 mgr.smithi037.yymbdj (mgr.14215) 257 : cluster 0 pgmap v211: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 76 KiB/s rd, 4.1 KiB/s wr, 152 op/s 2024-04-02T06:56:26.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:26 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:26.844 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:26 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:27.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:26 smithi052 bash[25156]: cluster 2024-04-02T06:56:25.429149+0000 mgr.smithi037.yymbdj (mgr.14215) 258 : cluster 0 pgmap v212: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 44 KiB/s rd, 2.5 KiB/s wr, 88 op/s 2024-04-02T06:56:27.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:26 smithi052 bash[25156]: audit 2024-04-02T06:56:25.849218+0000 mon.smithi037 (mon.0) 866 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:27.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:26 smithi037 bash[18626]: cluster 2024-04-02T06:56:25.429149+0000 mgr.smithi037.yymbdj (mgr.14215) 258 : cluster 0 pgmap v212: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 44 KiB/s rd, 2.5 KiB/s wr, 88 op/s 2024-04-02T06:56:27.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:26 smithi037 bash[18626]: audit 2024-04-02T06:56:25.849218+0000 mon.smithi037 (mon.0) 866 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:27.970 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:56:28.139 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:27 smithi037 bash[18626]: audit 2024-04-02T06:56:26.877648+0000 mon.smithi037 (mon.0) 867 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:28.140 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:27 smithi037 bash[18626]: audit 2024-04-02T06:56:26.885021+0000 mon.smithi037 (mon.0) 868 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:28.140 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:27 smithi037 bash[18626]: audit 2024-04-02T06:56:26.898059+0000 mon.smithi037 (mon.0) 869 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:28.140 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:27 smithi037 bash[18626]: cephadm 2024-04-02T06:56:26.900559+0000 mgr.smithi037.yymbdj (mgr.14215) 259 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi052.hwtpoc on smithi052 2024-04-02T06:56:28.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:27 smithi052 bash[25156]: audit 2024-04-02T06:56:26.877648+0000 mon.smithi037 (mon.0) 867 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:28.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:27 smithi052 bash[25156]: audit 2024-04-02T06:56:26.885021+0000 mon.smithi037 (mon.0) 868 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:28.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:27 smithi052 bash[25156]: audit 2024-04-02T06:56:26.898059+0000 mon.smithi037 (mon.0) 869 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:28.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:27 smithi052 bash[25156]: cephadm 2024-04-02T06:56:26.900559+0000 mgr.smithi037.yymbdj (mgr.14215) 259 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi052.hwtpoc on smithi052 2024-04-02T06:56:29.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:28 smithi037 bash[18626]: cluster 2024-04-02T06:56:27.430495+0000 mgr.smithi037.yymbdj (mgr.14215) 260 : cluster 0 pgmap v213: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 21 KiB/s rd, 1.6 KiB/s wr, 42 op/s 2024-04-02T06:56:29.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:28 smithi052 bash[25156]: cluster 2024-04-02T06:56:27.430495+0000 mgr.smithi037.yymbdj (mgr.14215) 260 : cluster 0 pgmap v213: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 21 KiB/s rd, 1.6 KiB/s wr, 42 op/s 2024-04-02T06:56:31.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:30 smithi037 bash[18626]: cluster 2024-04-02T06:56:29.431976+0000 mgr.smithi037.yymbdj (mgr.14215) 261 : cluster 0 pgmap v214: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 767 B/s wr, 2 op/s 2024-04-02T06:56:31.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:30 smithi037 bash[18626]: audit 2024-04-02T06:56:30.444944+0000 mon.smithi037 (mon.0) 870 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]: dispatch 2024-04-02T06:56:31.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:30 smithi037 bash[18626]: audit 2024-04-02T06:56:30.475591+0000 mon.smithi037 (mon.0) 871 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:56:31.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:30 smithi052 bash[25156]: cluster 2024-04-02T06:56:29.431976+0000 mgr.smithi037.yymbdj (mgr.14215) 261 : cluster 0 pgmap v214: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 767 B/s wr, 2 op/s 2024-04-02T06:56:31.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:30 smithi052 bash[25156]: audit 2024-04-02T06:56:30.444944+0000 mon.smithi037 (mon.0) 870 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]: dispatch 2024-04-02T06:56:31.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:30 smithi052 bash[25156]: audit 2024-04-02T06:56:30.475591+0000 mon.smithi037 (mon.0) 871 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:56:32.116 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:56:32.238 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:31 smithi037 bash[18626]: audit 2024-04-02T06:56:30.906308+0000 mon.smithi037 (mon.0) 872 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]': finished 2024-04-02T06:56:32.239 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:31 smithi037 bash[18626]: cluster 2024-04-02T06:56:30.912711+0000 mon.smithi037 (mon.0) 873 : cluster 0 osdmap e48: 8 total, 8 up, 8 in 2024-04-02T06:56:32.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:31 smithi052 bash[25156]: audit 2024-04-02T06:56:30.906308+0000 mon.smithi037 (mon.0) 872 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]': finished 2024-04-02T06:56:32.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:31 smithi052 bash[25156]: cluster 2024-04-02T06:56:30.912711+0000 mon.smithi037 (mon.0) 873 : cluster 0 osdmap e48: 8 total, 8 up, 8 in 2024-04-02T06:56:33.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:32 smithi052 bash[25156]: cluster 2024-04-02T06:56:31.433089+0000 mgr.smithi037.yymbdj (mgr.14215) 262 : cluster 0 pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 614 B/s wr, 1 op/s 2024-04-02T06:56:33.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:32 smithi052 bash[25156]: cluster 2024-04-02T06:56:31.930854+0000 mon.smithi037 (mon.0) 874 : cluster 0 osdmap e49: 8 total, 8 up, 8 in 2024-04-02T06:56:33.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:32 smithi037 bash[18626]: cluster 2024-04-02T06:56:31.433089+0000 mgr.smithi037.yymbdj (mgr.14215) 262 : cluster 0 pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 614 B/s wr, 1 op/s 2024-04-02T06:56:33.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:32 smithi037 bash[18626]: cluster 2024-04-02T06:56:31.930854+0000 mon.smithi037 (mon.0) 874 : cluster 0 osdmap e49: 8 total, 8 up, 8 in 2024-04-02T06:56:34.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:34 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:34.868 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:34 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:35.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:34 smithi052 bash[25156]: cluster 2024-04-02T06:56:33.434133+0000 mgr.smithi037.yymbdj (mgr.14215) 263 : cluster 0 pgmap v218: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-04-02T06:56:35.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:34 smithi052 bash[25156]: audit 2024-04-02T06:56:34.925656+0000 mon.smithi037 (mon.0) 875 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:35.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:34 smithi037 bash[18626]: cluster 2024-04-02T06:56:33.434133+0000 mgr.smithi037.yymbdj (mgr.14215) 263 : cluster 0 pgmap v218: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-04-02T06:56:35.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:34 smithi037 bash[18626]: audit 2024-04-02T06:56:34.925656+0000 mon.smithi037 (mon.0) 875 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:36.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:35 smithi052 bash[25156]: audit 2024-04-02T06:56:34.943161+0000 mon.smithi037 (mon.0) 876 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:36.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:35 smithi052 bash[25156]: audit 2024-04-02T06:56:34.996889+0000 mon.smithi037 (mon.0) 877 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:36.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:35 smithi052 bash[25156]: audit 2024-04-02T06:56:35.007833+0000 mon.smithi037 (mon.0) 878 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:36.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:35 smithi052 bash[25156]: cephadm 2024-04-02T06:56:35.009061+0000 mgr.smithi037.yymbdj (mgr.14215) 264 : cephadm 1 10.0.31.37 is in 10.0.0.0/16 on smithi052 interface ens1f0 2024-04-02T06:56:36.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:35 smithi052 bash[25156]: cephadm 2024-04-02T06:56:35.009419+0000 mgr.smithi037.yymbdj (mgr.14215) 265 : cephadm 1 10.0.31.37 is in 10.0.0.0/16 on smithi037 interface ens1f0 2024-04-02T06:56:36.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:35 smithi052 bash[25156]: cephadm 2024-04-02T06:56:35.027042+0000 mgr.smithi037.yymbdj (mgr.14215) 266 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi052.tgbase on smithi052 2024-04-02T06:56:36.269 INFO:teuthology.orchestra.run.smithi037.stderr:Using ceph image with id '78f830190839' and tag '6cec793d9073f0594e2364b9b687ecaf22424cca' created on 2024-04-01 16:47:42 +0000 UTC 2024-04-02T06:56:36.269 INFO:teuthology.orchestra.run.smithi037.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7bd5b84926d4a0d6c51e5562e965bff211cec2740c9f4dec9b5e00a2bbb75eae 2024-04-02T06:56:36.287 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:35 smithi037 bash[18626]: audit 2024-04-02T06:56:34.943161+0000 mon.smithi037 (mon.0) 876 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:36.287 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:35 smithi037 bash[18626]: audit 2024-04-02T06:56:34.996889+0000 mon.smithi037 (mon.0) 877 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:36.287 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:35 smithi037 bash[18626]: audit 2024-04-02T06:56:35.007833+0000 mon.smithi037 (mon.0) 878 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:36.287 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:35 smithi037 bash[18626]: cephadm 2024-04-02T06:56:35.009061+0000 mgr.smithi037.yymbdj (mgr.14215) 264 : cephadm 1 10.0.31.37 is in 10.0.0.0/16 on smithi052 interface ens1f0 2024-04-02T06:56:36.287 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:35 smithi037 bash[18626]: cephadm 2024-04-02T06:56:35.009419+0000 mgr.smithi037.yymbdj (mgr.14215) 265 : cephadm 1 10.0.31.37 is in 10.0.0.0/16 on smithi037 interface ens1f0 2024-04-02T06:56:36.287 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:35 smithi037 bash[18626]: cephadm 2024-04-02T06:56:35.027042+0000 mgr.smithi037.yymbdj (mgr.14215) 266 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi052.tgbase on smithi052 2024-04-02T06:56:37.292 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:37 smithi037 bash[18626]: cluster 2024-04-02T06:56:35.435412+0000 mgr.smithi037.yymbdj (mgr.14215) 267 : cluster 0 pgmap v219: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-04-02T06:56:37.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:37 smithi052 bash[25156]: cluster 2024-04-02T06:56:35.435412+0000 mgr.smithi037.yymbdj (mgr.14215) 267 : cluster 0 pgmap v219: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-04-02T06:56:39.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:39 smithi037 bash[18626]: cluster 2024-04-02T06:56:37.436288+0000 mgr.smithi037.yymbdj (mgr.14215) 268 : cluster 0 pgmap v220: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-04-02T06:56:39.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:39 smithi052 bash[25156]: cluster 2024-04-02T06:56:37.436288+0000 mgr.smithi037.yymbdj (mgr.14215) 268 : cluster 0 pgmap v220: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-04-02T06:56:39.611 INFO:teuthology.run_tasks:Running task python... 2024-04-02T06:56:39.623 INFO:tasks.python:Running python on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:56:39.623 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-04-02T06:56:39.623 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-04-02T06:56:41.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:41 smithi037 bash[18626]: cluster 2024-04-02T06:56:39.437637+0000 mgr.smithi037.yymbdj (mgr.14215) 269 : cluster 0 pgmap v221: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 120 B/s rd, 120 B/s wr, 0 op/s 2024-04-02T06:56:41.380 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:41 smithi052 bash[25156]: cluster 2024-04-02T06:56:39.437637+0000 mgr.smithi037.yymbdj (mgr.14215) 269 : cluster 0 pgmap v221: 161 pgs: 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 120 B/s rd, 120 B/s wr, 0 op/s 2024-04-02T06:56:42.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:42 smithi037 bash[18626]: cluster 2024-04-02T06:56:41.030910+0000 mon.smithi037 (mon.0) 879 : cluster 0 osdmap e50: 8 total, 8 up, 8 in 2024-04-02T06:56:42.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:42 smithi037 bash[18626]: audit 2024-04-02T06:56:41.034129+0000 mon.smithi037 (mon.0) 880 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-04-02T06:56:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:42 smithi052 bash[25156]: cluster 2024-04-02T06:56:41.030910+0000 mon.smithi037 (mon.0) 879 : cluster 0 osdmap e50: 8 total, 8 up, 8 in 2024-04-02T06:56:42.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:42 smithi052 bash[25156]: audit 2024-04-02T06:56:41.034129+0000 mon.smithi037 (mon.0) 880 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-04-02T06:56:43.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:43 smithi037 bash[18626]: cluster 2024-04-02T06:56:41.438969+0000 mgr.smithi037.yymbdj (mgr.14215) 270 : cluster 0 pgmap v223: 193 pgs: 11 creating+peering, 21 unknown, 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 107 B/s wr, 1 op/s 2024-04-02T06:56:43.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:43 smithi037 bash[18626]: cluster 2024-04-02T06:56:42.024873+0000 mon.smithi037 (mon.0) 881 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-02T06:56:43.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:43 smithi037 bash[18626]: audit 2024-04-02T06:56:42.034021+0000 mon.smithi037 (mon.0) 882 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-04-02T06:56:43.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:43 smithi037 bash[18626]: cluster 2024-04-02T06:56:42.042657+0000 mon.smithi037 (mon.0) 883 : cluster 0 osdmap e51: 8 total, 8 up, 8 in 2024-04-02T06:56:43.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:43 smithi037 bash[18626]: audit 2024-04-02T06:56:42.046247+0000 mon.smithi037 (mon.0) 884 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-02T06:56:43.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:43 smithi052 bash[25156]: cluster 2024-04-02T06:56:41.438969+0000 mgr.smithi037.yymbdj (mgr.14215) 270 : cluster 0 pgmap v223: 193 pgs: 11 creating+peering, 21 unknown, 161 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 107 B/s wr, 1 op/s 2024-04-02T06:56:43.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:43 smithi052 bash[25156]: cluster 2024-04-02T06:56:42.024873+0000 mon.smithi037 (mon.0) 881 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-02T06:56:43.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:43 smithi052 bash[25156]: audit 2024-04-02T06:56:42.034021+0000 mon.smithi037 (mon.0) 882 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-04-02T06:56:43.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:43 smithi052 bash[25156]: cluster 2024-04-02T06:56:42.042657+0000 mon.smithi037 (mon.0) 883 : cluster 0 osdmap e51: 8 total, 8 up, 8 in 2024-04-02T06:56:43.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:43 smithi052 bash[25156]: audit 2024-04-02T06:56:42.046247+0000 mon.smithi037 (mon.0) 884 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-02T06:56:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:44 smithi052 bash[25156]: audit 2024-04-02T06:56:43.044076+0000 mon.smithi037 (mon.0) 885 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-04-02T06:56:44.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:44 smithi052 bash[25156]: cluster 2024-04-02T06:56:43.050041+0000 mon.smithi037 (mon.0) 886 : cluster 0 osdmap e52: 8 total, 8 up, 8 in 2024-04-02T06:56:44.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:44 smithi037 bash[18626]: audit 2024-04-02T06:56:43.044076+0000 mon.smithi037 (mon.0) 885 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-04-02T06:56:44.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:44 smithi037 bash[18626]: cluster 2024-04-02T06:56:43.050041+0000 mon.smithi037 (mon.0) 886 : cluster 0 osdmap e52: 8 total, 8 up, 8 in 2024-04-02T06:56:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:45 smithi052 bash[25156]: cluster 2024-04-02T06:56:43.439979+0000 mgr.smithi037.yymbdj (mgr.14215) 271 : cluster 0 pgmap v226: 193 pgs: 11 creating+peering, 12 unknown, 170 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 3 op/s 2024-04-02T06:56:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:45 smithi052 bash[25156]: cluster 2024-04-02T06:56:44.044222+0000 mon.smithi037 (mon.0) 887 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-02T06:56:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:45 smithi052 bash[25156]: cluster 2024-04-02T06:56:44.044297+0000 mon.smithi037 (mon.0) 888 : cluster 1 Cluster is now healthy 2024-04-02T06:56:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:45 smithi052 bash[25156]: cluster 2024-04-02T06:56:44.062994+0000 mon.smithi037 (mon.0) 889 : cluster 0 osdmap e53: 8 total, 8 up, 8 in 2024-04-02T06:56:45.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:45 smithi052 bash[25156]: audit 2024-04-02T06:56:44.083924+0000 mon.smithi037 (mon.0) 890 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-04-02T06:56:45.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:45 smithi037 bash[18626]: cluster 2024-04-02T06:56:43.439979+0000 mgr.smithi037.yymbdj (mgr.14215) 271 : cluster 0 pgmap v226: 193 pgs: 11 creating+peering, 12 unknown, 170 active+clean; 582 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 3 op/s 2024-04-02T06:56:45.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:45 smithi037 bash[18626]: cluster 2024-04-02T06:56:44.044222+0000 mon.smithi037 (mon.0) 887 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-02T06:56:45.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:45 smithi037 bash[18626]: cluster 2024-04-02T06:56:44.044297+0000 mon.smithi037 (mon.0) 888 : cluster 1 Cluster is now healthy 2024-04-02T06:56:45.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:45 smithi037 bash[18626]: cluster 2024-04-02T06:56:44.062994+0000 mon.smithi037 (mon.0) 889 : cluster 0 osdmap e53: 8 total, 8 up, 8 in 2024-04-02T06:56:45.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:45 smithi037 bash[18626]: audit 2024-04-02T06:56:44.083924+0000 mon.smithi037 (mon.0) 890 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-04-02T06:56:45.725 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:45 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:46.003 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:45 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:46.177 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-02T06:56:46.186 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:56:46.186 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2024-04-02T06:56:46.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:46 smithi052 bash[25156]: audit 2024-04-02T06:56:45.065693+0000 mon.smithi037 (mon.0) 891 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-04-02T06:56:46.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:46 smithi052 bash[25156]: cluster 2024-04-02T06:56:45.072656+0000 mon.smithi037 (mon.0) 892 : cluster 0 osdmap e54: 8 total, 8 up, 8 in 2024-04-02T06:56:46.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:46 smithi052 bash[25156]: audit 2024-04-02T06:56:45.086264+0000 mon.smithi037 (mon.0) 893 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-04-02T06:56:46.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:46 smithi052 bash[25156]: cluster 2024-04-02T06:56:45.440749+0000 mgr.smithi037.yymbdj (mgr.14215) 272 : cluster 0 pgmap v229: 225 pgs: 18 creating+peering, 25 unknown, 182 active+clean; 582 KiB data, 230 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 511 B/s wr, 3 op/s 2024-04-02T06:56:46.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:46 smithi052 bash[25156]: audit 2024-04-02T06:56:45.476230+0000 mon.smithi037 (mon.0) 894 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:56:46.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:46 smithi052 bash[25156]: audit 2024-04-02T06:56:46.061010+0000 mon.smithi037 (mon.0) 895 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:46.535 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:46 smithi037 bash[18626]: audit 2024-04-02T06:56:45.065693+0000 mon.smithi037 (mon.0) 891 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-04-02T06:56:46.535 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:46 smithi037 bash[18626]: cluster 2024-04-02T06:56:45.072656+0000 mon.smithi037 (mon.0) 892 : cluster 0 osdmap e54: 8 total, 8 up, 8 in 2024-04-02T06:56:46.535 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:46 smithi037 bash[18626]: audit 2024-04-02T06:56:45.086264+0000 mon.smithi037 (mon.0) 893 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-04-02T06:56:46.535 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:46 smithi037 bash[18626]: cluster 2024-04-02T06:56:45.440749+0000 mgr.smithi037.yymbdj (mgr.14215) 272 : cluster 0 pgmap v229: 225 pgs: 18 creating+peering, 25 unknown, 182 active+clean; 582 KiB data, 230 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 511 B/s wr, 3 op/s 2024-04-02T06:56:46.536 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:46 smithi037 bash[18626]: audit 2024-04-02T06:56:45.476230+0000 mon.smithi037 (mon.0) 894 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:56:46.536 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:46 smithi037 bash[18626]: audit 2024-04-02T06:56:46.061010+0000 mon.smithi037 (mon.0) 895 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:47.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:47 smithi052 bash[25156]: audit 2024-04-02T06:56:46.074818+0000 mon.smithi037 (mon.0) 896 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:47.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:47 smithi052 bash[25156]: audit 2024-04-02T06:56:46.079206+0000 mon.smithi037 (mon.0) 897 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-04-02T06:56:47.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:47 smithi052 bash[25156]: cluster 2024-04-02T06:56:46.089508+0000 mon.smithi037 (mon.0) 898 : cluster 0 osdmap e55: 8 total, 8 up, 8 in 2024-04-02T06:56:47.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:47 smithi052 bash[25156]: audit 2024-04-02T06:56:46.103165+0000 mon.smithi037 (mon.0) 899 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:47.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:47 smithi052 bash[25156]: cephadm 2024-04-02T06:56:46.107203+0000 mgr.smithi037.yymbdj (mgr.14215) 273 : cephadm 1 10.0.31.37 is in 10.0.0.0/16 on smithi037 interface ens1f0 2024-04-02T06:56:47.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:47 smithi052 bash[25156]: cephadm 2024-04-02T06:56:46.107468+0000 mgr.smithi037.yymbdj (mgr.14215) 274 : cephadm 1 10.0.31.37 is in 10.0.0.0/16 on smithi052 interface ens1f0 2024-04-02T06:56:47.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:47 smithi052 bash[25156]: cephadm 2024-04-02T06:56:46.108716+0000 mgr.smithi037.yymbdj (mgr.14215) 275 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi037.uohxbt on smithi037 2024-04-02T06:56:47.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:47 smithi037 bash[18626]: audit 2024-04-02T06:56:46.074818+0000 mon.smithi037 (mon.0) 896 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:47.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:47 smithi037 bash[18626]: audit 2024-04-02T06:56:46.079206+0000 mon.smithi037 (mon.0) 897 : audit 1 from='client.? 172.21.15.37:0/2251845589' entity='client.rgw.foorgw.smithi037.tbjgok' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-04-02T06:56:47.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:47 smithi037 bash[18626]: cluster 2024-04-02T06:56:46.089508+0000 mon.smithi037 (mon.0) 898 : cluster 0 osdmap e55: 8 total, 8 up, 8 in 2024-04-02T06:56:47.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:47 smithi037 bash[18626]: audit 2024-04-02T06:56:46.103165+0000 mon.smithi037 (mon.0) 899 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:47.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:47 smithi037 bash[18626]: cephadm 2024-04-02T06:56:46.107203+0000 mgr.smithi037.yymbdj (mgr.14215) 273 : cephadm 1 10.0.31.37 is in 10.0.0.0/16 on smithi037 interface ens1f0 2024-04-02T06:56:47.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:47 smithi037 bash[18626]: cephadm 2024-04-02T06:56:46.107468+0000 mgr.smithi037.yymbdj (mgr.14215) 274 : cephadm 1 10.0.31.37 is in 10.0.0.0/16 on smithi052 interface ens1f0 2024-04-02T06:56:47.554 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:47 smithi037 bash[18626]: cephadm 2024-04-02T06:56:46.108716+0000 mgr.smithi037.yymbdj (mgr.14215) 275 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi037.uohxbt on smithi037 2024-04-02T06:56:48.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:48 smithi052 bash[25156]: cluster 2024-04-02T06:56:47.441547+0000 mgr.smithi037.yymbdj (mgr.14215) 276 : cluster 0 pgmap v231: 225 pgs: 7 creating+peering, 14 unknown, 204 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 1.4 KiB/s wr, 7 op/s 2024-04-02T06:56:48.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:48 smithi037 bash[18626]: cluster 2024-04-02T06:56:47.441547+0000 mgr.smithi037.yymbdj (mgr.14215) 276 : cluster 0 pgmap v231: 225 pgs: 7 creating+peering, 14 unknown, 204 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 1.4 KiB/s wr, 7 op/s 2024-04-02T06:56:50.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:50 smithi037 bash[18626]: cluster 2024-04-02T06:56:49.442405+0000 mgr.smithi037.yymbdj (mgr.14215) 277 : cluster 0 pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1023 B/s wr, 6 op/s 2024-04-02T06:56:50.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:50 smithi052 bash[25156]: cluster 2024-04-02T06:56:49.442405+0000 mgr.smithi037.yymbdj (mgr.14215) 277 : cluster 0 pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1023 B/s wr, 6 op/s 2024-04-02T06:56:50.987 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:56:52.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:52 smithi037 bash[18626]: cluster 2024-04-02T06:56:51.443658+0000 mgr.smithi037.yymbdj (mgr.14215) 278 : cluster 0 pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 831 B/s rd, 831 B/s wr, 4 op/s 2024-04-02T06:56:52.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:52 smithi052 bash[25156]: cluster 2024-04-02T06:56:51.443658+0000 mgr.smithi037.yymbdj (mgr.14215) 278 : cluster 0 pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 831 B/s rd, 831 B/s wr, 4 op/s 2024-04-02T06:56:54.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:54 smithi037 bash[18626]: cluster 2024-04-02T06:56:53.445030+0000 mgr.smithi037.yymbdj (mgr.14215) 279 : cluster 0 pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 855 B/s rd, 611 B/s wr, 3 op/s 2024-04-02T06:56:54.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:54 smithi052 bash[25156]: cluster 2024-04-02T06:56:53.445030+0000 mgr.smithi037.yymbdj (mgr.14215) 279 : cluster 0 pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 855 B/s rd, 611 B/s wr, 3 op/s 2024-04-02T06:56:57.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:56 smithi052 bash[25156]: cluster 2024-04-02T06:56:55.446452+0000 mgr.smithi037.yymbdj (mgr.14215) 280 : cluster 0 pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 716 B/s rd, 511 B/s wr, 3 op/s 2024-04-02T06:56:57.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:56 smithi052 bash[25156]: audit 2024-04-02T06:56:55.878931+0000 mon.smithi037 (mon.0) 900 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:57.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:56 smithi037 bash[18626]: cluster 2024-04-02T06:56:55.446452+0000 mgr.smithi037.yymbdj (mgr.14215) 280 : cluster 0 pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 716 B/s rd, 511 B/s wr, 3 op/s 2024-04-02T06:56:57.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:56 smithi037 bash[18626]: audit 2024-04-02T06:56:55.878931+0000 mon.smithi037 (mon.0) 900 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:58.146 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:58 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:58.425 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:58 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:56:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:58 smithi052 bash[25156]: cluster 2024-04-02T06:56:57.447796+0000 mgr.smithi037.yymbdj (mgr.14215) 281 : cluster 0 pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 630 B/s rd, 450 B/s wr, 2 op/s 2024-04-02T06:56:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:58 smithi052 bash[25156]: audit 2024-04-02T06:56:58.468708+0000 mon.smithi037 (mon.0) 901 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:58 smithi052 bash[25156]: audit 2024-04-02T06:56:58.476436+0000 mon.smithi037 (mon.0) 902 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:58 smithi052 bash[25156]: audit 2024-04-02T06:56:58.505055+0000 mon.smithi037 (mon.0) 903 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:58 smithi052 bash[25156]: audit 2024-04-02T06:56:58.509726+0000 mon.smithi037 (mon.0) 904 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:58 smithi052 bash[25156]: audit 2024-04-02T06:56:58.557882+0000 mon.smithi037 (mon.0) 905 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:56:58.942 INFO:teuthology.orchestra.run.smithi037.stdout:{ 2024-04-02T06:56:58.942 INFO:teuthology.orchestra.run.smithi037.stdout: "bind": "/foobucket", 2024-04-02T06:56:58.942 INFO:teuthology.orchestra.run.smithi037.stdout: "cluster": "foo", 2024-04-02T06:56:58.942 INFO:teuthology.orchestra.run.smithi037.stdout: "mode": "RW", 2024-04-02T06:56:58.943 INFO:teuthology.orchestra.run.smithi037.stdout: "path": "foobucket", 2024-04-02T06:56:58.943 INFO:teuthology.orchestra.run.smithi037.stdout: "squash": "none" 2024-04-02T06:56:58.943 INFO:teuthology.orchestra.run.smithi037.stdout:} 2024-04-02T06:56:59.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:58 smithi037 bash[18626]: cluster 2024-04-02T06:56:57.447796+0000 mgr.smithi037.yymbdj (mgr.14215) 281 : cluster 0 pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 630 B/s rd, 450 B/s wr, 2 op/s 2024-04-02T06:56:59.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:58 smithi037 bash[18626]: audit 2024-04-02T06:56:58.468708+0000 mon.smithi037 (mon.0) 901 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:59.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:58 smithi037 bash[18626]: audit 2024-04-02T06:56:58.476436+0000 mon.smithi037 (mon.0) 902 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:59.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:58 smithi037 bash[18626]: audit 2024-04-02T06:56:58.505055+0000 mon.smithi037 (mon.0) 903 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:59.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:58 smithi037 bash[18626]: audit 2024-04-02T06:56:58.509726+0000 mon.smithi037 (mon.0) 904 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:56:59.302 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:58 smithi037 bash[18626]: audit 2024-04-02T06:56:58.557882+0000 mon.smithi037 (mon.0) 905 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:56:59.972 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-04-02T06:56:59.983 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-04-02T06:56:59.983 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph orch ls -f json 2024-04-02T06:57:00.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:56:59 smithi052 bash[25156]: audit 2024-04-02T06:56:58.578231+0000 mgr.smithi037.yymbdj (mgr.14215) 282 : audit 0 from='client.14610 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:57:00.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:56:59 smithi037 bash[18626]: audit 2024-04-02T06:56:58.578231+0000 mgr.smithi037.yymbdj (mgr.14215) 282 : audit 0 from='client.14610 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:57:01.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:00 smithi037 bash[18626]: cluster 2024-04-02T06:56:59.450031+0000 mgr.smithi037.yymbdj (mgr.14215) 283 : cluster 0 pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 1.6 KiB/s rd, 170 B/s wr, 3 op/s 2024-04-02T06:57:01.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:00 smithi037 bash[18626]: audit 2024-04-02T06:57:00.477739+0000 mon.smithi037 (mon.0) 906 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:57:01.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:00 smithi037 bash[18626]: audit 2024-04-02T06:57:00.890683+0000 mon.smithi037 (mon.0) 907 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:01.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:00 smithi052 bash[25156]: cluster 2024-04-02T06:56:59.450031+0000 mgr.smithi037.yymbdj (mgr.14215) 283 : cluster 0 pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 1.6 KiB/s rd, 170 B/s wr, 3 op/s 2024-04-02T06:57:01.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:00 smithi052 bash[25156]: audit 2024-04-02T06:57:00.477739+0000 mon.smithi037 (mon.0) 906 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:57:01.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:00 smithi052 bash[25156]: audit 2024-04-02T06:57:00.890683+0000 mon.smithi037 (mon.0) 907 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:03.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:02 smithi037 bash[18626]: cluster 2024-04-02T06:57:01.451423+0000 mgr.smithi037.yymbdj (mgr.14215) 284 : cluster 0 pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 6.9 KiB/s rd, 170 B/s wr, 9 op/s 2024-04-02T06:57:03.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:02 smithi052 bash[25156]: cluster 2024-04-02T06:57:01.451423+0000 mgr.smithi037.yymbdj (mgr.14215) 284 : cluster 0 pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 6.9 KiB/s rd, 170 B/s wr, 9 op/s 2024-04-02T06:57:04.684 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:57:05.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:04 smithi037 bash[18626]: cluster 2024-04-02T06:57:03.452673+0000 mgr.smithi037.yymbdj (mgr.14215) 285 : cluster 0 pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 9.7 KiB/s rd, 170 B/s wr, 12 op/s 2024-04-02T06:57:05.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:04 smithi037 bash[18626]: audit 2024-04-02T06:57:04.427096+0000 mon.smithi037 (mon.0) 908 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:05.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:04 smithi037 bash[18626]: audit 2024-04-02T06:57:04.441140+0000 mon.smithi037 (mon.0) 909 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:04 smithi052 bash[25156]: cluster 2024-04-02T06:57:03.452673+0000 mgr.smithi037.yymbdj (mgr.14215) 285 : cluster 0 pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 9.7 KiB/s rd, 170 B/s wr, 12 op/s 2024-04-02T06:57:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:04 smithi052 bash[25156]: audit 2024-04-02T06:57:04.427096+0000 mon.smithi037 (mon.0) 908 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:05.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:04 smithi052 bash[25156]: audit 2024-04-02T06:57:04.441140+0000 mon.smithi037 (mon.0) 909 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:07.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:06 smithi052 bash[25156]: cluster 2024-04-02T06:57:05.453410+0000 mgr.smithi037.yymbdj (mgr.14215) 286 : cluster 0 pgmap v240: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 170 B/s wr, 13 op/s 2024-04-02T06:57:07.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:06 smithi052 bash[25156]: audit 2024-04-02T06:57:05.881666+0000 mon.smithi037 (mon.0) 910 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:07.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:06 smithi052 bash[25156]: audit 2024-04-02T06:57:05.888055+0000 mon.smithi037 (mon.0) 911 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:07.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:06 smithi052 bash[25156]: audit 2024-04-02T06:57:06.460587+0000 mon.smithi037 (mon.0) 912 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:57:07.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:06 smithi052 bash[25156]: audit 2024-04-02T06:57:06.461443+0000 mon.smithi037 (mon.0) 913 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:57:07.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:06 smithi052 bash[25156]: audit 2024-04-02T06:57:06.466762+0000 mon.smithi037 (mon.0) 914 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:07.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:06 smithi052 bash[25156]: audit 2024-04-02T06:57:06.470525+0000 mon.smithi037 (mon.0) 915 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:57:07.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:06 smithi052 bash[25156]: audit 2024-04-02T06:57:06.482012+0000 mon.smithi037 (mon.0) 916 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:07.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:06 smithi037 bash[18626]: cluster 2024-04-02T06:57:05.453410+0000 mgr.smithi037.yymbdj (mgr.14215) 286 : cluster 0 pgmap v240: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 170 B/s wr, 13 op/s 2024-04-02T06:57:07.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:06 smithi037 bash[18626]: audit 2024-04-02T06:57:05.881666+0000 mon.smithi037 (mon.0) 910 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:07.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:06 smithi037 bash[18626]: audit 2024-04-02T06:57:05.888055+0000 mon.smithi037 (mon.0) 911 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:07.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:06 smithi037 bash[18626]: audit 2024-04-02T06:57:06.460587+0000 mon.smithi037 (mon.0) 912 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:57:07.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:06 smithi037 bash[18626]: audit 2024-04-02T06:57:06.461443+0000 mon.smithi037 (mon.0) 913 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:57:07.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:06 smithi037 bash[18626]: audit 2024-04-02T06:57:06.466762+0000 mon.smithi037 (mon.0) 914 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:07.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:06 smithi037 bash[18626]: audit 2024-04-02T06:57:06.470525+0000 mon.smithi037 (mon.0) 915 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:57:07.305 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:06 smithi037 bash[18626]: audit 2024-04-02T06:57:06.482012+0000 mon.smithi037 (mon.0) 916 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:07.446 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:57:07.447 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-02T06:48:13.090690Z", "last_refresh": "2024-04-02T06:57:05.874857Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-02T06:50:41.687229Z service:ceph-exporter [ERROR] \"Failed while placing ceph-exporter.smithi052 on smithi052: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052\nDeploy daemon ceph-exporter.smithi052 ...\nERROR: Desired sock dir for ceph-exporter is not directory: /var/run/ceph/\"", "2024-04-02T06:51:04.116714Z 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-04-02T06:48:06.017305Z", "last_refresh": "2024-04-02T06:57:04.412767Z", "running": 2, "size": 2}}, {"events": ["2024-04-02T06:50:44.994194Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-02T06:48:04.247589Z", "last_refresh": "2024-04-02T06:57:04.411457Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-02T06:48:09.591504Z", "last_refresh": "2024-04-02T06:57:05.874967Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-02T06:56:58.509938Z 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.37/16"}, "status": {"created": "2024-04-02T06:56:08.853814Z", "last_refresh": "2024-04-02T06:57:04.414692Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-02T06:50:49.626840Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-02T06:48:02.446526Z", "last_refresh": "2024-04-02T06:57:04.412141Z", "running": 2, "size": 2}}, {"events": ["2024-04-02T06:50:54.877012Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi052:172.21.15.52=smithi052"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-02T06:49:32.528771Z", "last_refresh": "2024-04-02T06:57:04.412456Z", "running": 2, "size": 2}}, {"events": ["2024-04-02T06:57:06.482205Z 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-04-02T06:56:08.846688Z", "last_refresh": "2024-04-02T06:57:05.875740Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-04-02T06:50:46.426666Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-02T06:48:11.360680Z", "last_refresh": "2024-04-02T06:57:04.411818Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-02T06:51:20.602802Z 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-04-02T06:51:20.594993Z", "last_refresh": "2024-04-02T06:57:04.413078Z", "running": 8, "size": 8}}, {"events": ["2024-04-02T06:50:54.888541Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-02T06:48:07.749387Z", "last_refresh": "2024-04-02T06:57:05.875077Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-02T06:56:06.805616Z 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-04-02T06:56:06.795190Z", "last_refresh": "2024-04-02T06:57:04.414343Z", "ports": [8800], "running": 2, "size": 2}}] 2024-04-02T06:57:08.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:07 smithi052 bash[25156]: cephadm 2024-04-02T06:57:06.548225+0000 mgr.smithi037.yymbdj (mgr.14215) 287 : cephadm 1 Reconfiguring prometheus.smithi037 (dependencies changed)... 2024-04-02T06:57:08.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:07 smithi052 bash[25156]: cephadm 2024-04-02T06:57:06.791398+0000 mgr.smithi037.yymbdj (mgr.14215) 288 : cephadm 1 Reconfiguring daemon prometheus.smithi037 on smithi037 2024-04-02T06:57:08.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:07 smithi037 bash[18626]: cephadm 2024-04-02T06:57:06.548225+0000 mgr.smithi037.yymbdj (mgr.14215) 287 : cephadm 1 Reconfiguring prometheus.smithi037 (dependencies changed)... 2024-04-02T06:57:08.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:07 smithi037 bash[18626]: cephadm 2024-04-02T06:57:06.791398+0000 mgr.smithi037.yymbdj (mgr.14215) 288 : cephadm 1 Reconfiguring daemon prometheus.smithi037 on smithi037 2024-04-02T06:57:08.554 INFO:tasks.cephadm:nfs.foo has 1/1 2024-04-02T06:57:08.554 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-04-02T06:57:08.564 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-04-02T06:57:08.565 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- ceph orch ls -f json 2024-04-02T06:57:09.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:08 smithi037 bash[18626]: audit 2024-04-02T06:57:07.438758+0000 mgr.smithi037.yymbdj (mgr.14215) 289 : audit 0 from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-02T06:57:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:08 smithi037 bash[18626]: cluster 2024-04-02T06:57:07.454212+0000 mgr.smithi037.yymbdj (mgr.14215) 290 : cluster 0 pgmap v241: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 170 B/s wr, 13 op/s 2024-04-02T06:57:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:08 smithi052 bash[25156]: audit 2024-04-02T06:57:07.438758+0000 mgr.smithi037.yymbdj (mgr.14215) 289 : audit 0 from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-02T06:57:09.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:08 smithi052 bash[25156]: cluster 2024-04-02T06:57:07.454212+0000 mgr.smithi037.yymbdj (mgr.14215) 290 : cluster 0 pgmap v241: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 170 B/s wr, 13 op/s 2024-04-02T06:57:11.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:10 smithi052 bash[25156]: cluster 2024-04-02T06:57:09.455974+0000 mgr.smithi037.yymbdj (mgr.14215) 291 : cluster 0 pgmap v242: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 170 B/s wr, 13 op/s 2024-04-02T06:57:11.165 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:10 smithi037 bash[18626]: cluster 2024-04-02T06:57:09.455974+0000 mgr.smithi037.yymbdj (mgr.14215) 291 : cluster 0 pgmap v242: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 170 B/s wr, 13 op/s 2024-04-02T06:57:13.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:12 smithi037 bash[18626]: cluster 2024-04-02T06:57:11.456746+0000 mgr.smithi037.yymbdj (mgr.14215) 292 : cluster 0 pgmap v243: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 8.6 KiB/s rd, 85 B/s wr, 11 op/s 2024-04-02T06:57:13.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:12 smithi037 bash[18626]: audit 2024-04-02T06:57:11.825842+0000 mon.smithi037 (mon.0) 917 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:13.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:12 smithi037 bash[18626]: audit 2024-04-02T06:57:11.832134+0000 mon.smithi037 (mon.0) 918 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:13.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:12 smithi037 bash[18626]: audit 2024-04-02T06:57:11.874043+0000 mon.smithi037 (mon.0) 919 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:57:13.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:12 smithi037 bash[18626]: audit 2024-04-02T06:57:11.874565+0000 mgr.smithi037.yymbdj (mgr.14215) 293 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:57:13.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:12 smithi037 bash[18626]: audit 2024-04-02T06:57:11.883424+0000 mon.smithi037 (mon.0) 920 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:57:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:12 smithi052 bash[25156]: cluster 2024-04-02T06:57:11.456746+0000 mgr.smithi037.yymbdj (mgr.14215) 292 : cluster 0 pgmap v243: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 8.6 KiB/s rd, 85 B/s wr, 11 op/s 2024-04-02T06:57:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:12 smithi052 bash[25156]: audit 2024-04-02T06:57:11.825842+0000 mon.smithi037 (mon.0) 917 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:12 smithi052 bash[25156]: audit 2024-04-02T06:57:11.832134+0000 mon.smithi037 (mon.0) 918 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:12 smithi052 bash[25156]: audit 2024-04-02T06:57:11.874043+0000 mon.smithi037 (mon.0) 919 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:57:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:12 smithi052 bash[25156]: audit 2024-04-02T06:57:11.874565+0000 mgr.smithi037.yymbdj (mgr.14215) 293 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:57:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:12 smithi052 bash[25156]: audit 2024-04-02T06:57:11.883424+0000 mon.smithi037 (mon.0) 920 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:57:14.439 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:57:15.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:14 smithi052 bash[25156]: cluster 2024-04-02T06:57:13.457884+0000 mgr.smithi037.yymbdj (mgr.14215) 294 : cluster 0 pgmap v244: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 3.3 KiB/s rd, 0 B/s wr, 4 op/s 2024-04-02T06:57:15.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:14 smithi037 bash[18626]: cluster 2024-04-02T06:57:13.457884+0000 mgr.smithi037.yymbdj (mgr.14215) 294 : cluster 0 pgmap v244: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 3.3 KiB/s rd, 0 B/s wr, 4 op/s 2024-04-02T06:57:16.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:15 smithi052 bash[25156]: audit 2024-04-02T06:57:15.476526+0000 mon.smithi037 (mon.0) 921 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:57:16.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:15 smithi037 bash[18626]: audit 2024-04-02T06:57:15.476526+0000 mon.smithi037 (mon.0) 921 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:57:17.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:16 smithi037 bash[18626]: cluster 2024-04-02T06:57:15.458789+0000 mgr.smithi037.yymbdj (mgr.14215) 295 : cluster 0 pgmap v245: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 170 B/s wr, 1 op/s 2024-04-02T06:57:17.156 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:16 smithi052 bash[25156]: cluster 2024-04-02T06:57:15.458789+0000 mgr.smithi037.yymbdj (mgr.14215) 295 : cluster 0 pgmap v245: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 170 B/s wr, 1 op/s 2024-04-02T06:57:17.218 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-02T06:57:17.218 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-02T06:48:13.090690Z", "last_refresh": "2024-04-02T06:57:05.874857Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-02T06:50:41.687229Z service:ceph-exporter [ERROR] \"Failed while placing ceph-exporter.smithi052 on smithi052: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter-smithi052\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4-ceph-exporter.smithi052\nDeploy daemon ceph-exporter.smithi052 ...\nERROR: Desired sock dir for ceph-exporter is not directory: /var/run/ceph/\"", "2024-04-02T06:51:04.116714Z 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-04-02T06:48:06.017305Z", "last_refresh": "2024-04-02T06:57:04.412767Z", "running": 2, "size": 2}}, {"events": ["2024-04-02T06:50:44.994194Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-02T06:48:04.247589Z", "last_refresh": "2024-04-02T06:57:04.411457Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-02T06:48:09.591504Z", "last_refresh": "2024-04-02T06:57:05.874967Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-02T06:56:58.509938Z 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.37/16"}, "status": {"created": "2024-04-02T06:56:08.853814Z", "last_refresh": "2024-04-02T06:57:04.414692Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-02T06:50:49.626840Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-02T06:48:02.446526Z", "last_refresh": "2024-04-02T06:57:04.412141Z", "running": 2, "size": 2}}, {"events": ["2024-04-02T06:50:54.877012Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi052:172.21.15.52=smithi052"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-02T06:49:32.528771Z", "last_refresh": "2024-04-02T06:57:04.412456Z", "running": 2, "size": 2}}, {"events": ["2024-04-02T06:57:06.482205Z 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-04-02T06:56:08.846688Z", "last_refresh": "2024-04-02T06:57:05.875740Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-04-02T06:50:46.426666Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-02T06:48:11.360680Z", "last_refresh": "2024-04-02T06:57:04.411818Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-02T06:51:20.602802Z 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-04-02T06:51:20.594993Z", "last_refresh": "2024-04-02T06:57:04.413078Z", "running": 8, "size": 8}}, {"events": ["2024-04-02T06:50:54.888541Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-02T06:48:07.749387Z", "ports": [9095], "running": 0, "size": 1}}, {"events": ["2024-04-02T06:56:06.805616Z 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-04-02T06:56:06.795190Z", "last_refresh": "2024-04-02T06:57:04.414343Z", "ports": [8800], "running": 2, "size": 2}}] 2024-04-02T06:57:17.845 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-04-02T06:57:17.845 INFO:teuthology.run_tasks:Running task vip.exec... 2024-04-02T06:57:17.857 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:57:17.857 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-04-02T06:57:17.866 INFO:teuthology.orchestra.run.smithi037.stderr:+ mkdir /mnt/foo 2024-04-02T06:57:17.876 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-04-02T06:57:17.929 INFO:teuthology.orchestra.run.smithi037.stderr:+ sleep 5 2024-04-02T06:57:18.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: audit 2024-04-02T06:57:17.201729+0000 mgr.smithi037.yymbdj (mgr.14215) 296 : audit 0 from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-02T06:57:18.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: cluster 2024-04-02T06:57:17.459483+0000 mgr.smithi037.yymbdj (mgr.14215) 297 : cluster 0 pgmap v246: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:18.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: audit 2024-04-02T06:57:17.627154+0000 mon.smithi037 (mon.0) 922 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:18.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: audit 2024-04-02T06:57:17.632453+0000 mon.smithi037 (mon.0) 923 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:18.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: audit 2024-04-02T06:57:17.729764+0000 mon.smithi037 (mon.0) 924 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:18.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: audit 2024-04-02T06:57:17.741458+0000 mon.smithi037 (mon.0) 925 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:18.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: audit 2024-04-02T06:57:17.744520+0000 mon.smithi037 (mon.0) 926 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:57:18.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: audit 2024-04-02T06:57:17.746173+0000 mon.smithi037 (mon.0) 927 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:57:18.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: cephadm 2024-04-02T06:57:17.756837+0000 mgr.smithi037.yymbdj (mgr.14215) 298 : cephadm 1 Checking dashboard <-> RGW credentials 2024-04-02T06:57:18.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: audit 2024-04-02T06:57:18.046164+0000 mon.smithi037 (mon.0) 928 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:18.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: audit 2024-04-02T06:57:18.050170+0000 mon.smithi037 (mon.0) 929 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:57:18.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:18 smithi052 bash[25156]: audit 2024-04-02T06:57:18.061902+0000 mon.smithi037 (mon.0) 930 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:19.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: audit 2024-04-02T06:57:17.201729+0000 mgr.smithi037.yymbdj (mgr.14215) 296 : audit 0 from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-02T06:57:19.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: cluster 2024-04-02T06:57:17.459483+0000 mgr.smithi037.yymbdj (mgr.14215) 297 : cluster 0 pgmap v246: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:19.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: audit 2024-04-02T06:57:17.627154+0000 mon.smithi037 (mon.0) 922 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:19.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: audit 2024-04-02T06:57:17.632453+0000 mon.smithi037 (mon.0) 923 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:19.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: audit 2024-04-02T06:57:17.729764+0000 mon.smithi037 (mon.0) 924 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:19.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: audit 2024-04-02T06:57:17.741458+0000 mon.smithi037 (mon.0) 925 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:19.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: audit 2024-04-02T06:57:17.744520+0000 mon.smithi037 (mon.0) 926 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:57:19.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: audit 2024-04-02T06:57:17.746173+0000 mon.smithi037 (mon.0) 927 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:57:19.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: cephadm 2024-04-02T06:57:17.756837+0000 mgr.smithi037.yymbdj (mgr.14215) 298 : cephadm 1 Checking dashboard <-> RGW credentials 2024-04-02T06:57:19.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: audit 2024-04-02T06:57:18.046164+0000 mon.smithi037 (mon.0) 928 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:19.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: audit 2024-04-02T06:57:18.050170+0000 mon.smithi037 (mon.0) 929 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:57:19.058 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:18 smithi037 bash[18626]: audit 2024-04-02T06:57:18.061902+0000 mon.smithi037 (mon.0) 930 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:20.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:20 smithi052 bash[25156]: cluster 2024-04-02T06:57:19.461527+0000 mgr.smithi037.yymbdj (mgr.14215) 299 : cluster 0 pgmap v247: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 426 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:21.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:20 smithi037 bash[18626]: cluster 2024-04-02T06:57:19.461527+0000 mgr.smithi037.yymbdj (mgr.14215) 299 : cluster 0 pgmap v247: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 426 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:22.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:22 smithi052 bash[25156]: cluster 2024-04-02T06:57:21.463102+0000 mgr.smithi037.yymbdj (mgr.14215) 300 : cluster 0 pgmap v248: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 170 B/s wr, 1 op/s 2024-04-02T06:57:22.931 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:22 smithi037 bash[18626]: cluster 2024-04-02T06:57:21.463102+0000 mgr.smithi037.yymbdj (mgr.14215) 300 : cluster 0 pgmap v248: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 170 B/s wr, 1 op/s 2024-04-02T06:57:22.932 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.37:/foobucket /mnt/foo' 2024-04-02T06:57:22.990 INFO:teuthology.orchestra.run.smithi037.stderr:+ mount -t nfs 10.0.31.37:/foobucket /mnt/foo 2024-04-02T06:57:23.322 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-04-02T06:57:23.378 INFO:teuthology.orchestra.run.smithi037.stderr:+ find /mnt/foo -ls 2024-04-02T06:57:23.387 INFO:teuthology.orchestra.run.smithi037.stdout:18304478605914051910 0 drwxrwxrwx 1 root root 0 Apr 2 06:56 /mnt/foo 2024-04-02T06:57:23.387 INFO:teuthology.orchestra.run.smithi037.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Apr 2 06:56 /mnt/foo/myobject 2024-04-02T06:57:23.388 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/myobject' 2024-04-02T06:57:23.447 INFO:teuthology.orchestra.run.smithi037.stderr:+ grep thebody /mnt/foo/myobject 2024-04-02T06:57:23.454 INFO:teuthology.orchestra.run.smithi037.stdout:thebody 2024-04-02T06:57:23.455 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/newobject' 2024-04-02T06:57:23.512 INFO:teuthology.orchestra.run.smithi037.stderr:+ echo test 2024-04-02T06:57:23.540 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-04-02T06:57:23.600 INFO:teuthology.orchestra.run.smithi037.stderr:+ sync 2024-04-02T06:57:23.912 INFO:teuthology.run_tasks:Running task python... 2024-04-02T06:57:23.923 INFO:tasks.python:Running python on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:57:23.923 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-04-02T06:57:23.923 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-04-02T06:57:24.280 INFO:teuthology.orchestra.run.smithi037.stdout:b'test\n' 2024-04-02T06:57:24.336 INFO:teuthology.run_tasks:Running task vip.exec... 2024-04-02T06:57:24.346 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:57:24.346 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-04-02T06:57:24.357 INFO:teuthology.orchestra.run.smithi037.stderr:+ umount /mnt/foo 2024-04-02T06:57:24.413 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-02T06:57:24.425 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:57:24.425 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph nfs export rm foo /foobucket' 2024-04-02T06:57:24.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:24 smithi052 bash[25156]: cluster 2024-04-02T06:57:23.464022+0000 mgr.smithi037.yymbdj (mgr.14215) 301 : cluster 0 pgmap v249: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 1.6 KiB/s rd, 170 B/s wr, 1 op/s 2024-04-02T06:57:25.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:24 smithi037 bash[18626]: cluster 2024-04-02T06:57:23.464022+0000 mgr.smithi037.yymbdj (mgr.14215) 301 : cluster 0 pgmap v249: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 1.6 KiB/s rd, 170 B/s wr, 1 op/s 2024-04-02T06:57:26.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:26 smithi052 bash[25156]: cluster 2024-04-02T06:57:25.465425+0000 mgr.smithi037.yymbdj (mgr.14215) 302 : cluster 0 pgmap v250: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 255 B/s wr, 5 op/s 2024-04-02T06:57:27.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:26 smithi037 bash[18626]: cluster 2024-04-02T06:57:25.465425+0000 mgr.smithi037.yymbdj (mgr.14215) 302 : cluster 0 pgmap v250: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 255 B/s wr, 5 op/s 2024-04-02T06:57:28.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:28 smithi052 bash[25156]: cluster 2024-04-02T06:57:27.466880+0000 mgr.smithi037.yymbdj (mgr.14215) 303 : cluster 0 pgmap v251: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 10 op/s 2024-04-02T06:57:29.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:28 smithi037 bash[18626]: cluster 2024-04-02T06:57:27.466880+0000 mgr.smithi037.yymbdj (mgr.14215) 303 : cluster 0 pgmap v251: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 10 op/s 2024-04-02T06:57:29.306 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:57:30.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:30 smithi037 bash[18626]: cluster 2024-04-02T06:57:29.468769+0000 mgr.smithi037.yymbdj (mgr.14215) 304 : cluster 0 pgmap v252: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 9.2 KiB/s rd, 511 B/s wr, 12 op/s 2024-04-02T06:57:30.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:30 smithi037 bash[18626]: audit 2024-04-02T06:57:30.478599+0000 mon.smithi037 (mon.0) 931 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:57:30.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:30 smithi052 bash[25156]: cluster 2024-04-02T06:57:29.468769+0000 mgr.smithi037.yymbdj (mgr.14215) 304 : cluster 0 pgmap v252: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 9.2 KiB/s rd, 511 B/s wr, 12 op/s 2024-04-02T06:57:30.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:30 smithi052 bash[25156]: audit 2024-04-02T06:57:30.478599+0000 mon.smithi037 (mon.0) 931 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:57:31.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:31 smithi052 bash[25156]: audit 2024-04-02T06:57:30.936570+0000 mon.smithi037 (mon.0) 932 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.2", "id": [5, 3]}]: dispatch 2024-04-02T06:57:32.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:31 smithi037 bash[18626]: audit 2024-04-02T06:57:30.936570+0000 mon.smithi037 (mon.0) 932 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.2", "id": [5, 3]}]: dispatch 2024-04-02T06:57:32.750 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph nfs cluster rm foo' 2024-04-02T06:57:33.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:32 smithi037 bash[18626]: cluster 2024-04-02T06:57:31.469922+0000 mgr.smithi037.yymbdj (mgr.14215) 305 : cluster 0 pgmap v253: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 511 B/s wr, 11 op/s 2024-04-02T06:57:33.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:32 smithi037 bash[18626]: audit 2024-04-02T06:57:31.663888+0000 mon.smithi037 (mon.0) 933 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.2", "id": [5, 3]}]': finished 2024-04-02T06:57:33.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:32 smithi037 bash[18626]: cluster 2024-04-02T06:57:31.670207+0000 mon.smithi037 (mon.0) 934 : cluster 0 osdmap e56: 8 total, 8 up, 8 in 2024-04-02T06:57:33.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:32 smithi052 bash[25156]: cluster 2024-04-02T06:57:31.469922+0000 mgr.smithi037.yymbdj (mgr.14215) 305 : cluster 0 pgmap v253: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 511 B/s wr, 11 op/s 2024-04-02T06:57:33.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:32 smithi052 bash[25156]: audit 2024-04-02T06:57:31.663888+0000 mon.smithi037 (mon.0) 933 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.2", "id": [5, 3]}]': finished 2024-04-02T06:57:33.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:32 smithi052 bash[25156]: cluster 2024-04-02T06:57:31.670207+0000 mon.smithi037 (mon.0) 934 : cluster 0 osdmap e56: 8 total, 8 up, 8 in 2024-04-02T06:57:34.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:33 smithi037 bash[18626]: audit 2024-04-02T06:57:32.133852+0000 mgr.smithi037.yymbdj (mgr.14215) 306 : audit 0 from='client.14682 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:57:34.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:33 smithi037 bash[18626]: cluster 2024-04-02T06:57:32.684924+0000 mon.smithi037 (mon.0) 935 : cluster 0 osdmap e57: 8 total, 8 up, 8 in 2024-04-02T06:57:34.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:33 smithi052 bash[25156]: audit 2024-04-02T06:57:32.133852+0000 mgr.smithi037.yymbdj (mgr.14215) 306 : audit 0 from='client.14682 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:57:34.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:33 smithi052 bash[25156]: cluster 2024-04-02T06:57:32.684924+0000 mon.smithi037 (mon.0) 935 : cluster 0 osdmap e57: 8 total, 8 up, 8 in 2024-04-02T06:57:35.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:34 smithi037 bash[18626]: cluster 2024-04-02T06:57:33.471112+0000 mgr.smithi037.yymbdj (mgr.14215) 307 : cluster 0 pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 8.4 KiB/s rd, 639 B/s wr, 9 op/s 2024-04-02T06:57:35.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:34 smithi052 bash[25156]: cluster 2024-04-02T06:57:33.471112+0000 mgr.smithi037.yymbdj (mgr.14215) 307 : cluster 0 pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 8.4 KiB/s rd, 639 B/s wr, 9 op/s 2024-04-02T06:57:37.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:36 smithi037 bash[18626]: cluster 2024-04-02T06:57:35.472549+0000 mgr.smithi037.yymbdj (mgr.14215) 308 : cluster 0 pgmap v257: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 2.4 KiB/s rd, 0 B/s wr, 2 op/s 2024-04-02T06:57:37.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:36 smithi052 bash[25156]: cluster 2024-04-02T06:57:35.472549+0000 mgr.smithi037.yymbdj (mgr.14215) 308 : cluster 0 pgmap v257: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 2.4 KiB/s rd, 0 B/s wr, 2 op/s 2024-04-02T06:57:37.594 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:57:39.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:38 smithi037 bash[18626]: cluster 2024-04-02T06:57:37.473933+0000 mgr.smithi037.yymbdj (mgr.14215) 309 : cluster 0 pgmap v258: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-04-02T06:57:39.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:38 smithi052 bash[25156]: cluster 2024-04-02T06:57:37.473933+0000 mgr.smithi037.yymbdj (mgr.14215) 309 : cluster 0 pgmap v258: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-04-02T06:57:40.961 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:40 smithi037 bash[18626]: cluster 2024-04-02T06:57:39.476020+0000 mgr.smithi037.yymbdj (mgr.14215) 310 : cluster 0 pgmap v259: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-04-02T06:57:40.961 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:40 smithi037 bash[18626]: audit 2024-04-02T06:57:40.244141+0000 mon.smithi037 (mon.0) 936 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:40.961 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:40 smithi037 bash[18626]: audit 2024-04-02T06:57:40.249436+0000 mon.smithi037 (mon.0) 937 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:40.961 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:40 smithi037 bash[18626]: audit 2024-04-02T06:57:40.251881+0000 mon.smithi037 (mon.0) 938 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:57:40.962 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-02T06:57:40.974 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T06:57:40.974 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-04-02T06:57:41.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:40 smithi052 bash[25156]: cluster 2024-04-02T06:57:39.476020+0000 mgr.smithi037.yymbdj (mgr.14215) 310 : cluster 0 pgmap v259: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-04-02T06:57:41.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:40 smithi052 bash[25156]: audit 2024-04-02T06:57:40.244141+0000 mon.smithi037 (mon.0) 936 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:41.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:40 smithi052 bash[25156]: audit 2024-04-02T06:57:40.249436+0000 mon.smithi037 (mon.0) 937 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:41.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:40 smithi052 bash[25156]: audit 2024-04-02T06:57:40.251881+0000 mon.smithi037 (mon.0) 938 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:57:42.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:41 smithi037 bash[18626]: audit 2024-04-02T06:57:40.220167+0000 mgr.smithi037.yymbdj (mgr.14215) 311 : audit 0 from='client.14686 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:57:42.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:41 smithi037 bash[18626]: cephadm 2024-04-02T06:57:40.237375+0000 mgr.smithi037.yymbdj (mgr.14215) 312 : cephadm 1 Remove service ingress.nfs.foo 2024-04-02T06:57:42.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:41 smithi037 bash[18626]: cephadm 2024-04-02T06:57:40.245303+0000 mgr.smithi037.yymbdj (mgr.14215) 313 : cephadm 1 Remove service nfs.foo 2024-04-02T06:57:42.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:41 smithi052 bash[25156]: audit 2024-04-02T06:57:40.220167+0000 mgr.smithi037.yymbdj (mgr.14215) 311 : audit 0 from='client.14686 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:57:42.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:41 smithi052 bash[25156]: cephadm 2024-04-02T06:57:40.237375+0000 mgr.smithi037.yymbdj (mgr.14215) 312 : cephadm 1 Remove service ingress.nfs.foo 2024-04-02T06:57:42.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:41 smithi052 bash[25156]: cephadm 2024-04-02T06:57:40.245303+0000 mgr.smithi037.yymbdj (mgr.14215) 313 : cephadm 1 Remove service nfs.foo 2024-04-02T06:57:43.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:42 smithi037 bash[18626]: cluster 2024-04-02T06:57:41.477453+0000 mgr.smithi037.yymbdj (mgr.14215) 314 : cluster 0 pgmap v260: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 208 B/s rd, 0 B/s wr, 0 op/s 2024-04-02T06:57:43.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:42 smithi052 bash[25156]: cluster 2024-04-02T06:57:41.477453+0000 mgr.smithi037.yymbdj (mgr.14215) 314 : cluster 0 pgmap v260: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 208 B/s rd, 0 B/s wr, 0 op/s 2024-04-02T06:57:45.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:44 smithi037 bash[18626]: cluster 2024-04-02T06:57:43.478707+0000 mgr.smithi037.yymbdj (mgr.14215) 315 : cluster 0 pgmap v261: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 189 B/s rd, 0 B/s wr, 0 op/s 2024-04-02T06:57:45.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:44 smithi052 bash[25156]: cluster 2024-04-02T06:57:43.478707+0000 mgr.smithi037.yymbdj (mgr.14215) 315 : cluster 0 pgmap v261: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 189 B/s rd, 0 B/s wr, 0 op/s 2024-04-02T06:57:45.360 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:57:46.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:45 smithi037 bash[18626]: audit 2024-04-02T06:57:45.477394+0000 mon.smithi037 (mon.0) 939 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:57:46.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:45 smithi052 bash[25156]: audit 2024-04-02T06:57:45.477394+0000 mon.smithi037 (mon.0) 939 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:57:47.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:47 smithi037 bash[18626]: cluster 2024-04-02T06:57:45.479992+0000 mgr.smithi037.yymbdj (mgr.14215) 316 : cluster 0 pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:47.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:47 smithi037 bash[18626]: audit 2024-04-02T06:57:46.046271+0000 mon.smithi037 (mon.0) 940 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:47.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:47 smithi037 bash[18626]: audit 2024-04-02T06:57:46.053728+0000 mon.smithi037 (mon.0) 941 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:47.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:47 smithi037 bash[18626]: audit 2024-04-02T06:57:46.493928+0000 mon.smithi037 (mon.0) 942 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:47.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:47 smithi037 bash[18626]: audit 2024-04-02T06:57:46.499839+0000 mon.smithi037 (mon.0) 943 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:47.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:47 smithi037 bash[18626]: audit 2024-04-02T06:57:46.501088+0000 mon.smithi037 (mon.0) 944 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:57:47.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:47 smithi037 bash[18626]: audit 2024-04-02T06:57:46.501892+0000 mon.smithi037 (mon.0) 945 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:57:47.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:47 smithi037 bash[18626]: audit 2024-04-02T06:57:46.506069+0000 mon.smithi037 (mon.0) 946 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:47.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:47 smithi037 bash[18626]: audit 2024-04-02T06:57:46.509087+0000 mon.smithi037 (mon.0) 947 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:57:47.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:47 smithi052 bash[25156]: cluster 2024-04-02T06:57:45.479992+0000 mgr.smithi037.yymbdj (mgr.14215) 316 : cluster 0 pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:47.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:47 smithi052 bash[25156]: audit 2024-04-02T06:57:46.046271+0000 mon.smithi037 (mon.0) 940 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:47.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:47 smithi052 bash[25156]: audit 2024-04-02T06:57:46.053728+0000 mon.smithi037 (mon.0) 941 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:47.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:47 smithi052 bash[25156]: audit 2024-04-02T06:57:46.493928+0000 mon.smithi037 (mon.0) 942 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:47.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:47 smithi052 bash[25156]: audit 2024-04-02T06:57:46.499839+0000 mon.smithi037 (mon.0) 943 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:47.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:47 smithi052 bash[25156]: audit 2024-04-02T06:57:46.501088+0000 mon.smithi037 (mon.0) 944 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:57:47.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:47 smithi052 bash[25156]: audit 2024-04-02T06:57:46.501892+0000 mon.smithi037 (mon.0) 945 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:57:47.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:47 smithi052 bash[25156]: audit 2024-04-02T06:57:46.506069+0000 mon.smithi037 (mon.0) 946 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:57:47.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:47 smithi052 bash[25156]: audit 2024-04-02T06:57:46.509087+0000 mon.smithi037 (mon.0) 947 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:57:47.577 INFO:teuthology.orchestra.run.smithi037.stdout:167 167 2024-04-02T06:57:48.298 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch status' 2024-04-02T06:57:48.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:48 smithi037 bash[18626]: cephadm 2024-04-02T06:57:46.582283+0000 mgr.smithi037.yymbdj (mgr.14215) 317 : cephadm 1 Removing orphan daemon nfs.foo.0.0.smithi037.evpznx... 2024-04-02T06:57:48.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:48 smithi037 bash[18626]: cephadm 2024-04-02T06:57:46.582487+0000 mgr.smithi037.yymbdj (mgr.14215) 318 : cephadm 1 Removing daemon nfs.foo.0.0.smithi037.evpznx from smithi037 -- ports [12049] 2024-04-02T06:57:48.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:48 smithi052 bash[25156]: cephadm 2024-04-02T06:57:46.582283+0000 mgr.smithi037.yymbdj (mgr.14215) 317 : cephadm 1 Removing orphan daemon nfs.foo.0.0.smithi037.evpznx... 2024-04-02T06:57:48.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:48 smithi052 bash[25156]: cephadm 2024-04-02T06:57:46.582487+0000 mgr.smithi037.yymbdj (mgr.14215) 318 : cephadm 1 Removing daemon nfs.foo.0.0.smithi037.evpznx from smithi037 -- ports [12049] 2024-04-02T06:57:49.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:49 smithi037 bash[18626]: cluster 2024-04-02T06:57:47.481374+0000 mgr.smithi037.yymbdj (mgr.14215) 319 : cluster 0 pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:49.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:49 smithi052 bash[25156]: cluster 2024-04-02T06:57:47.481374+0000 mgr.smithi037.yymbdj (mgr.14215) 319 : cluster 0 pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:51.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:51 smithi052 bash[25156]: cluster 2024-04-02T06:57:49.483121+0000 mgr.smithi037.yymbdj (mgr.14215) 320 : cluster 0 pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:51.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:51 smithi037 bash[18626]: cluster 2024-04-02T06:57:49.483121+0000 mgr.smithi037.yymbdj (mgr.14215) 320 : cluster 0 pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:53.155 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:57:53.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:53 smithi052 bash[25156]: cluster 2024-04-02T06:57:51.484417+0000 mgr.smithi037.yymbdj (mgr.14215) 321 : cluster 0 pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:53.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:53 smithi037 bash[18626]: cluster 2024-04-02T06:57:51.484417+0000 mgr.smithi037.yymbdj (mgr.14215) 321 : cluster 0 pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:54.180 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:54 smithi037 bash[18626]: cluster 2024-04-02T06:57:53.485633+0000 mgr.smithi037.yymbdj (mgr.14215) 322 : cluster 0 pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:54.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:54 smithi052 bash[25156]: cluster 2024-04-02T06:57:53.485633+0000 mgr.smithi037.yymbdj (mgr.14215) 322 : cluster 0 pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:55.649 INFO:teuthology.orchestra.run.smithi037.stdout:Backend: cephadm 2024-04-02T06:57:55.649 INFO:teuthology.orchestra.run.smithi037.stdout:Available: Yes 2024-04-02T06:57:55.649 INFO:teuthology.orchestra.run.smithi037.stdout:Paused: No 2024-04-02T06:57:56.239 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch ps' 2024-04-02T06:57:56.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:56 smithi037 bash[18626]: cluster 2024-04-02T06:57:55.486980+0000 mgr.smithi037.yymbdj (mgr.14215) 323 : cluster 0 pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:56.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:56 smithi037 bash[18626]: audit 2024-04-02T06:57:55.650127+0000 mgr.smithi037.yymbdj (mgr.14215) 324 : audit 0 from='client.14690 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:57:56.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:56 smithi052 bash[25156]: cluster 2024-04-02T06:57:55.486980+0000 mgr.smithi037.yymbdj (mgr.14215) 323 : cluster 0 pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-02T06:57:56.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:56 smithi052 bash[25156]: audit 2024-04-02T06:57:55.650127+0000 mgr.smithi037.yymbdj (mgr.14215) 324 : audit 0 from='client.14690 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:57:58.545 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:58 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:57:58.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:58 smithi037 bash[18626]: cluster 2024-04-02T06:57:57.488332+0000 mgr.smithi037.yymbdj (mgr.14215) 325 : cluster 0 pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:57:58.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:58 smithi037 bash[18626]: audit 2024-04-02T06:57:58.426413+0000 mon.smithi037 (mon.0) 948 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi037.evpznx"}]: dispatch 2024-04-02T06:57:58.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:58 smithi037 bash[18626]: audit 2024-04-02T06:57:58.429740+0000 mon.smithi037 (mon.0) 949 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi037.evpznx"}]': finished 2024-04-02T06:57:58.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:58 smithi037 bash[18626]: audit 2024-04-02T06:57:58.433310+0000 mon.smithi037 (mon.0) 950 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi037.evpznx-rgw"}]: dispatch 2024-04-02T06:57:58.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:58 smithi037 bash[18626]: audit 2024-04-02T06:57:58.437663+0000 mon.smithi037 (mon.0) 951 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi037.evpznx-rgw"}]': finished 2024-04-02T06:57:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:58 smithi052 bash[25156]: cluster 2024-04-02T06:57:57.488332+0000 mgr.smithi037.yymbdj (mgr.14215) 325 : cluster 0 pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:57:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:58 smithi052 bash[25156]: audit 2024-04-02T06:57:58.426413+0000 mon.smithi037 (mon.0) 948 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi037.evpznx"}]: dispatch 2024-04-02T06:57:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:58 smithi052 bash[25156]: audit 2024-04-02T06:57:58.429740+0000 mon.smithi037 (mon.0) 949 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi037.evpznx"}]': finished 2024-04-02T06:57:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:58 smithi052 bash[25156]: audit 2024-04-02T06:57:58.433310+0000 mon.smithi037 (mon.0) 950 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi037.evpznx-rgw"}]: dispatch 2024-04-02T06:57:58.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:58 smithi052 bash[25156]: audit 2024-04-02T06:57:58.437663+0000 mon.smithi037 (mon.0) 951 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi037.evpznx-rgw"}]': finished 2024-04-02T06:57:59.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:59 smithi037 bash[18626]: cephadm 2024-04-02T06:57:58.425733+0000 mgr.smithi037.yymbdj (mgr.14215) 326 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi037.evpznx 2024-04-02T06:57:59.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:59 smithi037 bash[18626]: cephadm 2024-04-02T06:57:58.432751+0000 mgr.smithi037.yymbdj (mgr.14215) 327 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi037.evpznx-rgw 2024-04-02T06:57:59.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:59 smithi037 bash[18626]: cephadm 2024-04-02T06:57:58.440021+0000 mgr.smithi037.yymbdj (mgr.14215) 328 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi037.vmqnxi... 2024-04-02T06:57:59.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:59 smithi037 bash[18626]: cephadm 2024-04-02T06:57:58.440519+0000 mgr.smithi037.yymbdj (mgr.14215) 329 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi037.vmqnxi from smithi037 -- ports [2049, 9049] 2024-04-02T06:57:59.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:59 smithi052 bash[25156]: cephadm 2024-04-02T06:57:58.425733+0000 mgr.smithi037.yymbdj (mgr.14215) 326 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi037.evpznx 2024-04-02T06:57:59.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:59 smithi052 bash[25156]: cephadm 2024-04-02T06:57:58.432751+0000 mgr.smithi037.yymbdj (mgr.14215) 327 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi037.evpznx-rgw 2024-04-02T06:57:59.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:59 smithi052 bash[25156]: cephadm 2024-04-02T06:57:58.440021+0000 mgr.smithi037.yymbdj (mgr.14215) 328 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi037.vmqnxi... 2024-04-02T06:57:59.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:57:59 smithi052 bash[25156]: cephadm 2024-04-02T06:57:58.440519+0000 mgr.smithi037.yymbdj (mgr.14215) 329 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi037.vmqnxi from smithi037 -- ports [2049, 9049] 2024-04-02T06:58:00.086 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:57:59 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:58:00.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:00 smithi037 bash[18626]: cluster 2024-04-02T06:57:59.489429+0000 mgr.smithi037.yymbdj (mgr.14215) 330 : cluster 0 pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:00.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:00 smithi037 bash[18626]: cephadm 2024-04-02T06:58:00.008227+0000 mgr.smithi037.yymbdj (mgr.14215) 331 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi037.vmqnxi 2024-04-02T06:58:00.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:00 smithi037 bash[18626]: audit 2024-04-02T06:58:00.008624+0000 mon.smithi037 (mon.0) 952 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi037.vmqnxi"}]: dispatch 2024-04-02T06:58:00.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:00 smithi037 bash[18626]: cephadm 2024-04-02T06:58:00.009371+0000 mgr.smithi037.yymbdj (mgr.14215) 332 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi037.uohxbt... 2024-04-02T06:58:00.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:00 smithi037 bash[18626]: cephadm 2024-04-02T06:58:00.009651+0000 mgr.smithi037.yymbdj (mgr.14215) 333 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi037.uohxbt from smithi037 -- ports [] 2024-04-02T06:58:00.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:00 smithi037 bash[18626]: audit 2024-04-02T06:58:00.477487+0000 mon.smithi037 (mon.0) 953 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:58:00.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:00 smithi052 bash[25156]: cluster 2024-04-02T06:57:59.489429+0000 mgr.smithi037.yymbdj (mgr.14215) 330 : cluster 0 pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:00.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:00 smithi052 bash[25156]: cephadm 2024-04-02T06:58:00.008227+0000 mgr.smithi037.yymbdj (mgr.14215) 331 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi037.vmqnxi 2024-04-02T06:58:00.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:00 smithi052 bash[25156]: audit 2024-04-02T06:58:00.008624+0000 mon.smithi037 (mon.0) 952 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi037.vmqnxi"}]: dispatch 2024-04-02T06:58:00.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:00 smithi052 bash[25156]: cephadm 2024-04-02T06:58:00.009371+0000 mgr.smithi037.yymbdj (mgr.14215) 332 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi037.uohxbt... 2024-04-02T06:58:00.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:00 smithi052 bash[25156]: cephadm 2024-04-02T06:58:00.009651+0000 mgr.smithi037.yymbdj (mgr.14215) 333 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi037.uohxbt from smithi037 -- ports [] 2024-04-02T06:58:00.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:00 smithi052 bash[25156]: audit 2024-04-02T06:58:00.477487+0000 mon.smithi037 (mon.0) 953 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:58:02.553 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:02 smithi037 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:58:02.726 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:58:02.838 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:02 smithi052 bash[25156]: cluster 2024-04-02T06:58:01.490727+0000 mgr.smithi037.yymbdj (mgr.14215) 334 : cluster 0 pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:03.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:02 smithi037 bash[18626]: cluster 2024-04-02T06:58:01.490727+0000 mgr.smithi037.yymbdj (mgr.14215) 334 : cluster 0 pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:03.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:03 smithi037 bash[18626]: cephadm 2024-04-02T06:58:02.579511+0000 mgr.smithi037.yymbdj (mgr.14215) 335 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi037.uohxbt 2024-04-02T06:58:03.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:03 smithi037 bash[18626]: audit 2024-04-02T06:58:02.580112+0000 mon.smithi037 (mon.0) 954 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi037.uohxbt"}]: dispatch 2024-04-02T06:58:03.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:03 smithi037 bash[18626]: cephadm 2024-04-02T06:58:02.584370+0000 mgr.smithi037.yymbdj (mgr.14215) 336 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi052.hwtpoc... 2024-04-02T06:58:03.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:03 smithi037 bash[18626]: cephadm 2024-04-02T06:58:02.584926+0000 mgr.smithi037.yymbdj (mgr.14215) 337 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi052.hwtpoc from smithi052 -- ports [2049, 9049] 2024-04-02T06:58:03.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:03 smithi052 bash[25156]: cephadm 2024-04-02T06:58:02.579511+0000 mgr.smithi037.yymbdj (mgr.14215) 335 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi037.uohxbt 2024-04-02T06:58:03.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:03 smithi052 bash[25156]: audit 2024-04-02T06:58:02.580112+0000 mon.smithi037 (mon.0) 954 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi037.uohxbt"}]: dispatch 2024-04-02T06:58:03.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:03 smithi052 bash[25156]: cephadm 2024-04-02T06:58:02.584370+0000 mgr.smithi037.yymbdj (mgr.14215) 336 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi052.hwtpoc... 2024-04-02T06:58:03.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:03 smithi052 bash[25156]: cephadm 2024-04-02T06:58:02.584926+0000 mgr.smithi037.yymbdj (mgr.14215) 337 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi052.hwtpoc from smithi052 -- ports [2049, 9049] 2024-04-02T06:58:04.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:04 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:58:04.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:04 smithi037 bash[18626]: cluster 2024-04-02T06:58:03.491878+0000 mgr.smithi037.yymbdj (mgr.14215) 338 : cluster 0 pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:04.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:04 smithi037 bash[18626]: audit 2024-04-02T06:58:04.356683+0000 mon.smithi037 (mon.0) 955 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi052.hwtpoc"}]: dispatch 2024-04-02T06:58:04.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:04 smithi052 bash[25156]: cluster 2024-04-02T06:58:03.491878+0000 mgr.smithi037.yymbdj (mgr.14215) 338 : cluster 0 pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:04.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:04 smithi052 bash[25156]: audit 2024-04-02T06:58:04.356683+0000 mon.smithi037 (mon.0) 955 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi052.hwtpoc"}]: dispatch 2024-04-02T06:58:05.407 INFO:teuthology.orchestra.run.smithi037.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:alertmanager.smithi037 smithi037 *:9093,9094 running (6m) 18s ago 8m 13.1M - 0.25.0 c8568f914cd2 d59c79db2239 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter.smithi037 smithi037 running (9m) 18s ago 9m 8676k - 19.0.0-1979-g6cec793d 78f830190839 5d02325101ff 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter.smithi052 smithi052 running (7m) 19s ago 7m 8716k - 19.0.0-1979-g6cec793d 78f830190839 8399486b3ded 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:crash.smithi037 smithi037 running (9m) 18s ago 9m 7107k - 19.0.0-1979-g6cec793d 78f830190839 d4824c486c1b 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:crash.smithi052 smithi052 running (7m) 19s ago 7m 7088k - 19.0.0-1979-g6cec793d 78f830190839 bbbfd79137c0 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:grafana.smithi037 smithi037 *:3000 running (6m) 18s ago 7m 72.4M - 9.4.12 2bacad6d85d8 03ce2747387b 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:keepalived.nfs.foo.smithi052.tgbase smithi052 running (79s) 19s ago 79s 2652k - 2.2.4 4a3a1ff181d9 c21d66801110 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:mgr.smithi037.yymbdj smithi037 *:9283,8765,8443 running (10m) 18s ago 10m 505M - 19.0.0-1979-g6cec793d 78f830190839 d883ef8a469e 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:mgr.smithi052.hwhbeq smithi052 *:8443,9283,8765 running (7m) 19s ago 7m 437M - 19.0.0-1979-g6cec793d 78f830190839 2bd9c0785bc3 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:mon.smithi037 smithi037 running (10m) 18s ago 10m 51.0M 2048M 19.0.0-1979-g6cec793d 78f830190839 95d89a821921 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:mon.smithi052 smithi052 running (7m) 19s ago 7m 36.5M 2048M 19.0.0-1979-g6cec793d 78f830190839 b9dea0a28ecd 2024-04-02T06:58:05.408 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter.smithi037 smithi037 *:9100 running (9m) 18s ago 9m 8800k - 1.5.0 0da6a335fe13 901b5c5a8db8 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter.smithi052 smithi052 *:9100 running (7m) 19s ago 7m 8955k - 1.5.0 0da6a335fe13 d45cb2681caf 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:osd.0 smithi052 running (5m) 19s ago 5m 59.8M 3773M 19.0.0-1979-g6cec793d 78f830190839 4a2542fe1516 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:osd.1 smithi037 running (5m) 18s ago 5m 50.7M 3005M 19.0.0-1979-g6cec793d 78f830190839 95c0ee409fa4 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:osd.2 smithi052 running (5m) 19s ago 5m 47.8M 3773M 19.0.0-1979-g6cec793d 78f830190839 1771b82ae325 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:osd.3 smithi037 running (5m) 18s ago 5m 60.0M 3005M 19.0.0-1979-g6cec793d 78f830190839 cb4839def631 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:osd.4 smithi052 running (5m) 19s ago 5m 48.8M 3773M 19.0.0-1979-g6cec793d 78f830190839 1b3353933bf3 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:osd.5 smithi037 running (5m) 18s ago 5m 47.8M 3005M 19.0.0-1979-g6cec793d 78f830190839 f1797de7b3a5 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:osd.6 smithi052 running (5m) 19s ago 5m 55.1M 3773M 19.0.0-1979-g6cec793d 78f830190839 3751d2588e84 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:osd.7 smithi037 running (5m) 18s ago 5m 49.7M 3005M 19.0.0-1979-g6cec793d 78f830190839 7ba0928d39be 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:prometheus.smithi037 smithi037 *:9095 running (53s) 18s ago 7m 43.9M - 2.43.0 a07b618ecd1d 290f480f94ba 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:rgw.foorgw.smithi037.tbjgok smithi037 *:8800 running (118s) 18s ago 118s 89.6M - 19.0.0-1979-g6cec793d 78f830190839 57e5ba8137e8 2024-04-02T06:58:05.409 INFO:teuthology.orchestra.run.smithi037.stdout:rgw.foorgw.smithi052.ytmeom smithi052 *:8800 running (2m) 19s ago 2m 89.4M - 19.0.0-1979-g6cec793d 78f830190839 4f209eafed96 2024-04-02T06:58:05.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:05 smithi052 bash[25156]: cephadm 2024-04-02T06:58:04.356171+0000 mgr.smithi037.yymbdj (mgr.14215) 339 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi052.hwtpoc 2024-04-02T06:58:05.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:05 smithi052 bash[25156]: cephadm 2024-04-02T06:58:04.357543+0000 mgr.smithi037.yymbdj (mgr.14215) 340 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi052.tgbase... 2024-04-02T06:58:05.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:05 smithi052 bash[25156]: cephadm 2024-04-02T06:58:04.357883+0000 mgr.smithi037.yymbdj (mgr.14215) 341 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi052.tgbase from smithi052 -- ports [] 2024-04-02T06:58:06.042 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:05 smithi037 bash[18626]: cephadm 2024-04-02T06:58:04.356171+0000 mgr.smithi037.yymbdj (mgr.14215) 339 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi052.hwtpoc 2024-04-02T06:58:06.042 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:05 smithi037 bash[18626]: cephadm 2024-04-02T06:58:04.357543+0000 mgr.smithi037.yymbdj (mgr.14215) 340 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi052.tgbase... 2024-04-02T06:58:06.042 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:05 smithi037 bash[18626]: cephadm 2024-04-02T06:58:04.357883+0000 mgr.smithi037.yymbdj (mgr.14215) 341 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi052.tgbase from smithi052 -- ports [] 2024-04-02T06:58:06.043 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch ls' 2024-04-02T06:58:06.837 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:06 smithi052 bash[25156]: audit 2024-04-02T06:58:05.391787+0000 mgr.smithi037.yymbdj (mgr.14215) 342 : audit 0 from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:58:06.838 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:06 smithi052 bash[25156]: cluster 2024-04-02T06:58:05.492632+0000 mgr.smithi037.yymbdj (mgr.14215) 343 : cluster 0 pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:07.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:06 smithi037 bash[18626]: audit 2024-04-02T06:58:05.391787+0000 mgr.smithi037.yymbdj (mgr.14215) 342 : audit 0 from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:58:07.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:06 smithi037 bash[18626]: cluster 2024-04-02T06:58:05.492632+0000 mgr.smithi037.yymbdj (mgr.14215) 343 : cluster 0 pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:07.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:06 smithi052 systemd[1]: /etc/systemd/system/ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-02T06:58:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:07 smithi052 bash[25156]: audit 2024-04-02T06:58:07.079575+0000 mon.smithi037 (mon.0) 956 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi052.tgbase"}]: dispatch 2024-04-02T06:58:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:07 smithi052 bash[25156]: audit 2024-04-02T06:58:07.170285+0000 mon.smithi037 (mon.0) 957 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]: dispatch 2024-04-02T06:58:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:07 smithi052 bash[25156]: audit 2024-04-02T06:58:07.173811+0000 mon.smithi037 (mon.0) 958 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-04-02T06:58:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:07 smithi052 bash[25156]: audit 2024-04-02T06:58:07.174837+0000 mon.smithi037 (mon.0) 959 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]: dispatch 2024-04-02T06:58:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:07 smithi052 bash[25156]: audit 2024-04-02T06:58:07.178250+0000 mon.smithi037 (mon.0) 960 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-04-02T06:58:07.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:07 smithi052 bash[25156]: audit 2024-04-02T06:58:07.179406+0000 mon.smithi037 (mon.0) 961 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:58:08.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:07 smithi037 bash[18626]: audit 2024-04-02T06:58:07.079575+0000 mon.smithi037 (mon.0) 956 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi052.tgbase"}]: dispatch 2024-04-02T06:58:08.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:07 smithi037 bash[18626]: audit 2024-04-02T06:58:07.170285+0000 mon.smithi037 (mon.0) 957 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]: dispatch 2024-04-02T06:58:08.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:07 smithi037 bash[18626]: audit 2024-04-02T06:58:07.173811+0000 mon.smithi037 (mon.0) 958 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-04-02T06:58:08.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:07 smithi037 bash[18626]: audit 2024-04-02T06:58:07.174837+0000 mon.smithi037 (mon.0) 959 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]: dispatch 2024-04-02T06:58:08.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:07 smithi037 bash[18626]: audit 2024-04-02T06:58:07.178250+0000 mon.smithi037 (mon.0) 960 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-04-02T06:58:08.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:07 smithi037 bash[18626]: audit 2024-04-02T06:58:07.179406+0000 mon.smithi037 (mon.0) 961 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:58:08.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:08 smithi052 bash[25156]: cephadm 2024-04-02T06:58:07.078882+0000 mgr.smithi037.yymbdj (mgr.14215) 344 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi052.tgbase 2024-04-02T06:58:08.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:08 smithi052 bash[25156]: cephadm 2024-04-02T06:58:07.092353+0000 mgr.smithi037.yymbdj (mgr.14215) 345 : cephadm 1 Purge service nfs.foo 2024-04-02T06:58:08.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:08 smithi052 bash[25156]: cephadm 2024-04-02T06:58:07.092544+0000 mgr.smithi037.yymbdj (mgr.14215) 346 : cephadm 1 Removing grace file for nfs.foo 2024-04-02T06:58:08.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:08 smithi052 bash[25156]: cephadm 2024-04-02T06:58:07.174539+0000 mgr.smithi037.yymbdj (mgr.14215) 347 : cephadm 1 Purge service ingress.nfs.foo 2024-04-02T06:58:08.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:08 smithi052 bash[25156]: cluster 2024-04-02T06:58:07.493787+0000 mgr.smithi037.yymbdj (mgr.14215) 348 : cluster 0 pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:08.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:08 smithi052 bash[25156]: audit 2024-04-02T06:58:07.652938+0000 mon.smithi037 (mon.0) 962 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:08.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:08 smithi052 bash[25156]: audit 2024-04-02T06:58:07.658289+0000 mon.smithi037 (mon.0) 963 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:09.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:08 smithi037 bash[18626]: cephadm 2024-04-02T06:58:07.078882+0000 mgr.smithi037.yymbdj (mgr.14215) 344 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi052.tgbase 2024-04-02T06:58:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:08 smithi037 bash[18626]: cephadm 2024-04-02T06:58:07.092353+0000 mgr.smithi037.yymbdj (mgr.14215) 345 : cephadm 1 Purge service nfs.foo 2024-04-02T06:58:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:08 smithi037 bash[18626]: cephadm 2024-04-02T06:58:07.092544+0000 mgr.smithi037.yymbdj (mgr.14215) 346 : cephadm 1 Removing grace file for nfs.foo 2024-04-02T06:58:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:08 smithi037 bash[18626]: cephadm 2024-04-02T06:58:07.174539+0000 mgr.smithi037.yymbdj (mgr.14215) 347 : cephadm 1 Purge service ingress.nfs.foo 2024-04-02T06:58:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:08 smithi037 bash[18626]: cluster 2024-04-02T06:58:07.493787+0000 mgr.smithi037.yymbdj (mgr.14215) 348 : cluster 0 pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:08 smithi037 bash[18626]: audit 2024-04-02T06:58:07.652938+0000 mon.smithi037 (mon.0) 962 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:09.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:08 smithi037 bash[18626]: audit 2024-04-02T06:58:07.658289+0000 mon.smithi037 (mon.0) 963 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:10.803 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:10 smithi037 bash[18626]: cluster 2024-04-02T06:58:09.495577+0000 mgr.smithi037.yymbdj (mgr.14215) 349 : cluster 0 pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:10.830 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:58:10.910 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:10 smithi052 bash[25156]: cluster 2024-04-02T06:58:09.495577+0000 mgr.smithi037.yymbdj (mgr.14215) 349 : cluster 0 pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:13.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:12 smithi037 bash[18626]: cluster 2024-04-02T06:58:11.496995+0000 mgr.smithi037.yymbdj (mgr.14215) 350 : cluster 0 pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:13.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:12 smithi052 bash[25156]: cluster 2024-04-02T06:58:11.496995+0000 mgr.smithi037.yymbdj (mgr.14215) 350 : cluster 0 pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:13.264 INFO:teuthology.orchestra.run.smithi037.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-04-02T06:58:13.264 INFO:teuthology.orchestra.run.smithi037.stdout:alertmanager ?:9093,9094 1/1 0s ago 10m count:1 2024-04-02T06:58:13.264 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter 2/2 0s ago 10m * 2024-04-02T06:58:13.264 INFO:teuthology.orchestra.run.smithi037.stdout:crash 2/2 0s ago 10m * 2024-04-02T06:58:13.264 INFO:teuthology.orchestra.run.smithi037.stdout:grafana ?:3000 1/1 0s ago 10m count:1 2024-04-02T06:58:13.264 INFO:teuthology.orchestra.run.smithi037.stdout:mgr 2/2 0s ago 10m count:2 2024-04-02T06:58:13.265 INFO:teuthology.orchestra.run.smithi037.stdout:mon 2/2 0s ago 8m smithi037:172.21.15.37=smithi037;smithi052:172.21.15.52=smithi052;count:2 2024-04-02T06:58:13.265 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter ?:9100 2/2 0s ago 10m * 2024-04-02T06:58:13.265 INFO:teuthology.orchestra.run.smithi037.stdout:osd.all-available-devices 8 0s ago 6m * 2024-04-02T06:58:13.265 INFO:teuthology.orchestra.run.smithi037.stdout:prometheus ?:9095 1/1 0s ago 10m count:1 2024-04-02T06:58:13.265 INFO:teuthology.orchestra.run.smithi037.stdout:rgw.foorgw ?:8800 2/2 0s ago 2m count:2 2024-04-02T06:58:13.930 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch host ls' 2024-04-02T06:58:14.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:13 smithi037 bash[18626]: audit 2024-04-02T06:58:12.716064+0000 mon.smithi037 (mon.0) 964 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:14.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:13 smithi037 bash[18626]: audit 2024-04-02T06:58:12.721728+0000 mon.smithi037 (mon.0) 965 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:14.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:13 smithi037 bash[18626]: audit 2024-04-02T06:58:12.854865+0000 mon.smithi037 (mon.0) 966 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:14.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:13 smithi037 bash[18626]: audit 2024-04-02T06:58:12.862336+0000 mon.smithi037 (mon.0) 967 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:14.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:13 smithi037 bash[18626]: audit 2024-04-02T06:58:13.445691+0000 mon.smithi037 (mon.0) 968 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:58:14.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:13 smithi037 bash[18626]: audit 2024-04-02T06:58:13.447097+0000 mon.smithi037 (mon.0) 969 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:58:14.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:13 smithi037 bash[18626]: audit 2024-04-02T06:58:13.455843+0000 mon.smithi037 (mon.0) 970 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:14.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:13 smithi037 bash[18626]: audit 2024-04-02T06:58:13.461014+0000 mon.smithi037 (mon.0) 971 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:58:14.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:13 smithi052 bash[25156]: audit 2024-04-02T06:58:12.716064+0000 mon.smithi037 (mon.0) 964 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:14.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:13 smithi052 bash[25156]: audit 2024-04-02T06:58:12.721728+0000 mon.smithi037 (mon.0) 965 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:14.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:13 smithi052 bash[25156]: audit 2024-04-02T06:58:12.854865+0000 mon.smithi037 (mon.0) 966 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:14.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:13 smithi052 bash[25156]: audit 2024-04-02T06:58:12.862336+0000 mon.smithi037 (mon.0) 967 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:14.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:13 smithi052 bash[25156]: audit 2024-04-02T06:58:13.445691+0000 mon.smithi037 (mon.0) 968 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:58:14.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:13 smithi052 bash[25156]: audit 2024-04-02T06:58:13.447097+0000 mon.smithi037 (mon.0) 969 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:58:14.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:13 smithi052 bash[25156]: audit 2024-04-02T06:58:13.455843+0000 mon.smithi037 (mon.0) 970 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:14.158 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:13 smithi052 bash[25156]: audit 2024-04-02T06:58:13.461014+0000 mon.smithi037 (mon.0) 971 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:58:14.992 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:14 smithi037 bash[18626]: audit 2024-04-02T06:58:13.238357+0000 mgr.smithi037.yymbdj (mgr.14215) 351 : audit 0 from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:58:14.992 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:14 smithi037 bash[18626]: cluster 2024-04-02T06:58:13.449927+0000 mgr.smithi037.yymbdj (mgr.14215) 352 : cluster 0 pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:14.993 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:14 smithi037 bash[18626]: cephadm 2024-04-02T06:58:13.519618+0000 mgr.smithi037.yymbdj (mgr.14215) 353 : cephadm 1 Reconfiguring prometheus.smithi037 (dependencies changed)... 2024-04-02T06:58:14.993 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:14 smithi037 bash[18626]: cephadm 2024-04-02T06:58:13.779237+0000 mgr.smithi037.yymbdj (mgr.14215) 354 : cephadm 1 Reconfiguring daemon prometheus.smithi037 on smithi037 2024-04-02T06:58:14.993 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:14 smithi037 bash[18626]: cluster 2024-04-02T06:58:13.859954+0000 mon.smithi037 (mon.0) 972 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-02T06:58:15.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:14 smithi052 bash[25156]: audit 2024-04-02T06:58:13.238357+0000 mgr.smithi037.yymbdj (mgr.14215) 351 : audit 0 from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:58:15.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:14 smithi052 bash[25156]: cluster 2024-04-02T06:58:13.449927+0000 mgr.smithi037.yymbdj (mgr.14215) 352 : cluster 0 pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:15.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:14 smithi052 bash[25156]: cephadm 2024-04-02T06:58:13.519618+0000 mgr.smithi037.yymbdj (mgr.14215) 353 : cephadm 1 Reconfiguring prometheus.smithi037 (dependencies changed)... 2024-04-02T06:58:15.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:14 smithi052 bash[25156]: cephadm 2024-04-02T06:58:13.779237+0000 mgr.smithi037.yymbdj (mgr.14215) 354 : cephadm 1 Reconfiguring daemon prometheus.smithi037 on smithi037 2024-04-02T06:58:15.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:14 smithi052 bash[25156]: cluster 2024-04-02T06:58:13.859954+0000 mon.smithi037 (mon.0) 972 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-02T06:58:16.776 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:16 smithi037 bash[18626]: cluster 2024-04-02T06:58:15.451389+0000 mgr.smithi037.yymbdj (mgr.14215) 355 : cluster 0 pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:16.776 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:16 smithi037 bash[18626]: audit 2024-04-02T06:58:15.485131+0000 mon.smithi037 (mon.0) 973 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:16.776 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:16 smithi037 bash[18626]: audit 2024-04-02T06:58:15.487435+0000 mon.smithi037 (mon.0) 974 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:58:16.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:16 smithi052 bash[25156]: cluster 2024-04-02T06:58:15.451389+0000 mgr.smithi037.yymbdj (mgr.14215) 355 : cluster 0 pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:16.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:16 smithi052 bash[25156]: audit 2024-04-02T06:58:15.485131+0000 mon.smithi037 (mon.0) 973 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:16.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:16 smithi052 bash[25156]: audit 2024-04-02T06:58:15.487435+0000 mon.smithi037 (mon.0) 974 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:58:18.710 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:58:19.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:18 smithi037 bash[18626]: cluster 2024-04-02T06:58:17.452777+0000 mgr.smithi037.yymbdj (mgr.14215) 356 : cluster 0 pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:18 smithi037 bash[18626]: audit 2024-04-02T06:58:17.933134+0000 mon.smithi037 (mon.0) 975 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:18 smithi037 bash[18626]: audit 2024-04-02T06:58:17.939551+0000 mon.smithi037 (mon.0) 976 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:18 smithi037 bash[18626]: audit 2024-04-02T06:58:17.966868+0000 mon.smithi037 (mon.0) 977 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:58:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:18 smithi037 bash[18626]: audit 2024-04-02T06:58:17.967331+0000 mgr.smithi037.yymbdj (mgr.14215) 357 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:58:19.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:18 smithi037 bash[18626]: audit 2024-04-02T06:58:17.972990+0000 mon.smithi037 (mon.0) 978 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:58:19.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:18 smithi052 bash[25156]: cluster 2024-04-02T06:58:17.452777+0000 mgr.smithi037.yymbdj (mgr.14215) 356 : cluster 0 pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:19.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:18 smithi052 bash[25156]: audit 2024-04-02T06:58:17.933134+0000 mon.smithi037 (mon.0) 975 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:19.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:18 smithi052 bash[25156]: audit 2024-04-02T06:58:17.939551+0000 mon.smithi037 (mon.0) 976 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:19.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:18 smithi052 bash[25156]: audit 2024-04-02T06:58:17.966868+0000 mon.smithi037 (mon.0) 977 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:58:19.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:18 smithi052 bash[25156]: audit 2024-04-02T06:58:17.967331+0000 mgr.smithi037.yymbdj (mgr.14215) 357 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-02T06:58:19.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:18 smithi052 bash[25156]: audit 2024-04-02T06:58:17.972990+0000 mon.smithi037 (mon.0) 978 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-02T06:58:21.053 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:20 smithi037 bash[18626]: cluster 2024-04-02T06:58:19.454739+0000 mgr.smithi037.yymbdj (mgr.14215) 358 : cluster 0 pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:21.390 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:20 smithi052 bash[25156]: cluster 2024-04-02T06:58:19.454739+0000 mgr.smithi037.yymbdj (mgr.14215) 358 : cluster 0 pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:21.530 INFO:teuthology.orchestra.run.smithi037.stdout:HOST ADDR LABELS STATUS 2024-04-02T06:58:21.530 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 172.21.15.37 2024-04-02T06:58:21.530 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 172.21.15.52 2024-04-02T06:58:21.530 INFO:teuthology.orchestra.run.smithi037.stdout:2 hosts in cluster 2024-04-02T06:58:22.118 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch device ls' 2024-04-02T06:58:23.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:22 smithi037 bash[18626]: cluster 2024-04-02T06:58:21.456175+0000 mgr.smithi037.yymbdj (mgr.14215) 359 : cluster 0 pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:23.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:22 smithi037 bash[18626]: audit 2024-04-02T06:58:21.530544+0000 mgr.smithi037.yymbdj (mgr.14215) 360 : audit 0 from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:58:23.406 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:22 smithi052 bash[25156]: cluster 2024-04-02T06:58:21.456175+0000 mgr.smithi037.yymbdj (mgr.14215) 359 : cluster 0 pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:23.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:22 smithi052 bash[25156]: audit 2024-04-02T06:58:21.530544+0000 mgr.smithi037.yymbdj (mgr.14215) 360 : audit 0 from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:58:24.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: cluster 2024-04-02T06:58:23.457384+0000 mgr.smithi037.yymbdj (mgr.14215) 361 : cluster 0 pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:24.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: audit 2024-04-02T06:58:23.557634+0000 mon.smithi037 (mon.0) 979 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:24.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: audit 2024-04-02T06:58:23.563221+0000 mon.smithi037 (mon.0) 980 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:24.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: audit 2024-04-02T06:58:23.762080+0000 mon.smithi037 (mon.0) 981 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:24.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: audit 2024-04-02T06:58:23.769191+0000 mon.smithi037 (mon.0) 982 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:24.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: audit 2024-04-02T06:58:23.770318+0000 mon.smithi037 (mon.0) 983 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:58:24.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: audit 2024-04-02T06:58:23.771028+0000 mon.smithi037 (mon.0) 984 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:58:24.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: cluster 2024-04-02T06:58:23.772330+0000 mgr.smithi037.yymbdj (mgr.14215) 362 : cluster 0 pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:24.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: cluster 2024-04-02T06:58:23.772559+0000 mgr.smithi037.yymbdj (mgr.14215) 363 : cluster 0 pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:24.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: audit 2024-04-02T06:58:23.777602+0000 mon.smithi037 (mon.0) 985 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:24.908 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:24 smithi052 bash[25156]: audit 2024-04-02T06:58:23.784928+0000 mon.smithi037 (mon.0) 986 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:58:25.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: cluster 2024-04-02T06:58:23.457384+0000 mgr.smithi037.yymbdj (mgr.14215) 361 : cluster 0 pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:25.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: audit 2024-04-02T06:58:23.557634+0000 mon.smithi037 (mon.0) 979 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:25.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: audit 2024-04-02T06:58:23.563221+0000 mon.smithi037 (mon.0) 980 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:25.054 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: audit 2024-04-02T06:58:23.762080+0000 mon.smithi037 (mon.0) 981 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:25.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: audit 2024-04-02T06:58:23.769191+0000 mon.smithi037 (mon.0) 982 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:25.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: audit 2024-04-02T06:58:23.770318+0000 mon.smithi037 (mon.0) 983 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-02T06:58:25.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: audit 2024-04-02T06:58:23.771028+0000 mon.smithi037 (mon.0) 984 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-02T06:58:25.055 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: cluster 2024-04-02T06:58:23.772330+0000 mgr.smithi037.yymbdj (mgr.14215) 362 : cluster 0 pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:25.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: cluster 2024-04-02T06:58:23.772559+0000 mgr.smithi037.yymbdj (mgr.14215) 363 : cluster 0 pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:25.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: audit 2024-04-02T06:58:23.777602+0000 mon.smithi037 (mon.0) 985 : audit 1 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' 2024-04-02T06:58:25.056 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:24 smithi037 bash[18626]: audit 2024-04-02T06:58:23.784928+0000 mon.smithi037 (mon.0) 986 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-02T06:58:26.907 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:26 smithi052 bash[25156]: cluster 2024-04-02T06:58:25.773906+0000 mgr.smithi037.yymbdj (mgr.14215) 364 : cluster 0 pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:26.911 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:58:27.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:26 smithi037 bash[18626]: cluster 2024-04-02T06:58:25.773906+0000 mgr.smithi037.yymbdj (mgr.14215) 364 : cluster 0 pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:29.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:28 smithi052 bash[25156]: cluster 2024-04-02T06:58:27.774829+0000 mgr.smithi037.yymbdj (mgr.14215) 365 : cluster 0 pgmap v285: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:29.167 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:28 smithi037 bash[18626]: cluster 2024-04-02T06:58:27.774829+0000 mgr.smithi037.yymbdj (mgr.14215) 365 : cluster 0 pgmap v285: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:29.577 INFO:teuthology.orchestra.run.smithi037.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-04-02T06:58:29.577 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5331005T400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-04-02T06:58:29.577 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme1n1 ssd Linux_3cf3d7e93623fc63b500 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:58:29.577 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme2n1 ssd Linux_2a9f2e1698ed0f8e0da8 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:58:29.577 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme3n1 ssd Linux_3b18cdc853e1f477a06e 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:58:29.578 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme4n1 ssd Linux_39e9aa2f1f1627d2f86f 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:58:29.578 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7513010N480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-04-02T06:58:29.578 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme1n1 ssd Linux_43648c8302fcc97b56ba 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:58:29.578 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme2n1 ssd Linux_d16d799d86ccd10e32c9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:58:29.578 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme3n1 ssd Linux_53dee4c11eab07978984 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:58:29.578 INFO:teuthology.orchestra.run.smithi037.stdout:smithi052 /dev/nvme4n1 ssd Linux_f3902035cc7e36c0275f 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-02T06:58:30.198 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:6cec793d9073f0594e2364b9b687ecaf22424cca shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-04-02T06:58:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:30 smithi052 bash[25156]: audit 2024-04-02T06:58:29.570067+0000 mgr.smithi037.yymbdj (mgr.14215) 366 : audit 0 from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:58:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:30 smithi052 bash[25156]: cluster 2024-04-02T06:58:29.776636+0000 mgr.smithi037.yymbdj (mgr.14215) 367 : cluster 0 pgmap v286: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:31.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:30 smithi052 bash[25156]: audit 2024-04-02T06:58:30.479538+0000 mon.smithi037 (mon.0) 987 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:58:31.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:30 smithi037 bash[18626]: audit 2024-04-02T06:58:29.570067+0000 mgr.smithi037.yymbdj (mgr.14215) 366 : audit 0 from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-02T06:58:31.303 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:30 smithi037 bash[18626]: cluster 2024-04-02T06:58:29.776636+0000 mgr.smithi037.yymbdj (mgr.14215) 367 : cluster 0 pgmap v286: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:31.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:30 smithi037 bash[18626]: audit 2024-04-02T06:58:30.479538+0000 mon.smithi037 (mon.0) 987 : audit 0 from='mgr.14215 172.21.15.37:0/1123573494' entity='mgr.smithi037.yymbdj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-02T06:58:33.150 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:32 smithi037 bash[18626]: cluster 2024-04-02T06:58:31.777980+0000 mgr.smithi037.yymbdj (mgr.14215) 368 : cluster 0 pgmap v287: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:33.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:32 smithi052 bash[25156]: cluster 2024-04-02T06:58:31.777980+0000 mgr.smithi037.yymbdj (mgr.14215) 368 : cluster 0 pgmap v287: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:35.007 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/mon.smithi037/config 2024-04-02T06:58:35.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:34 smithi052 bash[25156]: cluster 2024-04-02T06:58:33.779296+0000 mgr.smithi037.yymbdj (mgr.14215) 369 : cluster 0 pgmap v288: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:35.304 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:34 smithi037 bash[18626]: cluster 2024-04-02T06:58:33.779296+0000 mgr.smithi037.yymbdj (mgr.14215) 369 : cluster 0 pgmap v288: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:37.118 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:36 smithi037 bash[18626]: cluster 2024-04-02T06:58:35.780211+0000 mgr.smithi037.yymbdj (mgr.14215) 370 : cluster 0 pgmap v289: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:37.157 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:36 smithi052 bash[25156]: cluster 2024-04-02T06:58:35.780211+0000 mgr.smithi037.yymbdj (mgr.14215) 370 : cluster 0 pgmap v289: 225 pgs: 225 active+clean; 583 KiB data, 238 MiB used, 715 GiB / 715 GiB avail 2024-04-02T06:58:37.528 INFO:teuthology.orchestra.run.smithi037.stdout:osd.all-available-devices 8 13s ago 7m * 2024-04-02T06:58:38.171 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-04-02T06:58:38.186 INFO:tasks.vip:Removing 10.0.15.37 (and any VIPs) on smithi037.front.sepia.ceph.com iface ens1f0... 2024-04-02T06:58:38.187 DEBUG:teuthology.orchestra.run.smithi037:> sudo ip addr del 10.0.15.37/16 dev ens1f0 2024-04-02T06:58:38.201 DEBUG:teuthology.orchestra.run.smithi037:> sudo ip addr del 10.0.31.37/16 dev ens1f0 2024-04-02T06:58:38.255 INFO:teuthology.orchestra.run.smithi037.stderr:RTNETLINK answers: Cannot assign requested address 2024-04-02T06:58:38.256 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-04-02T06:58:38.257 INFO:tasks.vip:Removing 10.0.15.52 (and any VIPs) on smithi052.front.sepia.ceph.com iface ens1f0... 2024-04-02T06:58:38.257 DEBUG:teuthology.orchestra.run.smithi052:> sudo ip addr del 10.0.15.52/16 dev ens1f0 2024-04-02T06:58:38.273 DEBUG:teuthology.orchestra.run.smithi052:> sudo ip addr del 10.0.31.37/16 dev ens1f0 2024-04-02T06:58:38.328 INFO:teuthology.orchestra.run.smithi052.stderr:RTNETLINK answers: Cannot assign requested address 2024-04-02T06:58:38.329 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-04-02T06:58:38.330 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-02T06:58:38.339 INFO:tasks.cephadm:Teardown begin 2024-04-02T06:58:38.340 DEBUG:teuthology.orchestra.run.smithi037:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-02T06:58:38.353 DEBUG:teuthology.orchestra.run.smithi052:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-02T06:58:38.385 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-02T06:58:38.385 DEBUG:teuthology.orchestra.run.smithi037:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-02T06:58:38.404 DEBUG:teuthology.orchestra.run.smithi052:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-02T06:58:38.433 INFO:tasks.cephadm:Stopping all daemons... 2024-04-02T06:58:38.434 INFO:tasks.cephadm.mon.smithi037:Stopping mon.smithi037... 2024-04-02T06:58:38.434 DEBUG:teuthology.orchestra.run.smithi037:> sudo systemctl stop ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi037 2024-04-02T06:58:38.736 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:38 smithi037 systemd[1]: Stopping Ceph mon.smithi037 for aad02026-f0bc-11ee-b647-cb9ed24678a4... 2024-04-02T06:58:38.736 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:38 smithi037 bash[18626]: debug 2024-04-02T06:58:38.596+0000 7f71da5ef700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi037 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-04-02T06:58:38.736 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 02 06:58:38 smithi037 bash[18626]: debug 2024-04-02T06:58:38.596+0000 7f71da5ef700 -1 mon.smithi037@0(leader) e2 *** Got Signal Terminated *** 2024-04-02T06:58:39.357 DEBUG:teuthology.orchestra.run.smithi037:> sudo pkill -f 'journalctl -f -n 0 -u ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi037.service' 2024-04-02T06:58:39.404 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-02T06:58:39.405 INFO:tasks.cephadm.mon.smithi037:Stopped mon.smithi037 2024-04-02T06:58:39.405 INFO:tasks.cephadm.mon.smithi052:Stopping mon.smithi052... 2024-04-02T06:58:39.405 DEBUG:teuthology.orchestra.run.smithi052:> sudo systemctl stop ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi052 2024-04-02T06:58:39.838 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:39 smithi052 systemd[1]: Stopping Ceph mon.smithi052 for aad02026-f0bc-11ee-b647-cb9ed24678a4... 2024-04-02T06:58:39.838 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:39 smithi052 bash[25156]: debug 2024-04-02T06:58:39.561+0000 7f96a54a6700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi052 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-04-02T06:58:39.838 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Apr 02 06:58:39 smithi052 bash[25156]: debug 2024-04-02T06:58:39.561+0000 7f96a54a6700 -1 mon.smithi052@1(peon) e2 *** Got Signal Terminated *** 2024-04-02T06:58:40.387 DEBUG:teuthology.orchestra.run.smithi052:> sudo pkill -f 'journalctl -f -n 0 -u ceph-aad02026-f0bc-11ee-b647-cb9ed24678a4@mon.smithi052.service' 2024-04-02T06:58:40.434 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-02T06:58:40.435 INFO:tasks.cephadm.mon.smithi052:Stopped mon.smithi052 2024-04-02T06:58:40.435 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 --force --keep-logs 2024-04-02T06:58:40.611 INFO:teuthology.orchestra.run.smithi037.stdout:Deleting cluster with fsid: aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T06:59:37.113 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 --force --keep-logs 2024-04-02T06:59:37.281 INFO:teuthology.orchestra.run.smithi052.stdout:Deleting cluster with fsid: aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T07:00:30.691 DEBUG:teuthology.orchestra.run.smithi037:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-02T07:00:30.708 DEBUG:teuthology.orchestra.run.smithi052:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-02T07:00:30.721 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-02T07:00:30.722 DEBUG:teuthology.misc:Transferring archived files from smithi037:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990/remote/smithi037/crash 2024-04-02T07:00:30.723 DEBUG:teuthology.orchestra.run.smithi037:> sudo tar c -f - -C /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/crash -- . 2024-04-02T07:00:30.766 INFO:teuthology.orchestra.run.smithi037.stderr:tar: /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-04-02T07:00:30.767 INFO:teuthology.orchestra.run.smithi037.stderr:tar: Error is not recoverable: exiting now 2024-04-02T07:00:30.768 DEBUG:teuthology.misc:Transferring archived files from smithi052:/var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990/remote/smithi052/crash 2024-04-02T07:00:30.769 DEBUG:teuthology.orchestra.run.smithi052:> sudo tar c -f - -C /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/crash -- . 2024-04-02T07:00:30.780 INFO:teuthology.orchestra.run.smithi052.stderr:tar: /var/lib/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-04-02T07:00:30.780 INFO:teuthology.orchestra.run.smithi052.stderr:tar: Error is not recoverable: exiting now 2024-04-02T07:00:30.781 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-02T07:00:30.782 DEBUG:teuthology.orchestra.run.smithi037:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-02T07:00:30.821 INFO:teuthology.orchestra.run.smithi037.stdout:2024-04-02T06:51:00.660072+0000 mon.smithi037 (mon.0) 271 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-04-02T07:00:30.822 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-04-02T07:00:30.822 DEBUG:teuthology.orchestra.run.smithi037:> sudo egrep '\[SEC\]' /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-02T07:00:30.877 DEBUG:teuthology.orchestra.run.smithi037:> sudo egrep '\[ERR\]' /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-02T07:00:30.933 DEBUG:teuthology.orchestra.run.smithi037:> sudo egrep '\[WRN\]' /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-02T07:00:30.992 INFO:teuthology.orchestra.run.smithi037.stdout:2024-04-02T06:51:00.660072+0000 mon.smithi037 (mon.0) 271 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-04-02T07:00:30.992 INFO:tasks.cephadm:Compressing logs... 2024-04-02T07:00:30.992 DEBUG:teuthology.orchestra.run.smithi037:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-02T07:00:31.041 DEBUG:teuthology.orchestra.run.smithi052:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-02T07:00:31.051 INFO:teuthology.orchestra.run.smithi037.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-02T07:00:31.053 INFO:teuthology.orchestra.run.smithi052.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-02T07:00:31.060 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-02T07:00:31.060 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.7.log 2024-04-02T07:00:31.061 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.cephadm.log 2024-04-02T07:00:31.062 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.3.log 2024-04-02T07:00:31.062 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.5.log 2024-04-02T07:00:31.063 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-02T07:00:31.063 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.0.log 2024-04-02T07:00:31.063 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mgr.smithi052.hwhbeq.log 2024-04-02T07:00:31.063 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.2.log 2024-04-02T07:00:31.063 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.6.log 2024-04-02T07:00:31.069 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.2.log: /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mgr.smithi052.hwhbeq.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.cephadm.log 2024-04-02T07:00:31.069 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mon.smithi052.log 2024-04-02T07:00:31.069 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.log 2024-04-02T07:00:31.070 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mon.smithi052.log: /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.rgw.foorgw.smithi052.ytmeom.log 2024-04-02T07:00:31.070 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.log: 90.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-02T07:00:31.070 INFO:teuthology.orchestra.run.smithi052.stderr: 83.4% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.cephadm.log.gz 2024-04-02T07:00:31.070 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-volume.log 2024-04-02T07:00:31.070 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.rgw.foorgw.smithi052.ytmeom.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.audit.log 2024-04-02T07:00:31.070 INFO:teuthology.orchestra.run.smithi052.stderr: 64.7% 87.1% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.log.gz 2024-04-02T07:00:31.070 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-volume.log: -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.rgw.foorgw.smithi052.ytmeom.log.gz 2024-04-02T07:00:31.070 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.4.log 2024-04-02T07:00:31.070 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.ceph-exporter.smithi052.log 2024-04-02T07:00:31.071 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.cephadm.log: /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ops-log-ceph-client.rgw.foorgw.smithi037.tbjgok.log 2024-04-02T07:00:31.071 INFO:teuthology.orchestra.run.smithi037.stderr:gzip/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.5.log: -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.1.log 2024-04-02T07:00:31.071 INFO:teuthology.orchestra.run.smithi037.stderr: 83.5% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.cephadm.log.gz 2024-04-02T07:00:31.071 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ops-log-ceph-client.rgw.foorgw.smithi037.tbjgok.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.rgw.foorgw.smithi037.tbjgok.log 2024-04-02T07:00:31.071 INFO:teuthology.orchestra.run.smithi037.stderr: 76.7% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ops-log-ceph-client.rgw.foorgw.smithi037.tbjgok.log.gz 2024-04-02T07:00:31.071 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.log 2024-04-02T07:00:31.072 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.rgw.foorgw.smithi037.tbjgok.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-volume.log 2024-04-02T07:00:31.072 INFO:teuthology.orchestra.run.smithi037.stderr: 68.8% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.rgw.foorgw.smithi037.tbjgok.log.gz/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.log: 2024-04-02T07:00:31.072 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.audit.log 2024-04-02T07:00:31.072 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.ceph-exporter.smithi037.log 2024-04-02T07:00:31.072 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.audit.log: 87.3% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.log.gz 2024-04-02T07:00:31.072 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mgr.smithi037.yymbdj.log 2024-04-02T07:00:31.072 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.ceph-exporter.smithi037.log: 94.1% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.ceph-exporter.smithi037.log.gz 2024-04-02T07:00:31.072 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mon.smithi037.log 2024-04-02T07:00:31.072 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mgr.smithi037.yymbdj.log: 91.0% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.audit.log.gz 2024-04-02T07:00:31.073 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.4.log: 91.3% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph.audit.log.gz 2024-04-02T07:00:31.073 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.ceph-exporter.smithi052.log: 94.4% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-client.ceph-exporter.smithi052.log.gz 2024-04-02T07:00:31.073 INFO:teuthology.orchestra.run.smithi052.stderr: 92.2% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mgr.smithi052.hwhbeq.log.gz 2024-04-02T07:00:31.080 INFO:teuthology.orchestra.run.smithi052.stderr: 91.2% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-volume.log.gz 2024-04-02T07:00:31.080 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mon.smithi037.log: 91.1% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-volume.log.gz 2024-04-02T07:00:31.099 INFO:teuthology.orchestra.run.smithi037.stderr: 91.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-02T07:00:31.214 INFO:teuthology.orchestra.run.smithi052.stderr: 92.9% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mon.smithi052.log.gz 2024-04-02T07:00:31.277 INFO:teuthology.orchestra.run.smithi037.stderr: 89.3% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mgr.smithi037.yymbdj.log.gz 2024-04-02T07:00:31.377 INFO:teuthology.orchestra.run.smithi052.stderr: 93.2% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.2.log.gz 2024-04-02T07:00:31.413 INFO:teuthology.orchestra.run.smithi037.stderr: 93.4% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.5.log.gz 2024-04-02T07:00:31.416 INFO:teuthology.orchestra.run.smithi052.stderr: 93.2% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.6.log.gz 2024-04-02T07:00:31.423 INFO:teuthology.orchestra.run.smithi052.stderr: 93.4% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.4.log.gz 2024-04-02T07:00:31.453 INFO:teuthology.orchestra.run.smithi037.stderr: 93.5% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.7.log.gz 2024-04-02T07:00:31.459 INFO:teuthology.orchestra.run.smithi037.stderr: 93.6% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.3.log.gz 2024-04-02T07:00:31.492 INFO:teuthology.orchestra.run.smithi052.stderr: 93.4% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.0.log.gz 2024-04-02T07:00:31.493 INFO:teuthology.orchestra.run.smithi052.stderr: 2024-04-02T07:00:31.493 INFO:teuthology.orchestra.run.smithi052.stderr:real 0m0.449s 2024-04-02T07:00:31.493 INFO:teuthology.orchestra.run.smithi052.stderr:user 0m1.601s 2024-04-02T07:00:31.493 INFO:teuthology.orchestra.run.smithi052.stderr:sys 0m0.059s 2024-04-02T07:00:31.514 INFO:teuthology.orchestra.run.smithi037.stderr: 91.3% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-mon.smithi037.log.gz 2024-04-02T07:00:31.528 INFO:teuthology.orchestra.run.smithi037.stderr: 93.6% -- replaced with /var/log/ceph/aad02026-f0bc-11ee-b647-cb9ed24678a4/ceph-osd.1.log.gz 2024-04-02T07:00:31.529 INFO:teuthology.orchestra.run.smithi037.stderr: 2024-04-02T07:00:31.529 INFO:teuthology.orchestra.run.smithi037.stderr:real 0m0.486s 2024-04-02T07:00:31.529 INFO:teuthology.orchestra.run.smithi037.stderr:user 0m2.251s 2024-04-02T07:00:31.529 INFO:teuthology.orchestra.run.smithi037.stderr:sys 0m0.092s 2024-04-02T07:00:31.530 INFO:tasks.cephadm:Archiving logs... 2024-04-02T07:00:31.530 DEBUG:teuthology.misc:Transferring archived files from smithi037:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990/remote/smithi037/log 2024-04-02T07:00:31.531 DEBUG:teuthology.orchestra.run.smithi037:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-02T07:00:31.833 DEBUG:teuthology.misc:Transferring archived files from smithi052:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990/remote/smithi052/log 2024-04-02T07:00:31.834 DEBUG:teuthology.orchestra.run.smithi052:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-02T07:00:32.067 INFO:tasks.cephadm:Removing cluster... 2024-04-02T07:00:32.067 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 --force 2024-04-02T07:00:32.236 INFO:teuthology.orchestra.run.smithi037.stdout:Deleting cluster with fsid: aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T07:00:33.367 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid aad02026-f0bc-11ee-b647-cb9ed24678a4 --force 2024-04-02T07:00:33.538 INFO:teuthology.orchestra.run.smithi052.stdout:Deleting cluster with fsid: aad02026-f0bc-11ee-b647-cb9ed24678a4 2024-04-02T07:00:34.662 INFO:tasks.cephadm:Removing cephadm ... 2024-04-02T07:00:34.662 DEBUG:teuthology.orchestra.run.smithi037:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-02T07:00:34.669 DEBUG:teuthology.orchestra.run.smithi052:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-02T07:00:34.675 INFO:tasks.cephadm:Teardown complete 2024-04-02T07:00:34.675 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-04-02T07:00:34.693 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi037:/dev/vg_nvme/lv_1... 2024-04-02T07:00:34.693 DEBUG:teuthology.orchestra.run.smithi037:> sudo nvme disconnect -n lv_1 2024-04-02T07:00:34.979 INFO:teuthology.orchestra.run.smithi037.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-02T07:00:34.981 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T07:00:34.981 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi037:/dev/vg_nvme/lv_2... 2024-04-02T07:00:34.982 DEBUG:teuthology.orchestra.run.smithi037:> sudo nvme disconnect -n lv_2 2024-04-02T07:00:35.267 INFO:teuthology.orchestra.run.smithi037.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-02T07:00:35.269 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T07:00:35.269 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi037:/dev/vg_nvme/lv_3... 2024-04-02T07:00:35.269 DEBUG:teuthology.orchestra.run.smithi037:> sudo nvme disconnect -n lv_3 2024-04-02T07:00:35.547 INFO:teuthology.orchestra.run.smithi037.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-02T07:00:35.549 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T07:00:35.549 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi037:/dev/vg_nvme/lv_4... 2024-04-02T07:00:35.549 DEBUG:teuthology.orchestra.run.smithi037:> sudo nvme disconnect -n lv_4 2024-04-02T07:00:35.823 INFO:teuthology.orchestra.run.smithi037.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-02T07:00:35.825 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T07:00:35.826 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-02T07:00:35.826 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/scratch_devs 2024-04-02T07:00:35.840 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi052:/dev/vg_nvme/lv_1... 2024-04-02T07:00:35.840 DEBUG:teuthology.orchestra.run.smithi052:> sudo nvme disconnect -n lv_1 2024-04-02T07:00:36.122 INFO:teuthology.orchestra.run.smithi052.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-02T07:00:36.123 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T07:00:36.124 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi052:/dev/vg_nvme/lv_2... 2024-04-02T07:00:36.124 DEBUG:teuthology.orchestra.run.smithi052:> sudo nvme disconnect -n lv_2 2024-04-02T07:00:36.370 INFO:teuthology.orchestra.run.smithi052.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-02T07:00:36.371 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T07:00:36.371 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi052:/dev/vg_nvme/lv_3... 2024-04-02T07:00:36.372 DEBUG:teuthology.orchestra.run.smithi052:> sudo nvme disconnect -n lv_3 2024-04-02T07:00:36.650 INFO:teuthology.orchestra.run.smithi052.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-02T07:00:36.652 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T07:00:36.652 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi052:/dev/vg_nvme/lv_4... 2024-04-02T07:00:36.653 DEBUG:teuthology.orchestra.run.smithi052:> sudo nvme disconnect -n lv_4 2024-04-02T07:00:36.938 INFO:teuthology.orchestra.run.smithi052.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-02T07:00:36.938 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T07:00:36.939 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-04-02T07:00:36.939 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/scratch_devs 2024-04-02T07:00:36.954 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-02T07:00:36.966 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-02T07:00:36.966 DEBUG:teuthology.orchestra.run.smithi037:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-02T07:00:36.969 DEBUG:teuthology.orchestra.run.smithi052:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-02T07:00:36.981 INFO:teuthology.orchestra.run.smithi037.stdout: remote refid st t when poll reach delay offset jitter 2024-04-02T07:00:36.981 INFO:teuthology.orchestra.run.smithi037.stdout:============================================================================== 2024-04-02T07:00:36.981 INFO:teuthology.orchestra.run.smithi037.stdout:*hv01.front.sepi 44.4.53.2 2 u 31 64 377 0.068 -1.776 0.811 2024-04-02T07:00:36.981 INFO:teuthology.orchestra.run.smithi037.stdout:+hv02.front.sepi 63.231.80.2 3 u 20 64 377 0.077 +1.133 1.559 2024-04-02T07:00:36.981 INFO:teuthology.orchestra.run.smithi037.stdout:+hv03.front.sepi 74.6.168.72 3 u 24 64 377 0.089 +0.309 1.537 2024-04-02T07:00:36.981 INFO:teuthology.orchestra.run.smithi037.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-02T07:00:37.009 INFO:teuthology.orchestra.run.smithi052.stdout: remote refid st t when poll reach delay offset jitter 2024-04-02T07:00:37.009 INFO:teuthology.orchestra.run.smithi052.stdout:============================================================================== 2024-04-02T07:00:37.009 INFO:teuthology.orchestra.run.smithi052.stdout:*hv01.front.sepi 44.4.53.2 2 u 22 64 377 0.103 -1.592 0.677 2024-04-02T07:00:37.009 INFO:teuthology.orchestra.run.smithi052.stdout:+hv02.front.sepi 63.231.80.2 3 u 26 64 377 0.080 -0.546 0.378 2024-04-02T07:00:37.009 INFO:teuthology.orchestra.run.smithi052.stdout:+hv03.front.sepi 74.6.168.72 3 u 28 64 377 0.082 -1.760 0.527 2024-04-02T07:00:37.009 INFO:teuthology.orchestra.run.smithi052.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-02T07:00:37.010 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-02T07:00:37.028 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-02T07:00:37.029 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-02T07:00:37.087 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-02T07:00:37.158 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-02T07:00:37.188 INFO:teuthology.task.internal:Duration was 1317.840248 seconds 2024-04-02T07:00:37.188 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-02T07:00:37.201 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-02T07:00:37.201 DEBUG:teuthology.orchestra.run.smithi037:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-02T07:00:37.204 DEBUG:teuthology.orchestra.run.smithi052:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-02T07:00:37.243 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-02T07:00:37.243 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi037.front.sepia.ceph.com 2024-04-02T07:00:37.244 DEBUG:teuthology.orchestra.run.smithi037:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-02T07:00:37.297 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi052.front.sepia.ceph.com 2024-04-02T07:00:37.297 DEBUG:teuthology.orchestra.run.smithi052:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-02T07:00:37.308 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-02T07:00:37.308 DEBUG:teuthology.orchestra.run.smithi037:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-02T07:00:37.340 DEBUG:teuthology.orchestra.run.smithi052:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-02T07:00:37.386 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-02T07:00:37.386 DEBUG:teuthology.orchestra.run.smithi037:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-02T07:00:37.388 DEBUG:teuthology.orchestra.run.smithi052:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-02T07:00:37.519 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-02T07:00:37.531 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-02T07:00:37.531 DEBUG:teuthology.orchestra.run.smithi037:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-02T07:00:37.543 DEBUG:teuthology.orchestra.run.smithi052:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-02T07:00:37.555 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-02T07:00:37.580 DEBUG:teuthology.orchestra.run.smithi037:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-02T07:00:37.589 DEBUG:teuthology.orchestra.run.smithi052:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-02T07:00:37.595 INFO:teuthology.orchestra.run.smithi037.stdout:kernel.core_pattern = core 2024-04-02T07:00:37.608 INFO:teuthology.orchestra.run.smithi052.stdout:kernel.core_pattern = core 2024-04-02T07:00:37.632 DEBUG:teuthology.orchestra.run.smithi037:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-02T07:00:37.658 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T07:00:37.659 DEBUG:teuthology.orchestra.run.smithi052:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-02T07:00:37.677 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-02T07:00:37.677 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-02T07:00:37.689 INFO:teuthology.task.internal:Transferring archived files... 2024-04-02T07:00:37.690 DEBUG:teuthology.misc:Transferring archived files from smithi037:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990/remote/smithi037 2024-04-02T07:00:37.690 DEBUG:teuthology.orchestra.run.smithi037:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-02T07:00:37.725 DEBUG:teuthology.misc:Transferring archived files from smithi052:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990/remote/smithi052 2024-04-02T07:00:37.725 DEBUG:teuthology.orchestra.run.smithi052:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-02T07:00:37.750 INFO:teuthology.task.internal:Removing archive directory... 2024-04-02T07:00:37.750 DEBUG:teuthology.orchestra.run.smithi037:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-02T07:00:37.768 DEBUG:teuthology.orchestra.run.smithi052:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-02T07:00:37.794 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-02T07:00:37.806 INFO:teuthology.task.internal:Not uploading archives. 2024-04-02T07:00:37.806 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-02T07:00:37.818 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-02T07:00:37.818 DEBUG:teuthology.orchestra.run.smithi037:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-02T07:00:37.820 DEBUG:teuthology.orchestra.run.smithi052:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-02T07:00:37.824 INFO:teuthology.orchestra.run.smithi037.stdout: 658643 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 2 07:00 /home/ubuntu/cephtest 2024-04-02T07:00:37.843 INFO:teuthology.orchestra.run.smithi052.stdout: 658625 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 2 07:00 /home/ubuntu/cephtest 2024-04-02T07:00:37.844 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-02T07:00:37.864 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-02T07:00:37.915 INFO:teuthology.nuke:Checking targets against current locks 2024-04-02T07:00:37.942 DEBUG:teuthology.nuke:shortname: smithi037 2024-04-02T07:00:37.943 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-02T07:00:37.965 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi037.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-02 06:29:55.894956', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKsErhbvX5bPn96KfEGQDrjC/pmWaLul97+Q5i871aQ+me//apNn20mwENM6aHbX9JdqmOO4p3dKcwE9bZBV1LI='} 2024-04-02T07:00:37.969 DEBUG:teuthology.nuke:shortname: smithi052 2024-04-02T07:00:37.969 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-02T07:00:37.995 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi052.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_21:08:08-orch-squid-distro-default-smithi/7634990', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-02 06:29:55.896097', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLs1MrrrNvcTBkFNc9knwOPrsSci4C9Wg/jMbE7xxaj1t9hNT6QDf3yX/D/JUKHdz6JwbuvdIjwLnJiDuGcAQzQ='} 2024-04-02T07:00:38.023 INFO:teuthology.orchestra.console.smithi037:Power off 2024-04-02T07:00:38.023 DEBUG:teuthology.orchestra.console.smithi037:pexpect command: ipmitool -H smithi037.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-02T07:00:38.047 DEBUG:teuthology.orchestra.console.smithi037:power off output: Chassis Power Control: Down/Off 2024-04-02T07:00:38.047 DEBUG:teuthology.orchestra.console.smithi037:pexpect command: ipmitool -H smithi037.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-02T07:00:38.068 INFO:teuthology.orchestra.console.smithi052:Power off 2024-04-02T07:00:38.068 DEBUG:teuthology.orchestra.console.smithi052:pexpect command: ipmitool -H smithi052.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-02T07:00:38.079 DEBUG:teuthology.orchestra.console.smithi037:check power output: Chassis Power is on 2024-04-02T07:00:38.093 DEBUG:teuthology.orchestra.console.smithi052:power off output: Chassis Power Control: Down/Off 2024-04-02T07:00:38.093 DEBUG:teuthology.orchestra.console.smithi052:pexpect command: ipmitool -H smithi052.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-02T07:00:38.117 DEBUG:teuthology.orchestra.console.smithi052:check power output: Chassis Power is on 2024-04-02T07:00:42.080 DEBUG:teuthology.orchestra.console.smithi037:pexpect command: ipmitool -H smithi037.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-02T07:00:42.118 DEBUG:teuthology.orchestra.console.smithi052:pexpect command: ipmitool -H smithi052.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-02T07:00:42.191 DEBUG:teuthology.orchestra.console.smithi037:check power output: Chassis Power is on 2024-04-02T07:00:42.227 DEBUG:teuthology.orchestra.console.smithi052:check power output: Chassis Power is on 2024-04-02T07:00:46.194 DEBUG:teuthology.orchestra.console.smithi037:pexpect command: ipmitool -H smithi037.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-02T07:00:46.228 DEBUG:teuthology.orchestra.console.smithi052:pexpect command: ipmitool -H smithi052.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-02T07:00:46.304 DEBUG:teuthology.orchestra.console.smithi037:check power output: Chassis Power is on 2024-04-02T07:00:46.338 DEBUG:teuthology.orchestra.console.smithi052:check power output: Chassis Power is on 2024-04-02T07:00:50.306 DEBUG:teuthology.orchestra.console.smithi037:pexpect command: ipmitool -H smithi037.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-02T07:00:50.339 DEBUG:teuthology.orchestra.console.smithi052:pexpect command: ipmitool -H smithi052.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-02T07:00:50.416 DEBUG:teuthology.orchestra.console.smithi037:check power output: Chassis Power is off 2024-04-02T07:00:50.449 DEBUG:teuthology.orchestra.console.smithi052:check power output: Chassis Power is off 2024-04-02T07:00:50.518 INFO:teuthology.orchestra.console.smithi037:Power off completed 2024-04-02T07:00:50.550 INFO:teuthology.orchestra.console.smithi052:Power off completed 2024-04-02T07:00:50.655 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: 1317.8402478694916 failure_reason: '"2024-04-02T06:51:00.660072+0000 mon.smithi037 (mon.0) 271 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s)" in cluster log' owner: scheduled_teuthology@teuthology success: false 2024-04-02T07:00:50.655 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-02T07:00:50.739 INFO:teuthology.run:FAIL