2024-09-06T13:54:17.282 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-06T13:54:17.299 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-06T13:54:17.388 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892289 branch: wip-athakkar-testing-2024-09-04-1837 description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: adking@redhat.com first_in_suite: false job_id: '7892289' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: wip-athakkar-testing-2024-09-04-1837 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\) - CEPHADM_DAEMON_PLACE_FAIL - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 workunit: branch: wip-athakkar-testing-2024-09-04-1837 sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 owner: scheduled_adking@teuthology priority: 80 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 9103 sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 sleep_before_teardown: 0 subset: 1/20 suite: orch:cephadm suite_branch: wip-athakkar-testing-2024-09-04-1837 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 targets: smithi052.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBG3B/dKZTpolLdcFa1BykAFZI8p4L6e1L0c7Ay7OaEqTzcurR9K3svKaRZYOGMYs7S6h8d6fN0SF8pbrfYrWj4Q= smithi148.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBE9qrR5Ab4LM/vYCKXPVqSTqRu/yqO7y2cwROqtMZNQ3YM4viov2/VOCpj0j/3w/6RI+Gk5ExUuNGqTQhqrOQXE= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-06_13:43:09 tube: smithi user: adking verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-06T13:54:17.388 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa; will attempt to use it 2024-09-06T13:54:17.389 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks 2024-09-06T13:54:17.389 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-06T13:54:17.391 INFO:teuthology.task.internal:Checking packages... 2024-09-06T13:54:17.413 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '8b38c33cecf4b0b7a9b3116eb9089e21e444ac73' 2024-09-06T13:54:17.413 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-06T13:54:17.413 INFO:teuthology.packaging:ref: None 2024-09-06T13:54:17.413 INFO:teuthology.packaging:tag: None 2024-09-06T13:54:17.413 INFO:teuthology.packaging:branch: wip-athakkar-testing-2024-09-04-1837 2024-09-06T13:54:17.413 INFO:teuthology.packaging:sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T13:54:17.413 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-athakkar-testing-2024-09-04-1837 2024-09-06T13:54:17.567 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-4704-g8b38c33c-1jammy 2024-09-06T13:54:17.569 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-06T13:54:17.578 INFO:teuthology.task.internal:no buildpackages task found 2024-09-06T13:54:17.579 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-06T13:54:17.616 INFO:teuthology.task.internal:Saving configuration 2024-09-06T13:54:17.629 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-06T13:54:17.641 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-06T13:54:17.668 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi052.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892289', '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-09-06 13:48:25.176490', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA0t/0u1c8LdSv6Nmpn0DiotgrJy+9RGzvNfgU68/NhD'} 2024-09-06T13:54:17.696 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi148.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892289', '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-09-06 13:48:25.177841', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAoKF34vgcu80XCNUd/7fFanjmV3A75Vo3Fjh6dryEGh'} 2024-09-06T13:54:17.696 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-06T13:54:17.702 INFO:teuthology.task.internal:roles: ubuntu@smithi052.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-06T13:54:17.702 INFO:teuthology.task.internal:roles: ubuntu@smithi148.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-06T13:54:17.702 INFO:teuthology.run_tasks:Running task console_log... 2024-09-06T13:54:17.795 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fc9a9277ac0>, signals=[15]) 2024-09-06T13:54:17.795 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-06T13:54:17.801 INFO:teuthology.task.internal:Opening connections... 2024-09-06T13:54:17.801 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi052.front.sepia.ceph.com 2024-09-06T13:54:17.803 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi052.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T13:54:17.891 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi148.front.sepia.ceph.com 2024-09-06T13:54:17.892 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi148.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T13:54:17.980 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-06T13:54:17.987 DEBUG:teuthology.orchestra.run.smithi052:> uname -m 2024-09-06T13:54:17.992 INFO:teuthology.orchestra.run.smithi052.stdout:x86_64 2024-09-06T13:54:17.993 DEBUG:teuthology.orchestra.run.smithi052:> cat /etc/os-release 2024-09-06T13:54:18.039 INFO:teuthology.orchestra.run.smithi052.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:NAME="Ubuntu" 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:VERSION_ID="22.04" 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:VERSION_CODENAME=jammy 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:ID=ubuntu 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:ID_LIKE=debian 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-06T13:54:18.040 INFO:teuthology.orchestra.run.smithi052.stdout:UBUNTU_CODENAME=jammy 2024-09-06T13:54:18.041 INFO:teuthology.lock.ops:Updating smithi052.front.sepia.ceph.com on lock server 2024-09-06T13:54:18.064 DEBUG:teuthology.orchestra.run.smithi148:> uname -m 2024-09-06T13:54:18.068 INFO:teuthology.orchestra.run.smithi148.stdout:x86_64 2024-09-06T13:54:18.069 DEBUG:teuthology.orchestra.run.smithi148:> cat /etc/os-release 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:NAME="Ubuntu" 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:VERSION_ID="22.04" 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:VERSION_CODENAME=jammy 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:ID=ubuntu 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:ID_LIKE=debian 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-06T13:54:18.120 INFO:teuthology.orchestra.run.smithi148.stdout:UBUNTU_CODENAME=jammy 2024-09-06T13:54:18.121 INFO:teuthology.lock.ops:Updating smithi148.front.sepia.ceph.com on lock server 2024-09-06T13:54:18.147 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-06T13:54:18.159 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-06T13:54:18.182 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-06T13:54:18.182 DEBUG:teuthology.orchestra.run.smithi052:> test '!' -e /home/ubuntu/cephtest 2024-09-06T13:54:18.184 DEBUG:teuthology.orchestra.run.smithi148:> test '!' -e /home/ubuntu/cephtest 2024-09-06T13:54:18.189 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-06T13:54:18.208 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-06T13:54:18.208 DEBUG:teuthology.orchestra.run.smithi052:> test -z $(ls -A /var/lib/ceph) 2024-09-06T13:54:18.233 DEBUG:teuthology.orchestra.run.smithi148:> test -z $(ls -A /var/lib/ceph) 2024-09-06T13:54:18.247 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-06T13:54:18.302 INFO:teuthology.run_tasks:Running task kernel... 2024-09-06T13:54:18.316 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-06T13:54:18.317 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-06T13:54:18.317 DEBUG:teuthology.orchestra.run.smithi052:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-06T13:54:18.318 DEBUG:teuthology.orchestra.run.smithi148:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-06T13:54:18.322 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T13:54:18.322 DEBUG:teuthology.orchestra.run.smithi148:> uname -r 2024-09-06T13:54:18.323 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T13:54:18.323 DEBUG:teuthology.orchestra.run.smithi052:> uname -r 2024-09-06T13:54:18.369 INFO:teuthology.orchestra.run.smithi148.stdout:5.15.0-56-generic 2024-09-06T13:54:18.369 INFO:teuthology.task.kernel:Running kernel on smithi148: 5.15.0-56-generic 2024-09-06T13:54:18.369 DEBUG:teuthology.orchestra.run.smithi148:> sudo apt-get clean 2024-09-06T13:54:18.372 INFO:teuthology.orchestra.run.smithi052.stdout:5.15.0-56-generic 2024-09-06T13:54:18.372 INFO:teuthology.task.kernel:Running kernel on smithi052: 5.15.0-56-generic 2024-09-06T13:54:18.372 DEBUG:teuthology.orchestra.run.smithi052:> sudo apt-get clean 2024-09-06T13:54:18.492 DEBUG:teuthology.orchestra.run.smithi148:> sudo apt-get update 2024-09-06T13:54:18.506 DEBUG:teuthology.orchestra.run.smithi052:> sudo apt-get update 2024-09-06T13:54:18.637 INFO:teuthology.orchestra.run.smithi052.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-06T13:54:18.659 INFO:teuthology.orchestra.run.smithi052.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-06T13:54:18.721 INFO:teuthology.orchestra.run.smithi052.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-06T13:54:18.756 INFO:teuthology.orchestra.run.smithi052.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-06T13:54:18.768 INFO:teuthology.orchestra.run.smithi148.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-06T13:54:18.768 INFO:teuthology.orchestra.run.smithi148.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-06T13:54:18.833 INFO:teuthology.orchestra.run.smithi148.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-06T13:54:18.874 INFO:teuthology.orchestra.run.smithi052.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [690 kB] 2024-09-06T13:54:18.943 INFO:teuthology.orchestra.run.smithi052.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,988 kB] 2024-09-06T13:54:18.978 INFO:teuthology.orchestra.run.smithi052.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [349 kB] 2024-09-06T13:54:18.983 INFO:teuthology.orchestra.run.smithi052.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-06T13:54:18.983 INFO:teuthology.orchestra.run.smithi052.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-06T13:54:18.984 INFO:teuthology.orchestra.run.smithi052.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,386 kB] 2024-09-06T13:54:19.011 INFO:teuthology.orchestra.run.smithi052.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [410 kB] 2024-09-06T13:54:19.014 INFO:teuthology.orchestra.run.smithi052.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-06T13:54:19.014 INFO:teuthology.orchestra.run.smithi052.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,123 kB] 2024-09-06T13:54:19.022 INFO:teuthology.orchestra.run.smithi052.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [731 kB] 2024-09-06T13:54:19.027 INFO:teuthology.orchestra.run.smithi052.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-06T13:54:19.029 INFO:teuthology.orchestra.run.smithi052.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-06T13:54:19.029 INFO:teuthology.orchestra.run.smithi052.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-06T13:54:19.044 INFO:teuthology.orchestra.run.smithi052.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-06T13:54:19.044 INFO:teuthology.orchestra.run.smithi052.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-06T13:54:19.045 INFO:teuthology.orchestra.run.smithi052.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-06T13:54:19.045 INFO:teuthology.orchestra.run.smithi052.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-06T13:54:19.045 INFO:teuthology.orchestra.run.smithi052.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-06T13:54:19.050 INFO:teuthology.orchestra.run.smithi052.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-06T13:54:19.051 INFO:teuthology.orchestra.run.smithi052.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-06T13:54:19.051 INFO:teuthology.orchestra.run.smithi052.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-06T13:54:19.067 INFO:teuthology.orchestra.run.smithi052.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-06T13:54:19.068 INFO:teuthology.orchestra.run.smithi052.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-06T13:54:19.068 INFO:teuthology.orchestra.run.smithi052.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-06T13:54:19.189 INFO:teuthology.orchestra.run.smithi148.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-06T13:54:19.201 INFO:teuthology.orchestra.run.smithi052.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,771 kB] 2024-09-06T13:54:19.206 INFO:teuthology.orchestra.run.smithi148.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,771 kB] 2024-09-06T13:54:19.328 INFO:teuthology.orchestra.run.smithi148.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [690 kB] 2024-09-06T13:54:19.532 INFO:teuthology.orchestra.run.smithi148.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,988 kB] 2024-09-06T13:54:19.621 INFO:teuthology.orchestra.run.smithi052.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [533 kB] 2024-09-06T13:54:19.625 INFO:teuthology.orchestra.run.smithi148.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [533 kB] 2024-09-06T13:54:19.637 INFO:teuthology.orchestra.run.smithi052.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [291 kB] 2024-09-06T13:54:19.641 INFO:teuthology.orchestra.run.smithi148.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [291 kB] 2024-09-06T13:54:19.646 INFO:teuthology.orchestra.run.smithi052.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-06T13:54:19.647 INFO:teuthology.orchestra.run.smithi052.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-06T13:54:19.648 INFO:teuthology.orchestra.run.smithi052.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,327 kB] 2024-09-06T13:54:19.650 INFO:teuthology.orchestra.run.smithi148.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-06T13:54:19.651 INFO:teuthology.orchestra.run.smithi148.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,327 kB] 2024-09-06T13:54:19.681 INFO:teuthology.orchestra.run.smithi148.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [349 kB] 2024-09-06T13:54:19.694 INFO:teuthology.orchestra.run.smithi148.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-06T13:54:19.695 INFO:teuthology.orchestra.run.smithi148.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-06T13:54:19.696 INFO:teuthology.orchestra.run.smithi148.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,386 kB] 2024-09-06T13:54:19.744 INFO:teuthology.orchestra.run.smithi052.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [400 kB] 2024-09-06T13:54:19.746 INFO:teuthology.orchestra.run.smithi148.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-06T13:54:19.748 INFO:teuthology.orchestra.run.smithi148.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [400 kB] 2024-09-06T13:54:19.755 INFO:teuthology.orchestra.run.smithi052.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-06T13:54:19.755 INFO:teuthology.orchestra.run.smithi052.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [901 kB] 2024-09-06T13:54:19.778 INFO:teuthology.orchestra.run.smithi148.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [410 kB] 2024-09-06T13:54:19.778 INFO:teuthology.orchestra.run.smithi148.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-06T13:54:19.778 INFO:teuthology.orchestra.run.smithi148.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [901 kB] 2024-09-06T13:54:19.778 INFO:teuthology.orchestra.run.smithi052.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-06T13:54:19.782 INFO:teuthology.orchestra.run.smithi148.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-06T13:54:19.782 INFO:teuthology.orchestra.run.smithi148.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [731 kB] 2024-09-06T13:54:19.790 INFO:teuthology.orchestra.run.smithi148.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-06T13:54:19.799 INFO:teuthology.orchestra.run.smithi148.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-06T13:54:19.800 INFO:teuthology.orchestra.run.smithi052.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-06T13:54:19.801 INFO:teuthology.orchestra.run.smithi148.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,123 kB] 2024-09-06T13:54:19.803 INFO:teuthology.orchestra.run.smithi052.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-06T13:54:19.806 INFO:teuthology.orchestra.run.smithi148.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-06T13:54:19.806 INFO:teuthology.orchestra.run.smithi052.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-06T13:54:19.807 INFO:teuthology.orchestra.run.smithi148.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-06T13:54:19.807 INFO:teuthology.orchestra.run.smithi148.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-06T13:54:19.807 INFO:teuthology.orchestra.run.smithi052.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-06T13:54:19.807 INFO:teuthology.orchestra.run.smithi052.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-06T13:54:19.830 INFO:teuthology.orchestra.run.smithi148.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-06T13:54:19.836 INFO:teuthology.orchestra.run.smithi148.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-06T13:54:19.846 INFO:teuthology.orchestra.run.smithi148.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-06T13:54:19.847 INFO:teuthology.orchestra.run.smithi148.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-06T13:54:19.848 INFO:teuthology.orchestra.run.smithi148.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-06T13:54:19.887 INFO:teuthology.orchestra.run.smithi052.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-06T13:54:19.888 INFO:teuthology.orchestra.run.smithi148.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-06T13:54:19.888 INFO:teuthology.orchestra.run.smithi148.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-06T13:54:19.918 INFO:teuthology.orchestra.run.smithi148.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-06T13:54:19.919 INFO:teuthology.orchestra.run.smithi148.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-06T13:54:19.920 INFO:teuthology.orchestra.run.smithi148.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-06T13:54:19.921 INFO:teuthology.orchestra.run.smithi148.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-06T13:54:19.921 INFO:teuthology.orchestra.run.smithi148.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-06T13:54:19.927 INFO:teuthology.orchestra.run.smithi148.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-06T13:54:19.928 INFO:teuthology.orchestra.run.smithi148.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-06T13:54:20.009 INFO:teuthology.orchestra.run.smithi148.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-06T13:54:20.010 INFO:teuthology.orchestra.run.smithi148.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-06T13:54:25.478 INFO:teuthology.orchestra.run.smithi052.stdout:Fetched 15.8 MB in 2s (7,223 kB/s) 2024-09-06T13:54:25.811 INFO:teuthology.orchestra.run.smithi148.stdout:Fetched 15.8 MB in 3s (5,839 kB/s) 2024-09-06T13:54:26.956 INFO:teuthology.orchestra.run.smithi052.stdout:Reading package lists... 2024-09-06T13:54:26.974 DEBUG:teuthology.orchestra.run.smithi052:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-06T13:54:27.041 INFO:teuthology.orchestra.run.smithi052.stdout:Reading package lists... 2024-09-06T13:54:27.254 INFO:teuthology.orchestra.run.smithi052.stdout:Building dependency tree... 2024-09-06T13:54:27.255 INFO:teuthology.orchestra.run.smithi052.stdout:Reading state information... 2024-09-06T13:54:27.294 INFO:teuthology.orchestra.run.smithi148.stdout:Reading package lists... 2024-09-06T13:54:27.313 DEBUG:teuthology.orchestra.run.smithi148:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-06T13:54:27.378 INFO:teuthology.orchestra.run.smithi148.stdout:Reading package lists... 2024-09-06T13:54:27.442 INFO:teuthology.orchestra.run.smithi052.stdout:The following packages were automatically installed and are no longer required: 2024-09-06T13:54:27.443 INFO:teuthology.orchestra.run.smithi052.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-06T13:54:27.443 INFO:teuthology.orchestra.run.smithi052.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-06T13:54:27.443 INFO:teuthology.orchestra.run.smithi052.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-06T13:54:27.443 INFO:teuthology.orchestra.run.smithi052.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-06T13:54:27.443 INFO:teuthology.orchestra.run.smithi052.stdout: python2.7-minimal 2024-09-06T13:54:27.443 INFO:teuthology.orchestra.run.smithi052.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-06T13:54:27.444 INFO:teuthology.orchestra.run.smithi052.stdout:The following additional packages will be installed: 2024-09-06T13:54:27.444 INFO:teuthology.orchestra.run.smithi052.stdout: linux-generic linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-06T13:54:27.444 INFO:teuthology.orchestra.run.smithi052.stdout: linux-headers-generic linux-image-5.15.0-119-generic 2024-09-06T13:54:27.445 INFO:teuthology.orchestra.run.smithi052.stdout: linux-modules-5.15.0-119-generic linux-modules-extra-5.15.0-119-generic 2024-09-06T13:54:27.445 INFO:teuthology.orchestra.run.smithi052.stdout:Suggested packages: 2024-09-06T13:54:27.446 INFO:teuthology.orchestra.run.smithi052.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-06T13:54:27.446 INFO:teuthology.orchestra.run.smithi052.stdout:Recommended packages: 2024-09-06T13:54:27.446 INFO:teuthology.orchestra.run.smithi052.stdout: thermald 2024-09-06T13:54:27.498 INFO:teuthology.orchestra.run.smithi052.stdout:The following NEW packages will be installed: 2024-09-06T13:54:27.498 INFO:teuthology.orchestra.run.smithi052.stdout: linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-06T13:54:27.498 INFO:teuthology.orchestra.run.smithi052.stdout: linux-image-5.15.0-119-generic linux-modules-5.15.0-119-generic 2024-09-06T13:54:27.498 INFO:teuthology.orchestra.run.smithi052.stdout: linux-modules-extra-5.15.0-119-generic 2024-09-06T13:54:27.499 INFO:teuthology.orchestra.run.smithi052.stdout:The following packages will be upgraded: 2024-09-06T13:54:27.500 INFO:teuthology.orchestra.run.smithi052.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-06T13:54:27.566 INFO:teuthology.orchestra.run.smithi148.stdout:Building dependency tree... 2024-09-06T13:54:27.567 INFO:teuthology.orchestra.run.smithi148.stdout:Reading state information... 2024-09-06T13:54:27.680 INFO:teuthology.orchestra.run.smithi052.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-06T13:54:27.680 INFO:teuthology.orchestra.run.smithi052.stdout:Need to get 113 MB of archives. 2024-09-06T13:54:27.680 INFO:teuthology.orchestra.run.smithi052.stdout:After this operation, 583 MB of additional disk space will be used. 2024-09-06T13:54:27.680 INFO:teuthology.orchestra.run.smithi052.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-119-generic amd64 5.15.0-119.129 [22.6 MB] 2024-09-06T13:54:27.730 INFO:teuthology.orchestra.run.smithi148.stdout:The following packages were automatically installed and are no longer required: 2024-09-06T13:54:27.731 INFO:teuthology.orchestra.run.smithi148.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-06T13:54:27.731 INFO:teuthology.orchestra.run.smithi148.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-06T13:54:27.731 INFO:teuthology.orchestra.run.smithi148.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-06T13:54:27.731 INFO:teuthology.orchestra.run.smithi148.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-06T13:54:27.731 INFO:teuthology.orchestra.run.smithi148.stdout: python2.7-minimal 2024-09-06T13:54:27.731 INFO:teuthology.orchestra.run.smithi148.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-06T13:54:27.733 INFO:teuthology.orchestra.run.smithi148.stdout:The following additional packages will be installed: 2024-09-06T13:54:27.733 INFO:teuthology.orchestra.run.smithi148.stdout: linux-generic linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-06T13:54:27.733 INFO:teuthology.orchestra.run.smithi148.stdout: linux-headers-generic linux-image-5.15.0-119-generic 2024-09-06T13:54:27.733 INFO:teuthology.orchestra.run.smithi148.stdout: linux-modules-5.15.0-119-generic linux-modules-extra-5.15.0-119-generic 2024-09-06T13:54:27.734 INFO:teuthology.orchestra.run.smithi148.stdout:Suggested packages: 2024-09-06T13:54:27.734 INFO:teuthology.orchestra.run.smithi148.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-06T13:54:27.734 INFO:teuthology.orchestra.run.smithi148.stdout:Recommended packages: 2024-09-06T13:54:27.734 INFO:teuthology.orchestra.run.smithi148.stdout: thermald 2024-09-06T13:54:27.785 INFO:teuthology.orchestra.run.smithi148.stdout:The following NEW packages will be installed: 2024-09-06T13:54:27.785 INFO:teuthology.orchestra.run.smithi148.stdout: linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-06T13:54:27.785 INFO:teuthology.orchestra.run.smithi148.stdout: linux-image-5.15.0-119-generic linux-modules-5.15.0-119-generic 2024-09-06T13:54:27.786 INFO:teuthology.orchestra.run.smithi148.stdout: linux-modules-extra-5.15.0-119-generic 2024-09-06T13:54:27.787 INFO:teuthology.orchestra.run.smithi148.stdout:The following packages will be upgraded: 2024-09-06T13:54:27.787 INFO:teuthology.orchestra.run.smithi148.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-06T13:54:27.838 INFO:teuthology.orchestra.run.smithi148.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-06T13:54:27.839 INFO:teuthology.orchestra.run.smithi148.stdout:Need to get 113 MB of archives. 2024-09-06T13:54:27.839 INFO:teuthology.orchestra.run.smithi148.stdout:After this operation, 583 MB of additional disk space will be used. 2024-09-06T13:54:27.839 INFO:teuthology.orchestra.run.smithi148.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-119-generic amd64 5.15.0-119.129 [22.6 MB] 2024-09-06T13:54:28.271 INFO:teuthology.orchestra.run.smithi148.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-119-generic amd64 5.15.0-119.129 [11.5 MB] 2024-09-06T13:54:28.370 INFO:teuthology.orchestra.run.smithi148.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-119-generic amd64 5.15.0-119.129 [63.9 MB] 2024-09-06T13:54:29.071 INFO:teuthology.orchestra.run.smithi052.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-119-generic amd64 5.15.0-119.129 [11.5 MB] 2024-09-06T13:54:29.143 INFO:teuthology.orchestra.run.smithi148.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.119.119 [1,694 B] 2024-09-06T13:54:29.143 INFO:teuthology.orchestra.run.smithi148.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.119.119 [2,502 B] 2024-09-06T13:54:29.143 INFO:teuthology.orchestra.run.smithi148.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-119 all 5.15.0-119.129 [12.3 MB] 2024-09-06T13:54:29.262 INFO:teuthology.orchestra.run.smithi148.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-119-generic amd64 5.15.0-119.129 [2,879 kB] 2024-09-06T13:54:29.357 INFO:teuthology.orchestra.run.smithi148.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.119.119 [2,350 B] 2024-09-06T13:54:29.469 INFO:teuthology.orchestra.run.smithi052.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-119-generic amd64 5.15.0-119.129 [63.9 MB] 2024-09-06T13:54:29.794 INFO:teuthology.orchestra.run.smithi148.stdout:Fetched 113 MB in 2s (72.5 MB/s) 2024-09-06T13:54:29.985 INFO:teuthology.orchestra.run.smithi148.stdout:Selecting previously unselected package linux-modules-5.15.0-119-generic. 2024-09-06T13:54:31.564 INFO:teuthology.orchestra.run.smithi052.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.119.119 [1,694 B] 2024-09-06T13:54:31.564 INFO:teuthology.orchestra.run.smithi052.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.119.119 [2,502 B] 2024-09-06T13:54:31.635 INFO:teuthology.orchestra.run.smithi052.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-119 all 5.15.0-119.129 [12.3 MB] 2024-09-06T13:54:31.986 INFO:teuthology.orchestra.run.smithi148.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-09-06T13:54:31.991 INFO:teuthology.orchestra.run.smithi148.stdout:Preparing to unpack .../0-linux-modules-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T13:54:32.082 INFO:teuthology.orchestra.run.smithi148.stdout:Unpacking linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:32.344 INFO:teuthology.orchestra.run.smithi052.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-119-generic amd64 5.15.0-119.129 [2,879 kB] 2024-09-06T13:54:32.406 INFO:teuthology.orchestra.run.smithi052.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.119.119 [2,350 B] 2024-09-06T13:54:32.824 INFO:teuthology.orchestra.run.smithi052.stdout:Fetched 113 MB in 5s (23.1 MB/s) 2024-09-06T13:54:32.995 INFO:teuthology.orchestra.run.smithi052.stdout:Selecting previously unselected package linux-modules-5.15.0-119-generic. 2024-09-06T13:54:34.152 INFO:teuthology.orchestra.run.smithi148.stdout:Selecting previously unselected package linux-image-5.15.0-119-generic. 2024-09-06T13:54:34.174 INFO:teuthology.orchestra.run.smithi148.stdout:Preparing to unpack .../1-linux-image-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T13:54:34.263 INFO:teuthology.orchestra.run.smithi148.stdout:Unpacking linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:34.721 INFO:teuthology.orchestra.run.smithi148.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-119-generic. 2024-09-06T13:54:34.742 INFO:teuthology.orchestra.run.smithi148.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T13:54:34.798 INFO:teuthology.orchestra.run.smithi148.stdout:Unpacking linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:34.964 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-09-06T13:54:34.968 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../0-linux-modules-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T13:54:35.034 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:37.277 INFO:teuthology.orchestra.run.smithi052.stdout:Selecting previously unselected package linux-image-5.15.0-119-generic. 2024-09-06T13:54:37.298 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../1-linux-image-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T13:54:37.394 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:37.838 INFO:teuthology.orchestra.run.smithi052.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-119-generic. 2024-09-06T13:54:37.859 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T13:54:37.896 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:41.728 INFO:teuthology.orchestra.run.smithi148.stdout:Preparing to unpack .../3-linux-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T13:54:41.923 INFO:teuthology.orchestra.run.smithi148.stdout:Unpacking linux-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T13:54:42.255 INFO:teuthology.orchestra.run.smithi148.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T13:54:42.351 INFO:teuthology.orchestra.run.smithi148.stdout:Unpacking linux-image-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T13:54:42.662 INFO:teuthology.orchestra.run.smithi148.stdout:Selecting previously unselected package linux-headers-5.15.0-119. 2024-09-06T13:54:42.685 INFO:teuthology.orchestra.run.smithi148.stdout:Preparing to unpack .../5-linux-headers-5.15.0-119_5.15.0-119.129_all.deb ... 2024-09-06T13:54:42.728 INFO:teuthology.orchestra.run.smithi148.stdout:Unpacking linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-06T13:54:43.726 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../3-linux-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T13:54:43.850 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T13:54:44.150 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T13:54:44.254 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-image-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T13:54:44.541 INFO:teuthology.orchestra.run.smithi052.stdout:Selecting previously unselected package linux-headers-5.15.0-119. 2024-09-06T13:54:44.551 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../5-linux-headers-5.15.0-119_5.15.0-119.129_all.deb ... 2024-09-06T13:54:44.590 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-06T13:54:48.794 INFO:teuthology.orchestra.run.smithi148.stdout:Selecting previously unselected package linux-headers-5.15.0-119-generic. 2024-09-06T13:54:48.830 INFO:teuthology.orchestra.run.smithi148.stdout:Preparing to unpack .../6-linux-headers-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T13:54:48.868 INFO:teuthology.orchestra.run.smithi148.stdout:Unpacking linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:50.400 INFO:teuthology.orchestra.run.smithi052.stdout:Selecting previously unselected package linux-headers-5.15.0-119-generic. 2024-09-06T13:54:50.437 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../6-linux-headers-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T13:54:50.474 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:51.594 INFO:teuthology.orchestra.run.smithi148.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T13:54:51.720 INFO:teuthology.orchestra.run.smithi148.stdout:Unpacking linux-headers-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T13:54:52.046 INFO:teuthology.orchestra.run.smithi148.stdout:Setting up linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-06T13:54:52.142 INFO:teuthology.orchestra.run.smithi148.stdout:Setting up linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:52.259 INFO:teuthology.orchestra.run.smithi148.stdout:Setting up linux-headers-generic (5.15.0.119.119) ... 2024-09-06T13:54:52.413 INFO:teuthology.orchestra.run.smithi148.stdout:Setting up linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:53.122 INFO:teuthology.orchestra.run.smithi052.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T13:54:53.244 INFO:teuthology.orchestra.run.smithi052.stdout:Unpacking linux-headers-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T13:54:53.553 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-06T13:54:53.674 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:53.740 INFO:teuthology.orchestra.run.smithi148.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-06T13:54:53.740 INFO:teuthology.orchestra.run.smithi148.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-06T13:54:53.740 INFO:teuthology.orchestra.run.smithi148.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-119-generic 2024-09-06T13:54:53.740 INFO:teuthology.orchestra.run.smithi148.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-119-generic 2024-09-06T13:54:53.791 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-headers-generic (5.15.0.119.119) ... 2024-09-06T13:54:53.915 INFO:teuthology.orchestra.run.smithi148.stdout:Setting up linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:53.920 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:55.283 INFO:teuthology.orchestra.run.smithi052.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-06T13:54:55.284 INFO:teuthology.orchestra.run.smithi052.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-06T13:54:55.284 INFO:teuthology.orchestra.run.smithi052.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-119-generic 2024-09-06T13:54:55.284 INFO:teuthology.orchestra.run.smithi052.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-119-generic 2024-09-06T13:54:55.449 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:55.533 INFO:teuthology.orchestra.run.smithi148.stdout:Setting up linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:56.875 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:56.917 INFO:teuthology.orchestra.run.smithi148.stdout:Setting up linux-image-generic (5.15.0.119.119) ... 2024-09-06T13:54:57.043 INFO:teuthology.orchestra.run.smithi148.stdout:Setting up linux-generic (5.15.0.119.119) ... 2024-09-06T13:54:57.170 INFO:teuthology.orchestra.run.smithi148.stdout:Processing triggers for linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:57.236 INFO:teuthology.orchestra.run.smithi148.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-06T13:54:57.236 INFO:teuthology.orchestra.run.smithi148.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-119-generic 2024-09-06T13:54:58.319 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-image-generic (5.15.0.119.119) ... 2024-09-06T13:54:58.444 INFO:teuthology.orchestra.run.smithi052.stdout:Setting up linux-generic (5.15.0.119.119) ... 2024-09-06T13:54:58.579 INFO:teuthology.orchestra.run.smithi052.stdout:Processing triggers for linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T13:54:58.645 INFO:teuthology.orchestra.run.smithi052.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-06T13:54:58.645 INFO:teuthology.orchestra.run.smithi052.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-119-generic 2024-09-06T13:55:11.285 INFO:teuthology.orchestra.run.smithi148.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-06T13:55:11.285 INFO:teuthology.orchestra.run.smithi148.stdout:Sourcing file `/etc/default/grub' 2024-09-06T13:55:11.300 INFO:teuthology.orchestra.run.smithi148.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-06T13:55:11.320 INFO:teuthology.orchestra.run.smithi148.stdout:Generating grub configuration file ... 2024-09-06T13:55:11.587 INFO:teuthology.orchestra.run.smithi148.stdout:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-06T13:55:11.604 INFO:teuthology.orchestra.run.smithi148.stdout:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-06T13:55:11.897 INFO:teuthology.orchestra.run.smithi148.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-06T13:55:11.903 INFO:teuthology.orchestra.run.smithi148.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-06T13:55:11.974 INFO:teuthology.orchestra.run.smithi148.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-06T13:55:11.980 INFO:teuthology.orchestra.run.smithi148.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-06T13:55:12.140 INFO:teuthology.orchestra.run.smithi148.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-06T13:55:12.140 INFO:teuthology.orchestra.run.smithi148.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-06T13:55:12.140 INFO:teuthology.orchestra.run.smithi148.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-06T13:55:12.179 INFO:teuthology.orchestra.run.smithi148.stdout:done 2024-09-06T13:55:12.653 DEBUG:teuthology.orchestra.run.smithi148:> dpkg -s linux-image-generic 2024-09-06T13:55:12.679 INFO:teuthology.orchestra.run.smithi148.stdout:Package: linux-image-generic 2024-09-06T13:55:12.679 INFO:teuthology.orchestra.run.smithi148.stdout:Status: install ok installed 2024-09-06T13:55:12.679 INFO:teuthology.orchestra.run.smithi148.stdout:Priority: optional 2024-09-06T13:55:12.679 INFO:teuthology.orchestra.run.smithi148.stdout:Section: kernel 2024-09-06T13:55:12.679 INFO:teuthology.orchestra.run.smithi148.stdout:Installed-Size: 21 2024-09-06T13:55:12.680 INFO:teuthology.orchestra.run.smithi148.stdout:Maintainer: Ubuntu Kernel Team 2024-09-06T13:55:12.680 INFO:teuthology.orchestra.run.smithi148.stdout:Architecture: amd64 2024-09-06T13:55:12.680 INFO:teuthology.orchestra.run.smithi148.stdout:Source: linux-meta 2024-09-06T13:55:12.680 INFO:teuthology.orchestra.run.smithi148.stdout:Version: 5.15.0.119.119 2024-09-06T13:55:12.680 INFO:teuthology.orchestra.run.smithi148.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-119), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-06T13:55:12.680 INFO:teuthology.orchestra.run.smithi148.stdout:Depends: linux-image-5.15.0-119-generic, linux-modules-extra-5.15.0-119-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-06T13:55:12.680 INFO:teuthology.orchestra.run.smithi148.stdout:Recommends: thermald 2024-09-06T13:55:12.680 INFO:teuthology.orchestra.run.smithi148.stdout:Description: Generic Linux kernel image 2024-09-06T13:55:12.680 INFO:teuthology.orchestra.run.smithi148.stdout: This package will always depend on the latest generic kernel image 2024-09-06T13:55:12.680 INFO:teuthology.orchestra.run.smithi148.stdout: available. 2024-09-06T13:55:12.680 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-119-generic 2024-09-06T13:55:12.681 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-06T13:55:12.681 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-06T13:55:12.681 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-06T13:55:12.681 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi148.front.sepia.ceph.com, path=None, version=distro) 2024-09-06T13:55:12.681 DEBUG:teuthology.orchestra.run.smithi148:> sudo apt-get clean 2024-09-06T13:55:12.809 INFO:teuthology.orchestra.run.smithi052.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-06T13:55:12.809 INFO:teuthology.orchestra.run.smithi052.stdout:Sourcing file `/etc/default/grub' 2024-09-06T13:55:12.826 INFO:teuthology.orchestra.run.smithi052.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-06T13:55:12.849 INFO:teuthology.orchestra.run.smithi052.stdout:Generating grub configuration file ... 2024-09-06T13:55:12.875 DEBUG:teuthology.orchestra.run.smithi148:> sudo apt-get update 2024-09-06T13:55:12.994 INFO:teuthology.orchestra.run.smithi148.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-06T13:55:12.994 INFO:teuthology.orchestra.run.smithi148.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-06T13:55:13.003 INFO:teuthology.orchestra.run.smithi148.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-06T13:55:13.020 INFO:teuthology.orchestra.run.smithi148.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-06T13:55:13.212 INFO:teuthology.orchestra.run.smithi052.stdout:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-06T13:55:13.236 INFO:teuthology.orchestra.run.smithi052.stdout:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-06T13:55:13.588 INFO:teuthology.orchestra.run.smithi052.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-06T13:55:13.594 INFO:teuthology.orchestra.run.smithi052.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-06T13:55:13.659 INFO:teuthology.orchestra.run.smithi052.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-06T13:55:13.665 INFO:teuthology.orchestra.run.smithi052.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-06T13:55:13.827 INFO:teuthology.orchestra.run.smithi052.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-06T13:55:13.827 INFO:teuthology.orchestra.run.smithi052.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-06T13:55:13.827 INFO:teuthology.orchestra.run.smithi052.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-06T13:55:13.870 INFO:teuthology.orchestra.run.smithi052.stdout:done 2024-09-06T13:55:14.353 DEBUG:teuthology.orchestra.run.smithi052:> dpkg -s linux-image-generic 2024-09-06T13:55:14.371 INFO:teuthology.orchestra.run.smithi052.stdout:Package: linux-image-generic 2024-09-06T13:55:14.371 INFO:teuthology.orchestra.run.smithi052.stdout:Status: install ok installed 2024-09-06T13:55:14.371 INFO:teuthology.orchestra.run.smithi052.stdout:Priority: optional 2024-09-06T13:55:14.371 INFO:teuthology.orchestra.run.smithi052.stdout:Section: kernel 2024-09-06T13:55:14.371 INFO:teuthology.orchestra.run.smithi052.stdout:Installed-Size: 21 2024-09-06T13:55:14.371 INFO:teuthology.orchestra.run.smithi052.stdout:Maintainer: Ubuntu Kernel Team 2024-09-06T13:55:14.372 INFO:teuthology.orchestra.run.smithi052.stdout:Architecture: amd64 2024-09-06T13:55:14.372 INFO:teuthology.orchestra.run.smithi052.stdout:Source: linux-meta 2024-09-06T13:55:14.372 INFO:teuthology.orchestra.run.smithi052.stdout:Version: 5.15.0.119.119 2024-09-06T13:55:14.372 INFO:teuthology.orchestra.run.smithi052.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-119), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-06T13:55:14.372 INFO:teuthology.orchestra.run.smithi052.stdout:Depends: linux-image-5.15.0-119-generic, linux-modules-extra-5.15.0-119-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-06T13:55:14.372 INFO:teuthology.orchestra.run.smithi052.stdout:Recommends: thermald 2024-09-06T13:55:14.372 INFO:teuthology.orchestra.run.smithi052.stdout:Description: Generic Linux kernel image 2024-09-06T13:55:14.372 INFO:teuthology.orchestra.run.smithi052.stdout: This package will always depend on the latest generic kernel image 2024-09-06T13:55:14.372 INFO:teuthology.orchestra.run.smithi052.stdout: available. 2024-09-06T13:55:14.372 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-119-generic 2024-09-06T13:55:14.372 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-06T13:55:14.373 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-06T13:55:14.373 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-06T13:55:14.373 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi052.front.sepia.ceph.com, path=None, version=distro) 2024-09-06T13:55:14.373 DEBUG:teuthology.orchestra.run.smithi052:> sudo apt-get clean 2024-09-06T13:55:14.441 INFO:teuthology.orchestra.run.smithi148.stdout:Reading package lists... 2024-09-06T13:55:14.461 DEBUG:teuthology.orchestra.run.smithi148:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-06T13:55:14.497 DEBUG:teuthology.orchestra.run.smithi052:> sudo apt-get update 2024-09-06T13:55:14.525 INFO:teuthology.orchestra.run.smithi148.stdout:Reading package lists... 2024-09-06T13:55:14.608 INFO:teuthology.orchestra.run.smithi052.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-06T13:55:14.608 INFO:teuthology.orchestra.run.smithi052.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-06T13:55:14.617 INFO:teuthology.orchestra.run.smithi052.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-06T13:55:14.634 INFO:teuthology.orchestra.run.smithi052.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-06T13:55:14.730 INFO:teuthology.orchestra.run.smithi148.stdout:Building dependency tree... 2024-09-06T13:55:14.731 INFO:teuthology.orchestra.run.smithi148.stdout:Reading state information... 2024-09-06T13:55:14.927 INFO:teuthology.orchestra.run.smithi148.stdout:linux-image-generic is already the newest version (5.15.0.119.119). 2024-09-06T13:55:14.927 INFO:teuthology.orchestra.run.smithi148.stdout:The following packages were automatically installed and are no longer required: 2024-09-06T13:55:14.927 INFO:teuthology.orchestra.run.smithi148.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-06T13:55:14.927 INFO:teuthology.orchestra.run.smithi148.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-06T13:55:14.928 INFO:teuthology.orchestra.run.smithi148.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-06T13:55:14.928 INFO:teuthology.orchestra.run.smithi148.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-06T13:55:14.928 INFO:teuthology.orchestra.run.smithi148.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-06T13:55:14.928 INFO:teuthology.orchestra.run.smithi148.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-06T13:55:14.971 INFO:teuthology.orchestra.run.smithi148.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-06T13:55:14.973 DEBUG:teuthology.orchestra.run.smithi148:> dpkg -s linux-image-generic 2024-09-06T13:55:14.988 INFO:teuthology.orchestra.run.smithi148.stdout:Package: linux-image-generic 2024-09-06T13:55:14.988 INFO:teuthology.orchestra.run.smithi148.stdout:Status: install ok installed 2024-09-06T13:55:14.988 INFO:teuthology.orchestra.run.smithi148.stdout:Priority: optional 2024-09-06T13:55:14.988 INFO:teuthology.orchestra.run.smithi148.stdout:Section: kernel 2024-09-06T13:55:14.988 INFO:teuthology.orchestra.run.smithi148.stdout:Installed-Size: 21 2024-09-06T13:55:14.988 INFO:teuthology.orchestra.run.smithi148.stdout:Maintainer: Ubuntu Kernel Team 2024-09-06T13:55:14.988 INFO:teuthology.orchestra.run.smithi148.stdout:Architecture: amd64 2024-09-06T13:55:14.989 INFO:teuthology.orchestra.run.smithi148.stdout:Source: linux-meta 2024-09-06T13:55:14.989 INFO:teuthology.orchestra.run.smithi148.stdout:Version: 5.15.0.119.119 2024-09-06T13:55:14.989 INFO:teuthology.orchestra.run.smithi148.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-119), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-06T13:55:14.989 INFO:teuthology.orchestra.run.smithi148.stdout:Depends: linux-image-5.15.0-119-generic, linux-modules-extra-5.15.0-119-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-06T13:55:14.989 INFO:teuthology.orchestra.run.smithi148.stdout:Recommends: thermald 2024-09-06T13:55:14.989 INFO:teuthology.orchestra.run.smithi148.stdout:Description: Generic Linux kernel image 2024-09-06T13:55:14.989 INFO:teuthology.orchestra.run.smithi148.stdout: This package will always depend on the latest generic kernel image 2024-09-06T13:55:14.989 INFO:teuthology.orchestra.run.smithi148.stdout: available. 2024-09-06T13:55:14.989 DEBUG:teuthology.orchestra.run.smithi148:> mktemp 2024-09-06T13:55:15.035 INFO:teuthology.orchestra.run.smithi148.stdout:/tmp/tmp.jTSGwh8ZeN 2024-09-06T13:55:15.035 DEBUG:teuthology.orchestra.run.smithi148:> sudo cp /boot/grub/grub.cfg /tmp/tmp.jTSGwh8ZeN 2024-09-06T13:55:15.090 DEBUG:teuthology.orchestra.run.smithi148:> sudo chmod 0666 /tmp/tmp.jTSGwh8ZeN 2024-09-06T13:55:15.213 DEBUG:teuthology.orchestra.remote:smithi148:/tmp/tmp.jTSGwh8ZeN is 10KB 2024-09-06T13:55:15.226 DEBUG:teuthology.orchestra.run.smithi148:> rm -fr /tmp/tmp.jTSGwh8ZeN 2024-09-06T13:55:15.232 DEBUG:teuthology.orchestra.run.smithi148:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-06T13:55:15.285 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T13:55:15.286 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-06T13:55:15.286 DEBUG:teuthology.orchestra.run.smithi148:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-06T13:55:15.348 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-119-generic 2024-09-06T13:55:15.348 DEBUG:teuthology.orchestra.run.smithi148:> sudo update-grub 2024-09-06T13:55:16.027 INFO:teuthology.orchestra.run.smithi052.stdout:Reading package lists... 2024-09-06T13:55:16.046 DEBUG:teuthology.orchestra.run.smithi052:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-06T13:55:16.109 INFO:teuthology.orchestra.run.smithi052.stdout:Reading package lists... 2024-09-06T13:55:16.321 INFO:teuthology.orchestra.run.smithi052.stdout:Building dependency tree... 2024-09-06T13:55:16.323 INFO:teuthology.orchestra.run.smithi052.stdout:Reading state information... 2024-09-06T13:55:16.518 INFO:teuthology.orchestra.run.smithi052.stdout:linux-image-generic is already the newest version (5.15.0.119.119). 2024-09-06T13:55:16.518 INFO:teuthology.orchestra.run.smithi052.stdout:The following packages were automatically installed and are no longer required: 2024-09-06T13:55:16.518 INFO:teuthology.orchestra.run.smithi052.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-06T13:55:16.518 INFO:teuthology.orchestra.run.smithi052.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-06T13:55:16.519 INFO:teuthology.orchestra.run.smithi052.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-06T13:55:16.519 INFO:teuthology.orchestra.run.smithi052.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-06T13:55:16.519 INFO:teuthology.orchestra.run.smithi052.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-06T13:55:16.519 INFO:teuthology.orchestra.run.smithi052.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-06T13:55:16.565 INFO:teuthology.orchestra.run.smithi052.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-06T13:55:16.567 DEBUG:teuthology.orchestra.run.smithi052:> dpkg -s linux-image-generic 2024-09-06T13:55:16.586 INFO:teuthology.orchestra.run.smithi052.stdout:Package: linux-image-generic 2024-09-06T13:55:16.586 INFO:teuthology.orchestra.run.smithi052.stdout:Status: install ok installed 2024-09-06T13:55:16.586 INFO:teuthology.orchestra.run.smithi052.stdout:Priority: optional 2024-09-06T13:55:16.586 INFO:teuthology.orchestra.run.smithi052.stdout:Section: kernel 2024-09-06T13:55:16.586 INFO:teuthology.orchestra.run.smithi052.stdout:Installed-Size: 21 2024-09-06T13:55:16.586 INFO:teuthology.orchestra.run.smithi052.stdout:Maintainer: Ubuntu Kernel Team 2024-09-06T13:55:16.586 INFO:teuthology.orchestra.run.smithi052.stdout:Architecture: amd64 2024-09-06T13:55:16.586 INFO:teuthology.orchestra.run.smithi052.stdout:Source: linux-meta 2024-09-06T13:55:16.586 INFO:teuthology.orchestra.run.smithi052.stdout:Version: 5.15.0.119.119 2024-09-06T13:55:16.586 INFO:teuthology.orchestra.run.smithi052.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-119), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-06T13:55:16.587 INFO:teuthology.orchestra.run.smithi052.stdout:Depends: linux-image-5.15.0-119-generic, linux-modules-extra-5.15.0-119-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-06T13:55:16.587 INFO:teuthology.orchestra.run.smithi052.stdout:Recommends: thermald 2024-09-06T13:55:16.587 INFO:teuthology.orchestra.run.smithi052.stdout:Description: Generic Linux kernel image 2024-09-06T13:55:16.587 INFO:teuthology.orchestra.run.smithi052.stdout: This package will always depend on the latest generic kernel image 2024-09-06T13:55:16.587 INFO:teuthology.orchestra.run.smithi052.stdout: available. 2024-09-06T13:55:16.587 DEBUG:teuthology.orchestra.run.smithi052:> mktemp 2024-09-06T13:55:16.631 INFO:teuthology.orchestra.run.smithi052.stdout:/tmp/tmp.Ojx1q5npNv 2024-09-06T13:55:16.631 DEBUG:teuthology.orchestra.run.smithi052:> sudo cp /boot/grub/grub.cfg /tmp/tmp.Ojx1q5npNv 2024-09-06T13:55:16.635 INFO:teuthology.orchestra.run.smithi148.stderr:Sourcing file `/etc/default/grub' 2024-09-06T13:55:16.636 INFO:teuthology.orchestra.run.smithi148.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-06T13:55:16.638 INFO:teuthology.orchestra.run.smithi148.stderr:Generating grub configuration file ... 2024-09-06T13:55:16.686 DEBUG:teuthology.orchestra.run.smithi052:> sudo chmod 0666 /tmp/tmp.Ojx1q5npNv 2024-09-06T13:55:16.812 DEBUG:teuthology.orchestra.remote:smithi052:/tmp/tmp.Ojx1q5npNv is 10KB 2024-09-06T13:55:16.824 INFO:teuthology.orchestra.run.smithi148.stderr:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-06T13:55:16.826 DEBUG:teuthology.orchestra.run.smithi052:> rm -fr /tmp/tmp.Ojx1q5npNv 2024-09-06T13:55:16.830 INFO:teuthology.orchestra.run.smithi148.stderr:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-06T13:55:16.831 DEBUG:teuthology.orchestra.run.smithi052:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-06T13:55:16.890 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T13:55:16.890 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-06T13:55:16.890 DEBUG:teuthology.orchestra.run.smithi052:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-06T13:55:16.971 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-119-generic 2024-09-06T13:55:16.972 DEBUG:teuthology.orchestra.run.smithi052:> sudo update-grub 2024-09-06T13:55:17.070 INFO:teuthology.orchestra.run.smithi148.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-06T13:55:17.075 INFO:teuthology.orchestra.run.smithi148.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-06T13:55:17.115 INFO:teuthology.orchestra.run.smithi148.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-06T13:55:17.119 INFO:teuthology.orchestra.run.smithi148.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-06T13:55:17.247 INFO:teuthology.orchestra.run.smithi148.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-06T13:55:17.247 INFO:teuthology.orchestra.run.smithi148.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-06T13:55:17.247 INFO:teuthology.orchestra.run.smithi148.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-06T13:55:17.259 INFO:teuthology.orchestra.run.smithi148.stderr:done 2024-09-06T13:55:17.261 DEBUG:teuthology.orchestra.run.smithi148:> sudo shutdown -r now 2024-09-06T13:55:18.122 INFO:teuthology.orchestra.run.smithi052.stderr:Sourcing file `/etc/default/grub' 2024-09-06T13:55:18.123 INFO:teuthology.orchestra.run.smithi052.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-06T13:55:18.125 INFO:teuthology.orchestra.run.smithi052.stderr:Generating grub configuration file ... 2024-09-06T13:55:18.384 INFO:teuthology.orchestra.run.smithi052.stderr:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-06T13:55:18.391 INFO:teuthology.orchestra.run.smithi052.stderr:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-06T13:55:18.682 INFO:teuthology.orchestra.run.smithi052.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-06T13:55:18.688 INFO:teuthology.orchestra.run.smithi052.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-06T13:55:18.733 INFO:teuthology.orchestra.run.smithi052.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-06T13:55:18.738 INFO:teuthology.orchestra.run.smithi052.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-06T13:55:18.892 INFO:teuthology.orchestra.run.smithi052.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-06T13:55:18.893 INFO:teuthology.orchestra.run.smithi052.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-06T13:55:18.893 INFO:teuthology.orchestra.run.smithi052.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-06T13:55:18.918 INFO:teuthology.orchestra.run.smithi052.stderr:done 2024-09-06T13:55:18.933 DEBUG:teuthology.orchestra.run.smithi052:> sudo shutdown -r now 2024-09-06T13:55:47.289 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-06T13:55:47.290 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi148.front.sepia.ceph.com' 2024-09-06T13:55:47.291 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi148.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T13:55:48.937 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-06T13:55:48.937 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-09-06T13:55:48.938 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi052.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T13:56:07.357 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.52 2024-09-06T13:56:16.367 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-09-06T13:56:16.368 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi052.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T13:56:21.949 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.148 2024-09-06T13:56:30.957 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi148.front.sepia.ceph.com' 2024-09-06T13:56:30.958 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi148.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T13:57:16.424 DEBUG:teuthology.orchestra.remote:timed out 2024-09-06T13:57:28.437 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-09-06T13:57:28.439 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi052.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T13:57:28.752 DEBUG:teuthology.orchestra.run.smithi052:> true 2024-09-06T13:57:29.276 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-09-06T13:57:29.276 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-119-generic"... 2024-09-06T13:57:29.276 DEBUG:teuthology.orchestra.run.smithi052:> uname -r 2024-09-06T13:57:29.321 INFO:teuthology.orchestra.run.smithi052.stdout:5.15.0-119-generic 2024-09-06T13:57:29.322 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-119-generic vs 5.15.0-119-generic 2024-09-06T13:57:29.322 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-06T13:57:29.322 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-06T13:57:30.323 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-06T13:57:30.323 DEBUG:teuthology.orchestra.run.smithi052:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-06T13:57:30.407 INFO:teuthology.orchestra.run.smithi052.stdout:ttyS1 2024-09-06T13:57:30.427 DEBUG:teuthology.parallel:result is None 2024-09-06T13:57:30.968 DEBUG:teuthology.orchestra.remote:timed out 2024-09-06T13:57:42.969 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi148.front.sepia.ceph.com' 2024-09-06T13:57:42.970 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi148.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T13:57:43.314 DEBUG:teuthology.orchestra.run.smithi148:> true 2024-09-06T13:57:43.849 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi148.front.sepia.ceph.com' 2024-09-06T13:57:43.850 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-119-generic"... 2024-09-06T13:57:43.850 DEBUG:teuthology.orchestra.run.smithi148:> uname -r 2024-09-06T13:57:43.897 INFO:teuthology.orchestra.run.smithi148.stdout:5.15.0-119-generic 2024-09-06T13:57:43.898 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-119-generic vs 5.15.0-119-generic 2024-09-06T13:57:43.898 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-06T13:57:43.898 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-06T13:57:44.899 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-06T13:57:44.899 DEBUG:teuthology.orchestra.run.smithi148:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-06T13:57:45.244 INFO:teuthology.orchestra.run.smithi148.stdout:ttyS1 2024-09-06T13:57:45.263 DEBUG:teuthology.parallel:result is None 2024-09-06T13:57:45.263 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-06T13:57:45.271 INFO:teuthology.task.internal:Creating test directory... 2024-09-06T13:57:45.272 DEBUG:teuthology.orchestra.run.smithi052:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-06T13:57:45.274 DEBUG:teuthology.orchestra.run.smithi148:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-06T13:57:45.279 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-06T13:57:45.301 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-06T13:57:45.336 INFO:teuthology.task.internal:Creating archive directory... 2024-09-06T13:57:45.336 DEBUG:teuthology.orchestra.run.smithi052:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-06T13:57:45.339 DEBUG:teuthology.orchestra.run.smithi148:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-06T13:57:45.363 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-06T13:57:45.376 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-06T13:57:45.376 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-09-06T13:57:45.398 DEBUG:teuthology.orchestra.run.smithi148:> 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-09-06T13:57:45.413 INFO:teuthology.orchestra.run.smithi052.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-06T13:57:45.419 INFO:teuthology.orchestra.run.smithi148.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-06T13:57:45.422 INFO:teuthology.orchestra.run.smithi052.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-06T13:57:45.427 INFO:teuthology.orchestra.run.smithi148.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-06T13:57:45.429 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-06T13:57:45.439 INFO:teuthology.task.internal:Configuring sudo... 2024-09-06T13:57:45.439 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-09-06T13:57:45.466 DEBUG:teuthology.orchestra.run.smithi148:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-06T13:57:45.492 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-06T13:57:45.510 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-06T13:57:45.510 DEBUG:teuthology.orchestra.run.smithi052:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-06T13:57:45.522 DEBUG:teuthology.orchestra.run.smithi148:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-06T13:57:45.538 DEBUG:teuthology.orchestra.run.smithi052:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-06T13:57:45.573 DEBUG:teuthology.orchestra.run.smithi052:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-06T13:57:45.622 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T13:57:45.622 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-06T13:57:45.687 DEBUG:teuthology.orchestra.run.smithi148:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-06T13:57:45.692 DEBUG:teuthology.orchestra.run.smithi148:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-06T13:57:45.738 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T13:57:45.738 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-06T13:57:45.808 DEBUG:teuthology.orchestra.run.smithi052:> sudo service rsyslog restart 2024-09-06T13:57:45.810 DEBUG:teuthology.orchestra.run.smithi148:> sudo service rsyslog restart 2024-09-06T13:57:45.886 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-06T13:57:45.893 INFO:teuthology.task.internal:Starting timer... 2024-09-06T13:57:45.894 INFO:teuthology.run_tasks:Running task pcp... 2024-09-06T13:57:45.947 INFO:teuthology.run_tasks:Running task selinux... 2024-09-06T13:57:46.020 DEBUG:teuthology.task.selinux:Excluding smithi052: OS 'ubuntu' does not support SELinux 2024-09-06T13:57:46.021 DEBUG:teuthology.task.selinux:Excluding smithi148: OS 'ubuntu' does not support SELinux 2024-09-06T13:57:46.021 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-06T13:57:46.021 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-06T13:57:46.021 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-06T13:57:46.021 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-06T13:57:46.062 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-06T13:57:46.074 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-09-06T13:57:46.075 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi052.front.sepia.ceph.com,smithi148.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-06T14:05:16.610 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi052.front.sepia.ceph.com'), Remote(name='ubuntu@smithi148.front.sepia.ceph.com')] 2024-09-06T14:05:16.648 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-09-06T14:05:16.650 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi052.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:05:16.759 DEBUG:teuthology.orchestra.run.smithi052:> true 2024-09-06T14:05:16.841 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi052.front.sepia.ceph.com' 2024-09-06T14:05:16.842 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi148.front.sepia.ceph.com' 2024-09-06T14:05:16.842 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi148.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:05:16.931 DEBUG:teuthology.orchestra.run.smithi148:> true 2024-09-06T14:05:17.004 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi148.front.sepia.ceph.com' 2024-09-06T14:05:17.005 INFO:teuthology.run_tasks:Running task clock... 2024-09-06T14:05:17.016 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-06T14:05:17.016 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-06T14:05:17.017 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-09-06T14:05:17.020 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-06T14:05:17.020 DEBUG:teuthology.orchestra.run.smithi148:> 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-09-06T14:05:17.048 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-06T14:05:17.048 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: Command line: ntpd -gq 2024-09-06T14:05:17.048 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: ---------------------------------------------------- 2024-09-06T14:05:17.049 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: ntp-4 is maintained by Network Time Foundation, 2024-09-06T14:05:17.049 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-06T14:05:17.049 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: corporation. Support and training for ntp-4 are 2024-09-06T14:05:17.049 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: available at https://www.nwtime.org/support 2024-09-06T14:05:17.049 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: ---------------------------------------------------- 2024-09-06T14:05:17.049 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: proto: precision = 0.067 usec (-24) 2024-09-06T14:05:17.050 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: basedate set to 2022-02-04 2024-09-06T14:05:17.050 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: gps base set to 2022-02-06 (week 2196) 2024-09-06T14:05:17.050 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-06T14:05:17.050 INFO:teuthology.orchestra.run.smithi052.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-06T14:05:17.050 INFO:teuthology.orchestra.run.smithi052.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-06T14:05:17.051 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: restrict ::: KOD does nothing without LIMITED. 2024-09-06T14:05:17.051 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: Listen and drop on 0 v6wildcard [::]:123 2024-09-06T14:05:17.051 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-06T14:05:17.051 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: Listen normally on 2 lo 127.0.0.1:123 2024-09-06T14:05:17.051 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: Listen normally on 3 ens1f0 172.21.15.52:123 2024-09-06T14:05:17.051 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: Listen normally on 4 lo [::1]:123 2024-09-06T14:05:17.052 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:15de%4]:123 2024-09-06T14:05:17.052 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:17 ntpd[18350]: Listening on routing socket on fd #22 for interface updates 2024-09-06T14:05:17.069 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-06T14:05:17.069 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: Command line: ntpd -gq 2024-09-06T14:05:17.069 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: ---------------------------------------------------- 2024-09-06T14:05:17.070 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: ntp-4 is maintained by Network Time Foundation, 2024-09-06T14:05:17.070 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-06T14:05:17.070 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: corporation. Support and training for ntp-4 are 2024-09-06T14:05:17.070 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: available at https://www.nwtime.org/support 2024-09-06T14:05:17.070 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: ---------------------------------------------------- 2024-09-06T14:05:17.071 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: proto: precision = 0.045 usec (-24) 2024-09-06T14:05:17.071 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: basedate set to 2022-02-04 2024-09-06T14:05:17.071 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: gps base set to 2022-02-06 (week 2196) 2024-09-06T14:05:17.071 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-06T14:05:17.071 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: restrict ::: KOD does nothing without LIMITED. 2024-09-06T14:05:17.071 INFO:teuthology.orchestra.run.smithi148.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-06T14:05:17.071 INFO:teuthology.orchestra.run.smithi148.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-06T14:05:17.072 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: Listen and drop on 0 v6wildcard [::]:123 2024-09-06T14:05:17.072 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-06T14:05:17.072 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: Listen normally on 2 lo 127.0.0.1:123 2024-09-06T14:05:17.072 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: Listen normally on 3 enp3s0f1 172.21.15.148:123 2024-09-06T14:05:17.072 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: Listen normally on 4 lo [::1]:123 2024-09-06T14:05:17.073 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7257%5]:123 2024-09-06T14:05:17.073 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:17 ntpd[18422]: Listening on routing socket on fd #22 for interface updates 2024-09-06T14:05:18.049 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:18 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:18.049 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:18 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:18.049 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:18 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:18.049 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:18 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:18.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:18 ntpd[18350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:18.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:18 ntpd[18350]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:19.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:19 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:19.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:19 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:19.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:19 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:19.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:19 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:19.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:19 ntpd[18422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:19.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:19 ntpd[18422]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:20.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:20.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:20.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:20.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:20.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:20.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:20.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:20.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:20.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:20.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:20 ntpd[18350]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:20.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:20 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:20.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:20 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:20.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:20 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:20.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:20 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:20.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:20 ntpd[18422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:20.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:20 ntpd[18422]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:21.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:21 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:21.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:21 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:21.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:21 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:21.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:21 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:21.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:21 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:21.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:21 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:21.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:21 ntpd[18422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:21.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:21 ntpd[18422]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:22.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:22.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:22.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:22.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:22.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:22.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:22.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:22.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:22 ntpd[18350]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:22.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:22.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:22 ntpd[18422]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:23.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:23 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:23.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:23 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:23.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:23 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:23.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:23 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:23.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:23 ntpd[18422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:23.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:23 ntpd[18422]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:24.049 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:24.050 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:24.051 INFO:teuthology.orchestra.run.smithi052.stdout: 6 Sep 14:05:24 ntpd[18350]: ntpd: time slew -0.004942 s 2024-09-06T14:05:24.051 INFO:teuthology.orchestra.run.smithi052.stdout:ntpd: time slew -0.004942s 2024-09-06T14:05:24.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:24.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:24.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-06T14:05:24.051 INFO:teuthology.orchestra.run.smithi052.stderr: 6 Sep 14:05:24 ntpd[18350]: can't open /var/log/ntpstats/loopstats.20240906: Permission denied 2024-09-06T14:05:24.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:24.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:24.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:24.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:24.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:24.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:24.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:24.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:24.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:24.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:24.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:24.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:24 ntpd[18422]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:24.103 INFO:teuthology.orchestra.run.smithi052.stdout: remote refid st t when poll reach delay offset jitter 2024-09-06T14:05:24.103 INFO:teuthology.orchestra.run.smithi052.stdout:============================================================================== 2024-09-06T14:05:24.103 INFO:teuthology.orchestra.run.smithi052.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:05:24.103 INFO:teuthology.orchestra.run.smithi052.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:05:24.103 INFO:teuthology.orchestra.run.smithi052.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:05:24.103 INFO:teuthology.orchestra.run.smithi052.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:05:25.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:25 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:25.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:25 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:25.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:25 ntpd[18422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:05:25.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:25 ntpd[18422]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:05:25.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:25 ntpd[18422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:05:25.070 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:25 ntpd[18422]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:05:25.071 INFO:teuthology.orchestra.run.smithi148.stdout: 6 Sep 14:05:25 ntpd[18422]: ntpd: time slew +0.001004 s 2024-09-06T14:05:25.071 INFO:teuthology.orchestra.run.smithi148.stdout:ntpd: time slew +0.001004s 2024-09-06T14:05:25.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:25 ntpd[18422]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-06T14:05:25.071 INFO:teuthology.orchestra.run.smithi148.stderr: 6 Sep 14:05:25 ntpd[18422]: can't open /var/log/ntpstats/loopstats.20240906: Permission denied 2024-09-06T14:05:25.191 INFO:teuthology.orchestra.run.smithi148.stdout: remote refid st t when poll reach delay offset jitter 2024-09-06T14:05:25.191 INFO:teuthology.orchestra.run.smithi148.stdout:============================================================================== 2024-09-06T14:05:25.191 INFO:teuthology.orchestra.run.smithi148.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:05:25.191 INFO:teuthology.orchestra.run.smithi148.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:05:25.192 INFO:teuthology.orchestra.run.smithi148.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:05:25.192 INFO:teuthology.orchestra.run.smithi148.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:05:25.192 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-06T14:05:25.203 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-06T14:05:25.203 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:05:25.203 DEBUG:teuthology.orchestra.run.smithi052:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T14:05:25.209 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-09-06T14:05:25.210 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/vg_nvme/lv_1 2024-09-06T14:05:25.258 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-06T14:05:25.258 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:05:25.259 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 892 Links: 1 2024-09-06T14:05:25.259 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:05:25.259 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-09-06 14:01:45.943089655 +0000 2024-09-06T14:05:25.259 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-09-06 14:01:45.687069670 +0000 2024-09-06T14:05:25.259 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-09-06 14:01:45.687069670 +0000 2024-09-06T14:05:25.259 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-09-06T14:05:25.259 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-06T14:05:25.313 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-09-06T14:05:25.313 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-09-06T14:05:25.313 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.00028946 s, 1.8 MB/s 2024-09-06T14:05:25.314 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-06T14:05:25.363 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/vg_nvme/lv_2 2024-09-06T14:05:25.410 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-06T14:05:25.410 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:05:25.410 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 907 Links: 1 2024-09-06T14:05:25.410 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:05:25.410 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-09-06 14:01:46.451127979 +0000 2024-09-06T14:05:25.410 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-09-06 14:01:46.179107560 +0000 2024-09-06T14:05:25.410 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-09-06 14:01:46.179107560 +0000 2024-09-06T14:05:25.411 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-09-06T14:05:25.411 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-06T14:05:25.464 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-09-06T14:05:25.465 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-09-06T14:05:25.465 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000311042 s, 1.6 MB/s 2024-09-06T14:05:25.466 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-06T14:05:25.521 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/vg_nvme/lv_3 2024-09-06T14:05:25.570 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-06T14:05:25.570 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:05:25.570 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 920 Links: 1 2024-09-06T14:05:25.570 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:05:25.570 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-09-06 14:01:46.707147196 +0000 2024-09-06T14:05:25.570 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-09-06 14:01:46.703146895 +0000 2024-09-06T14:05:25.570 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-09-06 14:01:46.703146895 +0000 2024-09-06T14:05:25.570 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-09-06T14:05:25.571 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-06T14:05:25.625 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-09-06T14:05:25.625 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-09-06T14:05:25.625 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000317731 s, 1.6 MB/s 2024-09-06T14:05:25.626 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-06T14:05:25.677 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/vg_nvme/lv_4 2024-09-06T14:05:25.722 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-06T14:05:25.722 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:05:25.722 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 943 Links: 1 2024-09-06T14:05:25.722 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:05:25.722 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-09-06 14:01:47.203184036 +0000 2024-09-06T14:05:25.722 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-09-06 14:01:47.199183744 +0000 2024-09-06T14:05:25.722 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-09-06 14:01:47.199183744 +0000 2024-09-06T14:05:25.723 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-09-06T14:05:25.723 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-06T14:05:25.776 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-09-06T14:05:25.776 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-09-06T14:05:25.776 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000206969 s, 2.5 MB/s 2024-09-06T14:05:25.777 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-06T14:05:25.828 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-09-06T14:05:25.949 INFO:teuthology.orchestra.run.smithi052.stdout:loop 2024-09-06T14:05:25.951 INFO:tasks.nvme_loop:Connecting nvme_loop smithi052:/dev/vg_nvme/lv_1... 2024-09-06T14:05:25.951 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-09-06T14:05:25.969 INFO:teuthology.orchestra.run.smithi052.stdout:1 2024-09-06T14:05:25.990 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/vg_nvme/lv_11 2024-09-06T14:05:26.009 INFO:tasks.nvme_loop:Connecting nvme_loop smithi052:/dev/vg_nvme/lv_2... 2024-09-06T14:05:26.009 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-09-06T14:05:26.073 INFO:teuthology.orchestra.run.smithi052.stdout:1 2024-09-06T14:05:26.094 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/vg_nvme/lv_21 2024-09-06T14:05:26.112 INFO:tasks.nvme_loop:Connecting nvme_loop smithi052:/dev/vg_nvme/lv_3... 2024-09-06T14:05:26.113 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-09-06T14:05:26.172 INFO:teuthology.orchestra.run.smithi052.stdout:1 2024-09-06T14:05:26.194 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/vg_nvme/lv_31 2024-09-06T14:05:26.212 INFO:tasks.nvme_loop:Connecting nvme_loop smithi052:/dev/vg_nvme/lv_4... 2024-09-06T14:05:26.212 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-09-06T14:05:26.271 INFO:teuthology.orchestra.run.smithi052.stdout:1 2024-09-06T14:05:26.292 INFO:teuthology.orchestra.run.smithi052.stdout:/dev/vg_nvme/lv_41 2024-09-06T14:05:26.312 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:05:26.312 DEBUG:teuthology.orchestra.run.smithi052:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T14:05:26.363 DEBUG:teuthology.orchestra.run.smithi052:> sudo nvme list -o json 2024-09-06T14:05:26.417 INFO:teuthology.orchestra.run.smithi052.stdout:{ 2024-09-06T14:05:26.417 INFO:teuthology.orchestra.run.smithi052.stdout: "Devices" : [ 2024-09-06T14:05:26.417 INFO:teuthology.orchestra.run.smithi052.stdout: { 2024-09-06T14:05:26.417 INFO:teuthology.orchestra.run.smithi052.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-06T14:05:26.417 INFO:teuthology.orchestra.run.smithi052.stdout: "Firmware" : "E2010325", 2024-09-06T14:05:26.417 INFO:teuthology.orchestra.run.smithi052.stdout: "Index" : 0, 2024-09-06T14:05:26.417 INFO:teuthology.orchestra.run.smithi052.stdout: "ModelNumber" : "INTEL SSDPED1D480GA", 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: "SerialNumber" : "PHMB7513010N480DGN" 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: }, 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: { 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: "Index" : 1, 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: "ModelNumber" : "Linux", 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: "SerialNumber" : "ee420e7d2ddeab255922" 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: }, 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: { 2024-09-06T14:05:26.418 INFO:teuthology.orchestra.run.smithi052.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "Index" : 2, 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "ModelNumber" : "Linux", 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "SerialNumber" : "177d8bbad8b3f07ef1cd" 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: }, 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: { 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "Index" : 3, 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "ModelNumber" : "Linux", 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:05:26.419 INFO:teuthology.orchestra.run.smithi052.stdout: "SerialNumber" : "f7946e311e4b39373627" 2024-09-06T14:05:26.420 INFO:teuthology.orchestra.run.smithi052.stdout: }, 2024-09-06T14:05:26.420 INFO:teuthology.orchestra.run.smithi052.stdout: { 2024-09-06T14:05:26.420 INFO:teuthology.orchestra.run.smithi052.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-06T14:05:26.420 INFO:teuthology.orchestra.run.smithi052.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:05:26.420 INFO:teuthology.orchestra.run.smithi052.stdout: "Index" : 4, 2024-09-06T14:05:26.420 INFO:teuthology.orchestra.run.smithi052.stdout: "ModelNumber" : "Linux", 2024-09-06T14:05:26.420 INFO:teuthology.orchestra.run.smithi052.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:05:26.420 INFO:teuthology.orchestra.run.smithi052.stdout: "SerialNumber" : "a5f45b715b055ab80ffb" 2024-09-06T14:05:26.420 INFO:teuthology.orchestra.run.smithi052.stdout: } 2024-09-06T14:05:26.420 INFO:teuthology.orchestra.run.smithi052.stdout: ] 2024-09-06T14:05:26.421 INFO:teuthology.orchestra.run.smithi052.stdout:} 2024-09-06T14:05:26.421 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-06T14:05:26.421 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:05:26.422 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/scratch_devs 2024-09-06T14:05:26.478 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T14:05:26.479 DEBUG:teuthology.orchestra.run.smithi148:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T14:05:26.485 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-09-06T14:05:26.485 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/vg_nvme/lv_1 2024-09-06T14:05:26.531 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-06T14:05:26.531 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:05:26.531 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 5h/5d Inode: 890 Links: 1 2024-09-06T14:05:26.531 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:05:26.531 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2024-09-06 14:01:42.695592733 +0000 2024-09-06T14:05:26.531 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2024-09-06 14:01:42.447594948 +0000 2024-09-06T14:05:26.531 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2024-09-06 14:01:42.447594948 +0000 2024-09-06T14:05:26.531 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2024-09-06T14:05:26.532 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-06T14:05:26.585 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2024-09-06T14:05:26.585 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2024-09-06T14:05:26.585 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.00038108 s, 1.3 MB/s 2024-09-06T14:05:26.586 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-06T14:05:26.635 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/vg_nvme/lv_2 2024-09-06T14:05:26.686 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-06T14:05:26.686 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:05:26.686 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 5h/5d Inode: 907 Links: 1 2024-09-06T14:05:26.686 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:05:26.686 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2024-09-06 14:01:43.163588552 +0000 2024-09-06T14:05:26.686 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2024-09-06 14:01:42.927590660 +0000 2024-09-06T14:05:26.686 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2024-09-06 14:01:42.927590660 +0000 2024-09-06T14:05:26.686 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2024-09-06T14:05:26.687 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-06T14:05:26.741 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2024-09-06T14:05:26.741 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2024-09-06T14:05:26.741 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000448634 s, 1.1 MB/s 2024-09-06T14:05:26.742 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-06T14:05:26.791 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/vg_nvme/lv_3 2024-09-06T14:05:26.838 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-06T14:05:26.838 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:05:26.838 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 5h/5d Inode: 924 Links: 1 2024-09-06T14:05:26.838 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:05:26.838 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2024-09-06 14:01:43.651584194 +0000 2024-09-06T14:05:26.838 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2024-09-06 14:01:43.387586552 +0000 2024-09-06T14:05:26.838 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2024-09-06 14:01:43.387586552 +0000 2024-09-06T14:05:26.838 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2024-09-06T14:05:26.839 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-06T14:05:26.892 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2024-09-06T14:05:26.893 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2024-09-06T14:05:26.893 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000423952 s, 1.2 MB/s 2024-09-06T14:05:26.894 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-06T14:05:26.943 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/vg_nvme/lv_4 2024-09-06T14:05:26.990 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-06T14:05:26.990 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:05:26.990 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 5h/5d Inode: 937 Links: 1 2024-09-06T14:05:26.990 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:05:26.990 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2024-09-06 14:01:44.139579834 +0000 2024-09-06T14:05:26.990 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2024-09-06 14:01:43.903581942 +0000 2024-09-06T14:05:26.990 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2024-09-06 14:01:43.903581942 +0000 2024-09-06T14:05:26.990 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2024-09-06T14:05:26.991 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-06T14:05:27.044 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2024-09-06T14:05:27.044 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2024-09-06T14:05:27.044 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000296038 s, 1.7 MB/s 2024-09-06T14:05:27.045 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-06T14:05:27.095 DEBUG:teuthology.orchestra.run.smithi148:> 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-09-06T14:05:27.240 INFO:teuthology.orchestra.run.smithi148.stdout:loop 2024-09-06T14:05:27.241 INFO:tasks.nvme_loop:Connecting nvme_loop smithi148:/dev/vg_nvme/lv_1... 2024-09-06T14:05:27.242 DEBUG:teuthology.orchestra.run.smithi148:> 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-09-06T14:05:27.258 INFO:teuthology.orchestra.run.smithi148.stdout:1 2024-09-06T14:05:27.280 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/vg_nvme/lv_11 2024-09-06T14:05:27.297 INFO:tasks.nvme_loop:Connecting nvme_loop smithi148:/dev/vg_nvme/lv_2... 2024-09-06T14:05:27.298 DEBUG:teuthology.orchestra.run.smithi148:> 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-09-06T14:05:27.357 INFO:teuthology.orchestra.run.smithi148.stdout:1 2024-09-06T14:05:27.379 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/vg_nvme/lv_21 2024-09-06T14:05:27.396 INFO:tasks.nvme_loop:Connecting nvme_loop smithi148:/dev/vg_nvme/lv_3... 2024-09-06T14:05:27.396 DEBUG:teuthology.orchestra.run.smithi148:> 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-09-06T14:05:27.453 INFO:teuthology.orchestra.run.smithi148.stdout:1 2024-09-06T14:05:27.473 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/vg_nvme/lv_31 2024-09-06T14:05:27.492 INFO:tasks.nvme_loop:Connecting nvme_loop smithi148:/dev/vg_nvme/lv_4... 2024-09-06T14:05:27.492 DEBUG:teuthology.orchestra.run.smithi148:> 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-09-06T14:05:27.550 INFO:teuthology.orchestra.run.smithi148.stdout:1 2024-09-06T14:05:27.571 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/vg_nvme/lv_41 2024-09-06T14:05:27.589 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T14:05:27.589 DEBUG:teuthology.orchestra.run.smithi148:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T14:05:27.638 DEBUG:teuthology.orchestra.run.smithi148:> sudo nvme list -o json 2024-09-06T14:05:27.691 INFO:teuthology.orchestra.run.smithi148.stdout:{ 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: "Devices" : [ 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: { 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: "Firmware" : "8DV101H0", 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: "Index" : 0, 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: "ModelNumber" : "INTEL SSDPEDMD400G4", 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: "SerialNumber" : "CVFT6233005G400BGN" 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: }, 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: { 2024-09-06T14:05:27.692 INFO:teuthology.orchestra.run.smithi148.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "Index" : 1, 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "ModelNumber" : "Linux", 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "SerialNumber" : "5ab001ae86bb833515fc" 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: }, 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: { 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "Index" : 2, 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "ModelNumber" : "Linux", 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: "SerialNumber" : "ae7fc226d04dc9a8305a" 2024-09-06T14:05:27.693 INFO:teuthology.orchestra.run.smithi148.stdout: }, 2024-09-06T14:05:27.696 INFO:teuthology.orchestra.run.smithi148.stdout: { 2024-09-06T14:05:27.696 INFO:teuthology.orchestra.run.smithi148.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-06T14:05:27.696 INFO:teuthology.orchestra.run.smithi148.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:05:27.696 INFO:teuthology.orchestra.run.smithi148.stdout: "Index" : 3, 2024-09-06T14:05:27.696 INFO:teuthology.orchestra.run.smithi148.stdout: "ModelNumber" : "Linux", 2024-09-06T14:05:27.696 INFO:teuthology.orchestra.run.smithi148.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:05:27.696 INFO:teuthology.orchestra.run.smithi148.stdout: "SerialNumber" : "9955b8381304daf7cd2d" 2024-09-06T14:05:27.697 INFO:teuthology.orchestra.run.smithi148.stdout: }, 2024-09-06T14:05:27.697 INFO:teuthology.orchestra.run.smithi148.stdout: { 2024-09-06T14:05:27.697 INFO:teuthology.orchestra.run.smithi148.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-06T14:05:27.697 INFO:teuthology.orchestra.run.smithi148.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:05:27.697 INFO:teuthology.orchestra.run.smithi148.stdout: "Index" : 4, 2024-09-06T14:05:27.697 INFO:teuthology.orchestra.run.smithi148.stdout: "ModelNumber" : "Linux", 2024-09-06T14:05:27.697 INFO:teuthology.orchestra.run.smithi148.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:05:27.697 INFO:teuthology.orchestra.run.smithi148.stdout: "SerialNumber" : "a7d0f1970271a703323e" 2024-09-06T14:05:27.697 INFO:teuthology.orchestra.run.smithi148.stdout: } 2024-09-06T14:05:27.697 INFO:teuthology.orchestra.run.smithi148.stdout: ] 2024-09-06T14:05:27.698 INFO:teuthology.orchestra.run.smithi148.stdout:} 2024-09-06T14:05:27.698 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-06T14:05:27.698 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T14:05:27.698 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd of=/scratch_devs 2024-09-06T14:05:27.757 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-06T14:05:27.865 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\\)', 'CEPHADM_DAEMON_PLACE_FAIL', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': '8b38c33cecf4b0b7a9b3116eb9089e21e444ac73'} 2024-09-06T14:05:27.866 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:05:27.866 INFO:tasks.cephadm:Cluster fsid is 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:05:27.866 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-06T14:05:27.866 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-06T14:05:27.866 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi052': '172.21.15.52', 'mon.smithi148': '172.21.15.148'} 2024-09-06T14:05:27.867 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-06T14:05:27.867 DEBUG:teuthology.orchestra.run.smithi052:> sudo hostname $(hostname -s) 2024-09-06T14:05:27.883 DEBUG:teuthology.orchestra.run.smithi148:> sudo hostname $(hostname -s) 2024-09-06T14:05:27.900 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-06T14:05:27.901 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:05:28.051 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '8b38c33cecf4b0b7a9b3116eb9089e21e444ac73', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/82769/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-4704-g8b38c33c', 'node_name': '172.21.2.9+braggi09', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.3.0-4704-g8b38c33c-1jammy'}, 'url': 'https://1.chacra.ceph.com/r/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-04 19:43:57.745461', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-athakkar-testing-2024-09-04-1837', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-06T14:05:28.202 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref wip-athakkar-testing-2024-09-04-1837, sha1 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:05:28.205 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-06T14:05:28.205 INFO:tasks.cephadm:Downloading cephadm from url: https://1.chacra.ceph.com/binaries/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-06T14:05:28.206 DEBUG:teuthology.orchestra.run.smithi052:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-06T14:05:28.754 INFO:teuthology.orchestra.run.smithi052.stdout:-rw-rw-r-- 1 ubuntu ubuntu 810214 Sep 6 14:05 /home/ubuntu/cephtest/cephadm 2024-09-06T14:05:28.754 DEBUG:teuthology.orchestra.run.smithi148:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-06T14:05:29.216 INFO:teuthology.orchestra.run.smithi148.stdout:-rw-rw-r-- 1 ubuntu ubuntu 810214 Sep 6 14:05 /home/ubuntu/cephtest/cephadm 2024-09-06T14:05:29.217 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-09-06T14:05:29.225 DEBUG:teuthology.orchestra.run.smithi148:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-06T14:05:29.244 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 on all hosts... 2024-09-06T14:05:29.244 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 pull 2024-09-06T14:05:29.269 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 pull 2024-09-06T14:05:29.456 INFO:teuthology.orchestra.run.smithi052.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73... 2024-09-06T14:05:29.459 INFO:teuthology.orchestra.run.smithi148.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73... 2024-09-06T14:06:45.888 INFO:teuthology.orchestra.run.smithi148.stdout:{ 2024-09-06T14:06:45.888 INFO:teuthology.orchestra.run.smithi148.stdout: "ceph_version": "ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev)", 2024-09-06T14:06:45.889 INFO:teuthology.orchestra.run.smithi148.stdout: "image_id": "1c45aca0610a312233aa2613f7b416b2884ae14779f1297041485ab28f1c8110", 2024-09-06T14:06:45.889 INFO:teuthology.orchestra.run.smithi148.stdout: "repo_digests": [ 2024-09-06T14:06:45.889 INFO:teuthology.orchestra.run.smithi148.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:c86edd48571ab22373283621eb9feebce9df9c291d4164cfc4df1a09493e1f30" 2024-09-06T14:06:45.889 INFO:teuthology.orchestra.run.smithi148.stdout: ] 2024-09-06T14:06:45.889 INFO:teuthology.orchestra.run.smithi148.stdout:} 2024-09-06T14:06:46.734 INFO:teuthology.orchestra.run.smithi052.stdout:{ 2024-09-06T14:06:46.734 INFO:teuthology.orchestra.run.smithi052.stdout: "ceph_version": "ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev)", 2024-09-06T14:06:46.734 INFO:teuthology.orchestra.run.smithi052.stdout: "image_id": "1c45aca0610a312233aa2613f7b416b2884ae14779f1297041485ab28f1c8110", 2024-09-06T14:06:46.734 INFO:teuthology.orchestra.run.smithi052.stdout: "repo_digests": [ 2024-09-06T14:06:46.734 INFO:teuthology.orchestra.run.smithi052.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:c86edd48571ab22373283621eb9feebce9df9c291d4164cfc4df1a09493e1f30" 2024-09-06T14:06:46.734 INFO:teuthology.orchestra.run.smithi052.stdout: ] 2024-09-06T14:06:46.734 INFO:teuthology.orchestra.run.smithi052.stdout:} 2024-09-06T14:06:46.785 DEBUG:teuthology.orchestra.run.smithi052:> sudo mkdir -p /etc/ceph 2024-09-06T14:06:46.799 DEBUG:teuthology.orchestra.run.smithi148:> sudo mkdir -p /etc/ceph 2024-09-06T14:06:46.813 DEBUG:teuthology.orchestra.run.smithi052:> sudo chmod 777 /etc/ceph 2024-09-06T14:06:46.853 DEBUG:teuthology.orchestra.run.smithi148:> sudo chmod 777 /etc/ceph 2024-09-06T14:06:46.866 INFO:tasks.cephadm:Writing seed config... 2024-09-06T14:06:46.867 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-06T14:06:46.868 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-06T14:06:46.868 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-06T14:06:46.868 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-06T14:06:46.868 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-06T14:06:46.868 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-06T14:06:46.868 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-06T14:06:46.868 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-06T14:06:46.869 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:06:46.869 DEBUG:teuthology.orchestra.run.smithi052:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-06T14:06:46.902 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 = 11d261e0-6c59-11ef-bce4-c7b262605968 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-09-06T14:06:46.902 DEBUG:teuthology.orchestra.run.smithi052:mon.smithi052> sudo journalctl -f -n 0 -u ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi052.service 2024-09-06T14:06:46.947 INFO:tasks.cephadm:Bootstrapping... 2024-09-06T14:06:46.947 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 -v bootstrap --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.52 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-06T14:06:47.174 INFO:teuthology.orchestra.run.smithi052.stdout:-------------------------------------------------------------------------------- 2024-09-06T14:06:47.175 INFO:teuthology.orchestra.run.smithi052.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73', '-v', 'bootstrap', '--fsid', '11d261e0-6c59-11ef-bce4-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-ip', '172.21.15.52', '--skip-admin-label'] 2024-09-06T14:06:47.175 INFO:teuthology.orchestra.run.smithi052.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-06T14:06:47.175 INFO:teuthology.orchestra.run.smithi052.stdout:Verifying podman|docker is present... 2024-09-06T14:06:47.176 INFO:teuthology.orchestra.run.smithi052.stdout:Verifying lvm2 is present... 2024-09-06T14:06:47.176 INFO:teuthology.orchestra.run.smithi052.stdout:Verifying time synchronization is in place... 2024-09-06T14:06:47.182 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-06T14:06:47.182 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-06T14:06:47.187 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-06T14:06:47.187 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout inactive 2024-09-06T14:06:47.190 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-06T14:06:47.190 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-06T14:06:47.195 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-06T14:06:47.195 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout inactive 2024-09-06T14:06:47.199 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-06T14:06:47.199 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout masked 2024-09-06T14:06:47.202 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-06T14:06:47.202 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout inactive 2024-09-06T14:06:47.206 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-06T14:06:47.206 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-06T14:06:47.210 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-06T14:06:47.210 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout inactive 2024-09-06T14:06:47.213 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout enabled 2024-09-06T14:06:47.218 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout active 2024-09-06T14:06:47.218 INFO:teuthology.orchestra.run.smithi052.stdout:Unit ntp.service is enabled and running 2024-09-06T14:06:47.218 INFO:teuthology.orchestra.run.smithi052.stdout:Repeating the final host check... 2024-09-06T14:06:47.218 INFO:teuthology.orchestra.run.smithi052.stdout:docker (/usr/bin/docker) is present 2024-09-06T14:06:47.218 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl is present 2024-09-06T14:06:47.218 INFO:teuthology.orchestra.run.smithi052.stdout:lvcreate is present 2024-09-06T14:06:47.221 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-06T14:06:47.221 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-06T14:06:47.225 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-06T14:06:47.225 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout inactive 2024-09-06T14:06:47.228 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-06T14:06:47.228 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-06T14:06:47.233 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-06T14:06:47.233 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout inactive 2024-09-06T14:06:47.238 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-06T14:06:47.238 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout masked 2024-09-06T14:06:47.242 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-06T14:06:47.242 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout inactive 2024-09-06T14:06:47.246 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-06T14:06:47.246 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-06T14:06:47.250 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-06T14:06:47.250 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout inactive 2024-09-06T14:06:47.254 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout enabled 2024-09-06T14:06:47.258 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stdout active 2024-09-06T14:06:47.258 INFO:teuthology.orchestra.run.smithi052.stdout:Unit ntp.service is enabled and running 2024-09-06T14:06:47.258 INFO:teuthology.orchestra.run.smithi052.stdout:Host looks OK 2024-09-06T14:06:47.258 INFO:teuthology.orchestra.run.smithi052.stdout:Cluster fsid: 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:06:47.258 INFO:teuthology.orchestra.run.smithi052.stdout:Acquiring lock 140684036549712 on /run/cephadm/11d261e0-6c59-11ef-bce4-c7b262605968.lock 2024-09-06T14:06:47.258 INFO:teuthology.orchestra.run.smithi052.stdout:Lock 140684036549712 acquired on /run/cephadm/11d261e0-6c59-11ef-bce4-c7b262605968.lock 2024-09-06T14:06:47.258 INFO:teuthology.orchestra.run.smithi052.stdout:Verifying IP 172.21.15.52 port 3300 ... 2024-09-06T14:06:47.259 INFO:teuthology.orchestra.run.smithi052.stdout:Verifying IP 172.21.15.52 port 6789 ... 2024-09-06T14:06:47.259 INFO:teuthology.orchestra.run.smithi052.stdout:Base mon IP(s) is [172.21.15.52:3300, 172.21.15.52:6789], mon addrv is [v2:172.21.15.52:3300,v1:172.21.15.52:6789] 2024-09-06T14:06:47.261 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-09-06T14:06:47.261 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-06T14:06:47.261 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.52 2024-09-06T14:06:47.263 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-06T14:06:47.263 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-06T14:06:47.263 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1788sec hoplimit 64 pref medium 2024-09-06T14:06:47.265 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-06T14:06:47.266 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-06T14:06:47.266 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-06T14:06:47.266 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-06T14:06:47.266 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:15de/64 scope link 2024-09-06T14:06:47.266 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-06T14:06:47.266 INFO:teuthology.orchestra.run.smithi052.stdout:Mon IP `172.21.15.52` is in CIDR network `172.21.0.0/20` 2024-09-06T14:06:47.266 INFO:teuthology.orchestra.run.smithi052.stdout:Mon IP `172.21.15.52` is in CIDR network `172.21.0.0/20` 2024-09-06T14:06:47.266 INFO:teuthology.orchestra.run.smithi052.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-06T14:06:47.266 INFO:teuthology.orchestra.run.smithi052.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-06T14:06:47.267 INFO:teuthology.orchestra.run.smithi052.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73... 2024-09-06T14:06:47.505 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/docker: stdout 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73: Pulling from ceph-ci/ceph 2024-09-06T14:06:47.505 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/docker: stdout Digest: sha256:c86edd48571ab22373283621eb9feebce9df9c291d4164cfc4df1a09493e1f30 2024-09-06T14:06:47.505 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:06:47.505 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:06:49.123 INFO:teuthology.orchestra.run.smithi052.stdout:ceph: stdout ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev) 2024-09-06T14:06:49.123 INFO:teuthology.orchestra.run.smithi052.stdout:Ceph version: ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev) 2024-09-06T14:06:49.124 INFO:teuthology.orchestra.run.smithi052.stdout:Extracting ceph user uid/gid from container image... 2024-09-06T14:06:50.529 INFO:teuthology.orchestra.run.smithi052.stdout:stat: stdout 167 167 2024-09-06T14:06:50.529 INFO:teuthology.orchestra.run.smithi052.stdout:Creating initial keys... 2024-09-06T14:06:51.851 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-authtool: stdout AQB7DNtmfLE5FRAA/uHbAJdbkqLRQbUczHqwzw== 2024-09-06T14:06:53.315 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-authtool: stdout AQB8DNtmMqO/LhAAF006IV9e6yGigdgJB4JtaA== 2024-09-06T14:06:54.712 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-authtool: stdout AQB+DNtmjhOEBRAAfyp57vnLEOjOmHSxaiAt6g== 2024-09-06T14:06:54.713 INFO:teuthology.orchestra.run.smithi052.stdout:Creating initial monmap... 2024-09-06T14:06:56.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-06T14:06:56.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-06T14:06:56.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:06:56.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-06T14:06:56.136 INFO:teuthology.orchestra.run.smithi052.stdout:monmaptool for smithi052 [v2:172.21.15.52:3300,v1:172.21.15.52:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-06T14:06:56.137 INFO:teuthology.orchestra.run.smithi052.stdout:setting min_mon_release = quincy 2024-09-06T14:06:56.137 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/monmaptool: set fsid to 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:06:56.137 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-06T14:06:56.137 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:06:56.137 INFO:teuthology.orchestra.run.smithi052.stdout:Creating mon... 2024-09-06T14:06:57.614 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:56.999+0000 7f8faed2dc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-06T14:06:57.614 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:56.999+0000 7f8faed2dc80 1 imported monmap: 2024-09-06T14:06:57.614 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-06T14:06:57.614 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-06T14:06:55.627106+0000 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr created 2024-09-06T14:06:55.627106+0000 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:56.999+0000 7f8faed2dc80 0 /usr/bin/ceph-mon: set fsid to 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: RocksDB version: 7.9.2 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Git sha 0 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Compile date 2024-09-04 13:52:53 2024-09-06T14:06:57.615 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: DB SUMMARY 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: DB Session ID: OV83GXN10KEHI87OR325 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi052/store.db dir, Total Num: 0, files: 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi052/store.db: 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.error_if_exists: 0 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.create_if_missing: 1 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.paranoid_checks: 1 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-06T14:06:57.616 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.env: 0x55d51c529160 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.info_log: 0x55d51d224f00 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.statistics: (nil) 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.use_fsync: 0 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_log_file_size: 0 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.allow_fallocate: 1 2024-09-06T14:06:57.617 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.use_direct_reads: 0 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.db_log_dir: 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.wal_dir: 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-06T14:06:57.618 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.write_buffer_manager: 0x55d51d21d540 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.unordered_write: 0 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-06T14:06:57.619 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.row_cache: None 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.wal_filter: None 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.two_write_queues: 0 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.wal_compression: 0 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.atomic_flush: 0 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.log_readahead_size: 0 2024-09-06T14:06:57.620 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_background_jobs: 2 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_background_compactions: -1 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_subcompactions: 1 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-06T14:06:57.621 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_open_files: -1 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_background_flushes: -1 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Compression algorithms supported: 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: kZSTD supported: 0 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: kXpressCompression supported: 0 2024-09-06T14:06:57.622 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: kBZip2Compression supported: 0 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: kLZ4Compression supported: 1 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: kZlibCompression supported: 1 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: kSnappyCompression supported: 1 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi052/store.db/MANIFEST-000001 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.623 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.merge_operator: 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_filter: None 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55d51d224b20) 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-06T14:06:57.624 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55d51d20c850 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-06T14:06:57.625 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-06T14:06:57.626 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compression: NoCompression 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.num_levels: 7 2024-09-06T14:06:57.627 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-06T14:06:57.628 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-06T14:06:57.629 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-06T14:06:57.630 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-06T14:06:57.631 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.inplace_update_support: 0 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.bloom_locality: 0 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.max_successive_merges: 0 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.ttl: 2592000 2024-09-06T14:06:57.632 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.enable_blob_files: false 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.min_blob_size: 0 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-06T14:06:57.633 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi052/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-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: b84df41f-0009-49d9-bd81-327b5eb695f2 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.003+0000 7f8faed2dc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.007+0000 7f8faed2dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55d51d23ce00 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.007+0000 7f8faed2dc80 4 rocksdb: DB pointer 0x55d51d31e000 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.007+0000 7f8fa64b8640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.007+0000 7f8fa64b8640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-06T14:06:57.634 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.635 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-06T14:06:57.636 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55d51d20c850#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.007+0000 7f8faed2dc80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.007+0000 7f8faed2dc80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:06:57.007+0000 7f8faed2dc80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi052 for mon.smithi052 2024-09-06T14:06:57.637 INFO:teuthology.orchestra.run.smithi052.stdout:create mon.smithi052 on 2024-09-06T14:06:58.038 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-06T14:06:58.252 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-11d261e0-6c59-11ef-bce4-c7b262605968.target -> /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968.target. 2024-09-06T14:06:58.252 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-11d261e0-6c59-11ef-bce4-c7b262605968.target -> /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968.target. 2024-09-06T14:06:58.522 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi052 2024-09-06T14:06:58.522 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Failed to reset failed state of unit ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi052.service: Unit ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi052.service not loaded. 2024-09-06T14:06:58.711 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968.target.wants/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi052.service -> /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service. 2024-09-06T14:06:58.719 INFO:teuthology.orchestra.run.smithi052.stdout:firewalld does not appear to be present 2024-09-06T14:06:58.719 INFO:teuthology.orchestra.run.smithi052.stdout:Not possible to enable service . firewalld.service is not available 2024-09-06T14:06:58.719 INFO:teuthology.orchestra.run.smithi052.stdout:Waiting for mon to start... 2024-09-06T14:06:58.719 INFO:teuthology.orchestra.run.smithi052.stdout:Waiting for mon... 2024-09-06T14:07:00.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:00 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.178789+0000 mon.smithi052 (mon.0) 1 : cluster [INF] mon.smithi052 is new leader, mons smithi052 in quorum (ranks 0) 2024-09-06T14:07:01.081 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout cluster: 2024-09-06T14:07:01.081 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout id: 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:07:01.081 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-06T14:07:01.081 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:01.081 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout services: 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi052 (age 0.349801s) 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout data: 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout pgs: 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:01.082 INFO:teuthology.orchestra.run.smithi052.stdout:mon is available 2024-09-06T14:07:01.083 INFO:teuthology.orchestra.run.smithi052.stdout:Assimilating anything we can from ceph.conf... 2024-09-06T14:07:01.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182623+0000 mon.smithi052 (mon.0) 2 : cluster [INF] mon.smithi052 is new leader, mons smithi052 in quorum (ranks 0) 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182623+0000 mon.smithi052 (mon.0) 2 : cluster [INF] mon.smithi052 is new leader, mons smithi052 in quorum (ranks 0) 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182786+0000 mon.smithi052 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182786+0000 mon.smithi052 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182801+0000 mon.smithi052 (mon.0) 4 : cluster [DBG] fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182801+0000 mon.smithi052 (mon.0) 4 : cluster [DBG] fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182813+0000 mon.smithi052 (mon.0) 5 : cluster [DBG] last_changed 2024-09-06T14:06:55.627106+0000 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182813+0000 mon.smithi052 (mon.0) 5 : cluster [DBG] last_changed 2024-09-06T14:06:55.627106+0000 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182827+0000 mon.smithi052 (mon.0) 6 : cluster [DBG] created 2024-09-06T14:06:55.627106+0000 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182827+0000 mon.smithi052 (mon.0) 6 : cluster [DBG] created 2024-09-06T14:06:55.627106+0000 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182842+0000 mon.smithi052 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:07:01.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182842+0000 mon.smithi052 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182858+0000 mon.smithi052 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182858+0000 mon.smithi052 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182871+0000 mon.smithi052 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.182871+0000 mon.smithi052 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.185413+0000 mon.smithi052 (mon.0) 10 : cluster [DBG] fsmap 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.185413+0000 mon.smithi052 (mon.0) 10 : cluster [DBG] fsmap 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.187632+0000 mon.smithi052 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.187632+0000 mon.smithi052 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.188044+0000 mon.smithi052 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: cluster 2024-09-06T14:07:00.188044+0000 mon.smithi052 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-06T14:07:01.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: audit 2024-09-06T14:07:00.532367+0000 mon.smithi052 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.52:0/1091295083' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-06T14:07:01.442 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:01 smithi052 bash[19352]: audit 2024-09-06T14:07:00.532367+0000 mon.smithi052 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.52:0/1091295083' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-06T14:07:02.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:02 smithi052 bash[19352]: audit 2024-09-06T14:07:02.219962+0000 mon.smithi052 (mon.0) 14 : audit [INF] from='client.? 172.21.15.52:0/2324775880' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-06T14:07:02.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:02 smithi052 bash[19352]: audit 2024-09-06T14:07:02.219962+0000 mon.smithi052 (mon.0) 14 : audit [INF] from='client.? 172.21.15.52:0/2324775880' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-06T14:07:02.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:02 smithi052 bash[19352]: audit 2024-09-06T14:07:02.222788+0000 mon.smithi052 (mon.0) 15 : audit [INF] from='client.? 172.21.15.52:0/2324775880' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-06T14:07:02.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:02 smithi052 bash[19352]: audit 2024-09-06T14:07:02.222788+0000 mon.smithi052 (mon.0) 15 : audit [INF] from='client.? 172.21.15.52:0/2324775880' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-06T14:07:02.729 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:02.729 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout [global] 2024-09-06T14:07:02.729 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout fsid = 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:07:02.729 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-06T14:07:02.729 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.52:3300,v1:172.21.15.52:6789] 2024-09-06T14:07:02.729 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout [osd] 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-06T14:07:02.730 INFO:teuthology.orchestra.run.smithi052.stdout:Generating new minimal ceph.conf... 2024-09-06T14:07:04.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:03 smithi052 bash[19352]: audit 2024-09-06T14:07:03.846711+0000 mon.smithi052 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.52:0/3433744061' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:07:04.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:03 smithi052 bash[19352]: audit 2024-09-06T14:07:03.846711+0000 mon.smithi052 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.52:0/3433744061' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:07:04.325 INFO:teuthology.orchestra.run.smithi052.stdout:Restarting the monitor... 2024-09-06T14:07:04.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:04 smithi052 systemd[1]: Stopping Ceph mon.smithi052 for 11d261e0-6c59-11ef-bce4-c7b262605968... 2024-09-06T14:07:04.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:04 smithi052 bash[19352]: debug 2024-09-06T14:07:04.459+0000 7f3795990640 -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-09-06T14:07:04.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:04 smithi052 bash[19352]: debug 2024-09-06T14:07:04.459+0000 7f3795990640 -1 mon.smithi052@0(leader) e1 *** Got Signal Terminated *** 2024-09-06T14:07:05.076 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:04 smithi052 bash[19732]: ceph-11d261e0-6c59-11ef-bce4-c7b262605968-mon-smithi052 2024-09-06T14:07:05.096 INFO:teuthology.orchestra.run.smithi052.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-06T14:07:05.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:05 smithi052 bash[19794]: Error response from daemon: No such container: ceph-11d261e0-6c59-11ef-bce4-c7b262605968-mon-smithi052 2024-09-06T14:07:05.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:05 smithi052 systemd[1]: ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi052.service: Deactivated successfully. 2024-09-06T14:07:05.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:05 smithi052 systemd[1]: Stopped Ceph mon.smithi052 for 11d261e0-6c59-11ef-bce4-c7b262605968. 2024-09-06T14:07:05.407 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:05 smithi052 systemd[1]: Started Ceph mon.smithi052 for 11d261e0-6c59-11ef-bce4-c7b262605968. 2024-09-06T14:07:06.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.519+0000 7f7fb056ec80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-06T14:07:06.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.519+0000 7f7fb056ec80 0 ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev), process ceph-mon, pid 7 2024-09-06T14:07:06.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.519+0000 7f7fb056ec80 0 pidfile_write: ignore empty --pid-file 2024-09-06T14:07:06.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 0 load: jerasure load: lrc 2024-09-06T14:07:06.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: RocksDB version: 7.9.2 2024-09-06T14:07:06.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Git sha 0 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Compile date 2024-09-04 13:52:53 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: DB SUMMARY 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: DB Session ID: VUOAKX25C727DJTWDQAI 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: CURRENT file: CURRENT 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi052/store.db dir, Total Num: 1, files: 000008.sst 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi052/store.db: 000009.log size: 89078 ; 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.error_if_exists: 0 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.create_if_missing: 0 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.paranoid_checks: 1 2024-09-06T14:07:06.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.env: 0x56504dbb6160 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.info_log: 0x56504f8a5a60 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.statistics: (nil) 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.use_fsync: 0 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_log_file_size: 0 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-06T14:07:06.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.allow_fallocate: 1 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.use_direct_reads: 0 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.db_log_dir: 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.wal_dir: 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-06T14:07:06.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.write_buffer_manager: 0x56504f8a8e60 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.unordered_write: 0 2024-09-06T14:07:06.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.row_cache: None 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.wal_filter: None 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.two_write_queues: 0 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.wal_compression: 0 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.atomic_flush: 0 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-06T14:07:06.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.log_readahead_size: 0 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_background_jobs: 2 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_background_compactions: -1 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_subcompactions: 1 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-06T14:07:06.695 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_open_files: -1 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_background_flushes: -1 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Compression algorithms supported: 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: kZSTD supported: 0 2024-09-06T14:07:06.696 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: kXpressCompression supported: 0 2024-09-06T14:07:06.697 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: kBZip2Compression supported: 0 2024-09-06T14:07:06.697 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-06T14:07:06.697 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: kLZ4Compression supported: 1 2024-09-06T14:07:06.697 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: kZlibCompression supported: 1 2024-09-06T14:07:06.697 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-06T14:07:06.697 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: kSnappyCompression supported: 1 2024-09-06T14:07:06.697 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-06T14:07:06.697 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-06T14:07:06.697 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi052/store.db/MANIFEST-000010 2024-09-06T14:07:06.698 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.merge_operator: 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_filter: None 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x56504f8a56e0) 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cache_index_and_filter_blocks: 1 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-06T14:07:06.699 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: pin_top_level_index_and_filter: 1 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: index_type: 0 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: data_block_index_type: 0 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: index_shortening: 1 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: data_block_hash_table_util_ratio: 0.750000 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: checksum: 4 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: no_block_cache: 0 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: block_cache: 0x56504f89a850 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: block_cache_name: BinnedLRUCache 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: block_cache_options: 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: capacity : 536870912 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: num_shard_bits : 4 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: strict_capacity_limit : 0 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: high_pri_pool_ratio: 0.000 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: block_cache_compressed: (nil) 2024-09-06T14:07:06.700 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: persistent_cache: (nil) 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: block_size: 4096 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: block_size_deviation: 10 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: block_restart_interval: 16 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: index_block_restart_interval: 1 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: metadata_block_size: 4096 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: partition_filters: 0 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: use_delta_encoding: 1 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: filter_policy: bloomfilter 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: whole_key_filtering: 1 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: verify_compression: 0 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: read_amp_bytes_per_bit: 0 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: format_version: 5 2024-09-06T14:07:06.701 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: enable_index_compression: 1 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: block_align: 0 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: max_auto_readahead_size: 262144 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: prepopulate_block_cache: 0 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: initial_auto_readahead_size: 8192 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: num_file_reads_for_auto_readahead: 2 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compression: NoCompression 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.num_levels: 7 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-06T14:07:06.702 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-06T14:07:06.703 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-06T14:07:06.704 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-06T14:07:06.705 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-06T14:07:06.706 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-06T14:07:06.706 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-06T14:07:06.706 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-06T14:07:06.708 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-06T14:07:06.708 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-06T14:07:06.708 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-06T14:07:06.708 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-06T14:07:06.708 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-06T14:07:06.708 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.inplace_update_support: 0 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.bloom_locality: 0 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.max_successive_merges: 0 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-06T14:07:06.709 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.ttl: 2592000 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.enable_blob_files: false 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.min_blob_size: 0 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-06T14:07:06.710 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi052/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-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: b84df41f-0009-49d9-bd81-327b5eb695f2 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725631626529699, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.523+0000 7f7fb056ec80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.527+0000 7f7fb056ec80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725631626531244, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85854, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 257, "table_properties": {"data_size": 83994, "index_size": 244, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10002, "raw_average_key_size": 46, "raw_value_size": 78243, "raw_average_value_size": 362, "num_data_blocks": 11, "num_entries": 216, "num_filter_entries": 216, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1725631626, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "b84df41f-0009-49d9-bd81-327b5eb695f2", "db_session_id": "VUOAKX25C727DJTWDQAI", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.527+0000 7f7fb056ec80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725631626531397, "job": 1, "event": "recovery_finished"} 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.527+0000 7f7fb056ec80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.527+0000 7f7fb056ec80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi052/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.527+0000 7f7fb056ec80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x56504f8c8e00 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.527+0000 7f7fb056ec80 4 rocksdb: DB pointer 0x56504f9cc000 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.527+0000 7f7fa6336640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-06T14:07:06.711 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.527+0000 7f7fa6336640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: ** DB Stats ** 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: ** Compaction Stats [default] ** 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: 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-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: L0 2/0 85.74 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 87.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-06T14:07:06.712 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Sum 2/0 85.74 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 87.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 87.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: ** Compaction Stats [default] ** 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: 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-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 87.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: AddFile(Total Files): cumulative 0, interval 0 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: AddFile(Keys): cumulative 0, interval 0 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Cumulative compaction: 0.00 GB write, 15.39 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-06T14:07:06.713 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Interval compaction: 0.00 GB write, 15.39 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: 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-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Block cache BinnedLRUCache@0x56504f89a850#7 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.44 KB,8.34465e-05%) Misc(1,0.00 KB,0%) 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: ** File Read Latency Histogram By Level [default] ** 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.531+0000 7f7fb056ec80 0 starting mon.smithi052 rank 0 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 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.531+0000 7f7fb056ec80 1 mon.smithi052@-1(???) e1 preinit fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.531+0000 7f7fb056ec80 0 mon.smithi052@-1(???).mds e1 new map 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.531+0000 7f7fb056ec80 0 mon.smithi052@-1(???).mds e1 print_map 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: e1 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: btime 2024-09-06T14:07:00:183271+0000 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-06T14:07:06.714 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: 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-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: legacy client fscid: -1 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: No filesystems configured 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.531+0000 7f7fb056ec80 0 mon.smithi052@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.531+0000 7f7fb056ec80 0 mon.smithi052@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.531+0000 7f7fb056ec80 0 mon.smithi052@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.531+0000 7f7fb056ec80 0 mon.smithi052@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: debug 2024-09-06T14:07:06.531+0000 7f7fb056ec80 1 mon.smithi052@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558847+0000 mon.smithi052 (mon.0) 1 : cluster [INF] mon.smithi052 is new leader, mons smithi052 in quorum (ranks 0) 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558847+0000 mon.smithi052 (mon.0) 1 : cluster [INF] mon.smithi052 is new leader, mons smithi052 in quorum (ranks 0) 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558915+0000 mon.smithi052 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558915+0000 mon.smithi052 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558924+0000 mon.smithi052 (mon.0) 3 : cluster [DBG] fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:07:06.715 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558924+0000 mon.smithi052 (mon.0) 3 : cluster [DBG] fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558930+0000 mon.smithi052 (mon.0) 4 : cluster [DBG] last_changed 2024-09-06T14:06:55.627106+0000 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558930+0000 mon.smithi052 (mon.0) 4 : cluster [DBG] last_changed 2024-09-06T14:06:55.627106+0000 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558936+0000 mon.smithi052 (mon.0) 5 : cluster [DBG] created 2024-09-06T14:06:55.627106+0000 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558936+0000 mon.smithi052 (mon.0) 5 : cluster [DBG] created 2024-09-06T14:06:55.627106+0000 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558943+0000 mon.smithi052 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558943+0000 mon.smithi052 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558950+0000 mon.smithi052 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558950+0000 mon.smithi052 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558957+0000 mon.smithi052 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.558957+0000 mon.smithi052 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.578809+0000 mon.smithi052 (mon.0) 9 : cluster [DBG] fsmap 2024-09-06T14:07:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.578809+0000 mon.smithi052 (mon.0) 9 : cluster [DBG] fsmap 2024-09-06T14:07:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.578838+0000 mon.smithi052 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-06T14:07:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.578838+0000 mon.smithi052 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-06T14:07:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.579186+0000 mon.smithi052 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-06T14:07:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:06 smithi052 bash[19834]: cluster 2024-09-06T14:07:06.579186+0000 mon.smithi052 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-06T14:07:07.401 INFO:teuthology.orchestra.run.smithi052.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-06T14:07:07.433 INFO:teuthology.orchestra.run.smithi052.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-06T14:07:07.433 INFO:teuthology.orchestra.run.smithi052.stdout:Creating mgr... 2024-09-06T14:07:07.433 INFO:teuthology.orchestra.run.smithi052.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-06T14:07:07.434 INFO:teuthology.orchestra.run.smithi052.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-06T14:07:07.434 INFO:teuthology.orchestra.run.smithi052.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-06T14:07:07.759 INFO:teuthology.orchestra.run.smithi052.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mgr.smithi052.grtqlq 2024-09-06T14:07:07.759 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Failed to reset failed state of unit ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mgr.smithi052.grtqlq.service: Unit ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mgr.smithi052.grtqlq.service not loaded. 2024-09-06T14:07:07.893 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:07 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:07:07.893 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:07 smithi052 bash[19834]: audit 2024-09-06T14:07:06.767164+0000 mon.smithi052 (mon.0) 12 : audit [INF] from='client.? 172.21.15.52:0/3410246429' entity='client.admin' 2024-09-06T14:07:07.893 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:07 smithi052 bash[19834]: audit 2024-09-06T14:07:06.767164+0000 mon.smithi052 (mon.0) 12 : audit [INF] from='client.? 172.21.15.52:0/3410246429' entity='client.admin' 2024-09-06T14:07:07.893 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:07 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:07:07.981 INFO:teuthology.orchestra.run.smithi052.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968.target.wants/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mgr.smithi052.grtqlq.service -> /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service. 2024-09-06T14:07:07.990 INFO:teuthology.orchestra.run.smithi052.stdout:firewalld does not appear to be present 2024-09-06T14:07:07.990 INFO:teuthology.orchestra.run.smithi052.stdout:Not possible to enable service . firewalld.service is not available 2024-09-06T14:07:07.990 INFO:teuthology.orchestra.run.smithi052.stdout:firewalld does not appear to be present 2024-09-06T14:07:07.990 INFO:teuthology.orchestra.run.smithi052.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-06T14:07:07.990 INFO:teuthology.orchestra.run.smithi052.stdout:Waiting for mgr to start... 2024-09-06T14:07:07.990 INFO:teuthology.orchestra.run.smithi052.stdout:Waiting for mgr... 2024-09-06T14:07:10.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:09 smithi052 bash[19834]: audit 2024-09-06T14:07:09.698657+0000 mon.smithi052 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.52:0/2206705776' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:07:10.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:09 smithi052 bash[19834]: audit 2024-09-06T14:07:09.698657+0000 mon.smithi052 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.52:0/2206705776' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:07:10.300 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:10.300 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:07:10.300 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "fsid": "11d261e0-6c59-11ef-bce4-c7b262605968", 2024-09-06T14:07:10.300 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "health": { 2024-09-06T14:07:10.300 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-06T14:07:10.300 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-06T14:07:10.300 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 0 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "smithi052" 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:10.301 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-06T14:07:10.302 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:10.303 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "btime": "2024-09-06T14:07:00:183271+0000", 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "restful" 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:07:10.304 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:07:10.305 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:10.305 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-06T14:07:10.305 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:10.305 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "modified": "2024-09-06T14:07:00.184179+0000", 2024-09-06T14:07:10.305 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:07:10.305 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:10.305 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-06T14:07:10.305 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:07:10.305 INFO:teuthology.orchestra.run.smithi052.stdout:mgr not available, waiting (1/15)... 2024-09-06T14:07:13.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:13 smithi052 bash[19834]: audit 2024-09-06T14:07:13.450018+0000 mon.smithi052 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.52:0/1411005740' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:07:13.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:13 smithi052 bash[19834]: audit 2024-09-06T14:07:13.450018+0000 mon.smithi052 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.52:0/1411005740' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:07:14.002 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:14.002 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:07:14.002 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "fsid": "11d261e0-6c59-11ef-bce4-c7b262605968", 2024-09-06T14:07:14.002 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "health": { 2024-09-06T14:07:14.002 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-06T14:07:14.002 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 0 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "smithi052" 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:14.003 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-06T14:07:14.004 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-06T14:07:14.004 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:14.004 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-06T14:07:14.004 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:14.004 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-06T14:07:14.004 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-06T14:07:14.004 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-06T14:07:14.004 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-06T14:07:14.004 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-06T14:07:14.004 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-06T14:07:14.007 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-06T14:07:14.008 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "btime": "2024-09-06T14:07:00:183271+0000", 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "restful" 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:07:14.009 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:14.010 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-06T14:07:14.010 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:14.010 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "modified": "2024-09-06T14:07:00.184179+0000", 2024-09-06T14:07:14.010 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:07:14.010 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:14.010 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-06T14:07:14.010 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:07:14.010 INFO:teuthology.orchestra.run.smithi052.stdout:mgr not available, waiting (2/15)... 2024-09-06T14:07:16.117 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: cluster 2024-09-06T14:07:15.744883+0000 mon.smithi052 (mon.0) 15 : cluster [INF] Activating manager daemon smithi052.grtqlq 2024-09-06T14:07:16.117 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: cluster 2024-09-06T14:07:15.744883+0000 mon.smithi052 (mon.0) 15 : cluster [INF] Activating manager daemon smithi052.grtqlq 2024-09-06T14:07:16.117 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: cluster 2024-09-06T14:07:15.753071+0000 mon.smithi052 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi052.grtqlq(active, starting, since 0.00872835s) 2024-09-06T14:07:16.117 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: cluster 2024-09-06T14:07:15.753071+0000 mon.smithi052 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi052.grtqlq(active, starting, since 0.00872835s) 2024-09-06T14:07:16.117 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: audit 2024-09-06T14:07:15.754114+0000 mon.smithi052 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:07:16.117 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: audit 2024-09-06T14:07:15.754114+0000 mon.smithi052 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:07:16.118 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: audit 2024-09-06T14:07:15.754323+0000 mon.smithi052 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:07:16.118 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: audit 2024-09-06T14:07:15.754323+0000 mon.smithi052 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:07:16.118 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: audit 2024-09-06T14:07:15.754495+0000 mon.smithi052 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:07:16.118 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: audit 2024-09-06T14:07:15.754495+0000 mon.smithi052 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:07:16.118 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: audit 2024-09-06T14:07:15.754660+0000 mon.smithi052 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:07:16.118 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: audit 2024-09-06T14:07:15.754660+0000 mon.smithi052 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:07:16.118 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: audit 2024-09-06T14:07:15.755625+0000 mon.smithi052 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi052.grtqlq", "id": "smithi052.grtqlq"} : dispatch 2024-09-06T14:07:16.118 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: audit 2024-09-06T14:07:15.755625+0000 mon.smithi052 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi052.grtqlq", "id": "smithi052.grtqlq"} : dispatch 2024-09-06T14:07:16.118 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: cluster 2024-09-06T14:07:15.784855+0000 mon.smithi052 (mon.0) 22 : cluster [INF] Manager daemon smithi052.grtqlq is now available 2024-09-06T14:07:16.118 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:15 smithi052 bash[19834]: cluster 2024-09-06T14:07:15.784855+0000 mon.smithi052 (mon.0) 22 : cluster [INF] Manager daemon smithi052.grtqlq is now available 2024-09-06T14:07:16.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: audit 2024-09-06T14:07:15.799225+0000 mon.smithi052 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:07:16.795 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: audit 2024-09-06T14:07:15.799225+0000 mon.smithi052 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:07:16.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: audit 2024-09-06T14:07:15.800827+0000 mon.smithi052 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:16.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: audit 2024-09-06T14:07:15.800827+0000 mon.smithi052 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:16.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: audit 2024-09-06T14:07:15.800990+0000 mon.smithi052 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/trash_purge_schedule"} : dispatch 2024-09-06T14:07:16.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: audit 2024-09-06T14:07:15.800990+0000 mon.smithi052 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/trash_purge_schedule"} : dispatch 2024-09-06T14:07:16.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: audit 2024-09-06T14:07:15.802494+0000 mon.smithi052 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:16.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: audit 2024-09-06T14:07:15.802494+0000 mon.smithi052 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:16.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: audit 2024-09-06T14:07:15.804047+0000 mon.smithi052 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:16.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: audit 2024-09-06T14:07:15.804047+0000 mon.smithi052 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.52:0/737075704' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:16.796 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: cluster 2024-09-06T14:07:16.760754+0000 mon.smithi052 (mon.0) 28 : cluster [DBG] mgrmap e3: smithi052.grtqlq(active, since 1.01641s) 2024-09-06T14:07:17.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:16 smithi052 bash[19834]: cluster 2024-09-06T14:07:16.760754+0000 mon.smithi052 (mon.0) 28 : cluster [DBG] mgrmap e3: smithi052.grtqlq(active, since 1.01641s) 2024-09-06T14:07:17.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:17 smithi052 bash[19834]: audit 2024-09-06T14:07:17.544485+0000 mon.smithi052 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.52:0/164919806' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:07:17.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:17 smithi052 bash[19834]: audit 2024-09-06T14:07:17.544485+0000 mon.smithi052 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.52:0/164919806' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:07:18.125 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:18.125 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:07:18.125 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "fsid": "11d261e0-6c59-11ef-bce4-c7b262605968", 2024-09-06T14:07:18.125 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "health": { 2024-09-06T14:07:18.125 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-06T14:07:18.125 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-06T14:07:18.126 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-06T14:07:18.127 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:18.127 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-06T14:07:18.127 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-06T14:07:18.127 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 0 2024-09-06T14:07:18.127 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:07:18.127 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-06T14:07:18.127 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "smithi052" 2024-09-06T14:07:18.127 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:07:18.127 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-09-06T14:07:18.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-06T14:07:18.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:18.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-06T14:07:18.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-06T14:07:18.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:18.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-06T14:07:18.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:18.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-06T14:07:18.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-06T14:07:18.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-06T14:07:18.130 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-06T14:07:18.130 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-06T14:07:18.130 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-06T14:07:18.132 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:18.132 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "btime": "2024-09-06T14:07:00:183271+0000", 2024-09-06T14:07:18.133 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-06T14:07:18.134 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-06T14:07:18.134 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:18.134 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-06T14:07:18.134 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-06T14:07:18.134 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-06T14:07:18.134 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-06T14:07:18.134 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-06T14:07:18.134 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-06T14:07:18.135 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "restful" 2024-09-06T14:07:18.135 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:07:18.135 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:07:18.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:18.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-06T14:07:18.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:07:18.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "modified": "2024-09-06T14:07:00.184179+0000", 2024-09-06T14:07:18.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:07:18.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:07:18.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-06T14:07:18.136 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:07:18.136 INFO:teuthology.orchestra.run.smithi052.stdout:mgr is available 2024-09-06T14:07:19.057 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:18 smithi052 bash[19834]: cluster 2024-09-06T14:07:17.804573+0000 mon.smithi052 (mon.0) 30 : cluster [DBG] mgrmap e4: smithi052.grtqlq(active, since 2s) 2024-09-06T14:07:19.057 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:18 smithi052 bash[19834]: cluster 2024-09-06T14:07:17.804573+0000 mon.smithi052 (mon.0) 30 : cluster [DBG] mgrmap e4: smithi052.grtqlq(active, since 2s) 2024-09-06T14:07:19.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:19 smithi052 bash[19834]: audit 2024-09-06T14:07:19.564927+0000 mon.smithi052 (mon.0) 31 : audit [INF] from='client.? 172.21.15.52:0/2966062145' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-06T14:07:19.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:19 smithi052 bash[19834]: audit 2024-09-06T14:07:19.564927+0000 mon.smithi052 (mon.0) 31 : audit [INF] from='client.? 172.21.15.52:0/2966062145' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-06T14:07:20.148 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:20.148 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout [global] 2024-09-06T14:07:20.148 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout fsid = 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:07:20.149 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-06T14:07:20.149 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.52:3300,v1:172.21.15.52:6789] 2024-09-06T14:07:20.149 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-06T14:07:20.149 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-06T14:07:20.150 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-06T14:07:20.150 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-06T14:07:20.150 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:20.150 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-06T14:07:20.150 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-06T14:07:20.150 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 2024-09-06T14:07:20.150 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout [osd] 2024-09-06T14:07:20.151 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-06T14:07:20.151 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-06T14:07:20.151 INFO:teuthology.orchestra.run.smithi052.stdout:Enabling cephadm module... 2024-09-06T14:07:22.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:21 smithi052 bash[19834]: audit 2024-09-06T14:07:21.657305+0000 mon.smithi052 (mon.0) 32 : audit [INF] from='client.? 172.21.15.52:0/2340189600' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-06T14:07:22.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:21 smithi052 bash[19834]: audit 2024-09-06T14:07:21.657305+0000 mon.smithi052 (mon.0) 32 : audit [INF] from='client.? 172.21.15.52:0/2340189600' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-06T14:07:23.021 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:22 smithi052 bash[19834]: audit 2024-09-06T14:07:21.709058+0000 mon.smithi052 (mon.0) 33 : audit [INF] from='client.? 172.21.15.52:0/2340189600' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-06T14:07:23.022 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:22 smithi052 bash[19834]: audit 2024-09-06T14:07:21.709058+0000 mon.smithi052 (mon.0) 33 : audit [INF] from='client.? 172.21.15.52:0/2340189600' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-06T14:07:23.022 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:22 smithi052 bash[19834]: cluster 2024-09-06T14:07:21.713328+0000 mon.smithi052 (mon.0) 34 : cluster [DBG] mgrmap e5: smithi052.grtqlq(active, since 5s) 2024-09-06T14:07:23.022 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:22 smithi052 bash[19834]: cluster 2024-09-06T14:07:21.713328+0000 mon.smithi052 (mon.0) 34 : cluster [DBG] mgrmap e5: smithi052.grtqlq(active, since 5s) 2024-09-06T14:07:23.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:23 smithi052 bash[19834]: audit 2024-09-06T14:07:23.620852+0000 mon.smithi052 (mon.0) 35 : audit [DBG] from='client.? 172.21.15.52:0/605532272' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-06T14:07:23.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:23 smithi052 bash[19834]: audit 2024-09-06T14:07:23.620852+0000 mon.smithi052 (mon.0) 35 : audit [DBG] from='client.? 172.21.15.52:0/605532272' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-06T14:07:24.128 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:07:24.128 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-06T14:07:24.128 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-06T14:07:24.128 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "active_name": "smithi052.grtqlq", 2024-09-06T14:07:24.128 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-06T14:07:24.129 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:07:24.129 INFO:teuthology.orchestra.run.smithi052.stdout:Waiting for the mgr to restart... 2024-09-06T14:07:24.129 INFO:teuthology.orchestra.run.smithi052.stdout:Waiting for mgr epoch 5... 2024-09-06T14:07:28.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: cluster 2024-09-06T14:07:27.965008+0000 mon.smithi052 (mon.0) 36 : cluster [INF] Active manager daemon smithi052.grtqlq restarted 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: cluster 2024-09-06T14:07:27.965008+0000 mon.smithi052 (mon.0) 36 : cluster [INF] Active manager daemon smithi052.grtqlq restarted 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: cluster 2024-09-06T14:07:27.965434+0000 mon.smithi052 (mon.0) 37 : cluster [INF] Activating manager daemon smithi052.grtqlq 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: cluster 2024-09-06T14:07:27.965434+0000 mon.smithi052 (mon.0) 37 : cluster [INF] Activating manager daemon smithi052.grtqlq 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: cluster 2024-09-06T14:07:27.973006+0000 mon.smithi052 (mon.0) 38 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: cluster 2024-09-06T14:07:27.973006+0000 mon.smithi052 (mon.0) 38 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: cluster 2024-09-06T14:07:27.973248+0000 mon.smithi052 (mon.0) 39 : cluster [DBG] mgrmap e6: smithi052.grtqlq(active, starting, since 0.00798955s) 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: cluster 2024-09-06T14:07:27.973248+0000 mon.smithi052 (mon.0) 39 : cluster [DBG] mgrmap e6: smithi052.grtqlq(active, starting, since 0.00798955s) 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: audit 2024-09-06T14:07:27.974285+0000 mon.smithi052 (mon.0) 40 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: audit 2024-09-06T14:07:27.974285+0000 mon.smithi052 (mon.0) 40 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: audit 2024-09-06T14:07:27.975782+0000 mon.smithi052 (mon.0) 41 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi052.grtqlq", "id": "smithi052.grtqlq"} : dispatch 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: audit 2024-09-06T14:07:27.975782+0000 mon.smithi052 (mon.0) 41 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi052.grtqlq", "id": "smithi052.grtqlq"} : dispatch 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: audit 2024-09-06T14:07:27.977094+0000 mon.smithi052 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:07:28.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: audit 2024-09-06T14:07:27.977094+0000 mon.smithi052 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:07:28.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: audit 2024-09-06T14:07:27.977392+0000 mon.smithi052 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:07:28.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: audit 2024-09-06T14:07:27.977392+0000 mon.smithi052 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:07:28.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: audit 2024-09-06T14:07:27.977679+0000 mon.smithi052 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:07:28.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: audit 2024-09-06T14:07:27.977679+0000 mon.smithi052 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:07:28.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: cluster 2024-09-06T14:07:28.004431+0000 mon.smithi052 (mon.0) 45 : cluster [INF] Manager daemon smithi052.grtqlq is now available 2024-09-06T14:07:28.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:28 smithi052 bash[19834]: cluster 2024-09-06T14:07:28.004431+0000 mon.smithi052 (mon.0) 45 : cluster [INF] Manager daemon smithi052.grtqlq is now available 2024-09-06T14:07:29.584 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:07:29.584 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-06T14:07:29.584 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-06T14:07:29.584 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:07:29.584 INFO:teuthology.orchestra.run.smithi052.stdout:mgr epoch 5 is available 2024-09-06T14:07:29.584 INFO:teuthology.orchestra.run.smithi052.stdout:Setting orchestrator backend to cephadm... 2024-09-06T14:07:30.384 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: cluster 2024-09-06T14:07:28.976565+0000 mon.smithi052 (mon.0) 46 : cluster [DBG] mgrmap e7: smithi052.grtqlq(active, since 1.01129s) 2024-09-06T14:07:30.384 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: cluster 2024-09-06T14:07:28.976565+0000 mon.smithi052 (mon.0) 46 : cluster [DBG] mgrmap e7: smithi052.grtqlq(active, since 1.01129s) 2024-09-06T14:07:30.385 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.268594+0000 mon.smithi052 (mon.0) 47 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:30.385 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.268594+0000 mon.smithi052 (mon.0) 47 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:30.385 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.273615+0000 mon.smithi052 (mon.0) 48 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:30.385 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.273615+0000 mon.smithi052 (mon.0) 48 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:30.385 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: cephadm 2024-09-06T14:07:29.274527+0000 mgr.smithi052.grtqlq (mgr.14116) 4 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-06T14:07:30.385 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: cephadm 2024-09-06T14:07:29.274527+0000 mgr.smithi052.grtqlq (mgr.14116) 4 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-06T14:07:30.385 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.278495+0000 mon.smithi052 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:30.385 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.278495+0000 mon.smithi052 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:30.385 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.283049+0000 mon.smithi052 (mon.0) 50 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:30.385 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.283049+0000 mon.smithi052 (mon.0) 50 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:30.386 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.288257+0000 mon.smithi052 (mon.0) 51 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:07:30.386 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.288257+0000 mon.smithi052 (mon.0) 51 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:07:30.386 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.291912+0000 mon.smithi052 (mon.0) 52 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:07:30.386 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.291912+0000 mon.smithi052 (mon.0) 52 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:07:30.386 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.301098+0000 mon.smithi052 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:07:30.386 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.301098+0000 mon.smithi052 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:07:30.386 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.303085+0000 mon.smithi052 (mon.0) 54 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/trash_purge_schedule"} : dispatch 2024-09-06T14:07:30.386 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:29 smithi052 bash[19834]: audit 2024-09-06T14:07:29.303085+0000 mon.smithi052 (mon.0) 54 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/trash_purge_schedule"} : dispatch 2024-09-06T14:07:31.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: cephadm 2024-09-06T14:07:30.328260+0000 mgr.smithi052.grtqlq (mgr.14116) 5 : cephadm [INF] [06/Sep/2024:14:07:30] ENGINE Bus STARTING 2024-09-06T14:07:31.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: cephadm 2024-09-06T14:07:30.328260+0000 mgr.smithi052.grtqlq (mgr.14116) 5 : cephadm [INF] [06/Sep/2024:14:07:30] ENGINE Bus STARTING 2024-09-06T14:07:31.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: cephadm 2024-09-06T14:07:30.452696+0000 mgr.smithi052.grtqlq (mgr.14116) 6 : cephadm [INF] [06/Sep/2024:14:07:30] ENGINE Serving on https://172.21.15.52:7150 2024-09-06T14:07:31.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: cephadm 2024-09-06T14:07:30.452696+0000 mgr.smithi052.grtqlq (mgr.14116) 6 : cephadm [INF] [06/Sep/2024:14:07:30] ENGINE Serving on https://172.21.15.52:7150 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: cephadm 2024-09-06T14:07:30.455780+0000 mgr.smithi052.grtqlq (mgr.14116) 7 : cephadm [ERR] [06/Sep/2024:14:07:30] ENGINE Error in HTTPServer.serve 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: Traceback (most recent call last): 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: self._connections.run(self.expiration_interval) 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: self._run(expiration_interval) 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: s = self.context.wrap_socket( 2024-09-06T14:07:31.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: return self.sslsocket_class._create( 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: self.do_handshake() 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: self._sslobj.do_handshake() 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: cephadm 2024-09-06T14:07:30.455780+0000 mgr.smithi052.grtqlq (mgr.14116) 7 : cephadm [ERR] [06/Sep/2024:14:07:30] ENGINE Error in HTTPServer.serve 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: Traceback (most recent call last): 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: self._connections.run(self.expiration_interval) 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: self._run(expiration_interval) 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:07:31.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: s = self.context.wrap_socket( 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: return self.sslsocket_class._create( 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: self.do_handshake() 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: self._sslobj.do_handshake() 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: cephadm 2024-09-06T14:07:30.554068+0000 mgr.smithi052.grtqlq (mgr.14116) 8 : cephadm [INF] [06/Sep/2024:14:07:30] ENGINE Serving on http://172.21.15.52:8765 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: cephadm 2024-09-06T14:07:30.554068+0000 mgr.smithi052.grtqlq (mgr.14116) 8 : cephadm [INF] [06/Sep/2024:14:07:30] ENGINE Serving on http://172.21.15.52:8765 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: cephadm 2024-09-06T14:07:30.554226+0000 mgr.smithi052.grtqlq (mgr.14116) 9 : cephadm [INF] [06/Sep/2024:14:07:30] ENGINE Bus STARTED 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: cephadm 2024-09-06T14:07:30.554226+0000 mgr.smithi052.grtqlq (mgr.14116) 9 : cephadm [INF] [06/Sep/2024:14:07:30] ENGINE Bus STARTED 2024-09-06T14:07:31.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: audit 2024-09-06T14:07:30.555099+0000 mon.smithi052 (mon.0) 55 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:07:31.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: audit 2024-09-06T14:07:30.555099+0000 mon.smithi052 (mon.0) 55 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:07:31.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: audit 2024-09-06T14:07:30.891335+0000 mon.smithi052 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:31.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: audit 2024-09-06T14:07:30.891335+0000 mon.smithi052 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:31.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: audit 2024-09-06T14:07:30.903431+0000 mon.smithi052 (mon.0) 57 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:07:31.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:30 smithi052 bash[19834]: audit 2024-09-06T14:07:30.903431+0000 mon.smithi052 (mon.0) 57 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:07:32.329 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:31 smithi052 bash[19834]: audit 2024-09-06T14:07:30.885152+0000 mgr.smithi052.grtqlq (mgr.14116) 10 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:32.329 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:31 smithi052 bash[19834]: audit 2024-09-06T14:07:30.885152+0000 mgr.smithi052.grtqlq (mgr.14116) 10 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:32.329 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:31 smithi052 bash[19834]: cluster 2024-09-06T14:07:30.977266+0000 mon.smithi052 (mon.0) 58 : cluster [DBG] mgrmap e8: smithi052.grtqlq(active, since 3s) 2024-09-06T14:07:32.329 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:31 smithi052 bash[19834]: cluster 2024-09-06T14:07:30.977266+0000 mon.smithi052 (mon.0) 58 : cluster [DBG] mgrmap e8: smithi052.grtqlq(active, since 3s) 2024-09-06T14:07:33.349 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-06T14:07:33.349 INFO:teuthology.orchestra.run.smithi052.stdout:Generating ssh key... 2024-09-06T14:07:34.180 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:33 smithi052 bash[19834]: audit 2024-09-06T14:07:32.819673+0000 mgr.smithi052.grtqlq (mgr.14116) 11 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:34.180 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:33 smithi052 bash[19834]: audit 2024-09-06T14:07:32.819673+0000 mgr.smithi052.grtqlq (mgr.14116) 11 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:35.080 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:34 smithi052 bash[19834]: audit 2024-09-06T14:07:34.678809+0000 mgr.smithi052.grtqlq (mgr.14116) 12 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:35.081 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:34 smithi052 bash[19834]: audit 2024-09-06T14:07:34.678809+0000 mgr.smithi052.grtqlq (mgr.14116) 12 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:35.081 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:34 smithi052 bash[19834]: cephadm 2024-09-06T14:07:34.679120+0000 mgr.smithi052.grtqlq (mgr.14116) 13 : cephadm [INF] Generating ssh key... 2024-09-06T14:07:35.081 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:34 smithi052 bash[19834]: cephadm 2024-09-06T14:07:34.679120+0000 mgr.smithi052.grtqlq (mgr.14116) 13 : cephadm [INF] Generating ssh key... 2024-09-06T14:07:36.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:36 smithi052 bash[19834]: audit 2024-09-06T14:07:35.038509+0000 mon.smithi052 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:36.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:36 smithi052 bash[19834]: audit 2024-09-06T14:07:35.038509+0000 mon.smithi052 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:36.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:36 smithi052 bash[19834]: audit 2024-09-06T14:07:35.043417+0000 mon.smithi052 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:36.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:36 smithi052 bash[19834]: audit 2024-09-06T14:07:35.043417+0000 mon.smithi052 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:37.453 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAiPtofCUidiXc/XXBgCbez7K/mWN2x8KyiU62+BhfTRSJo1PcNYAS1e/CfY+II027kJBPIPKcsq2B04AAV4Zusi9SrZC7NzTFVhx2XxS98osICS1jP8UKAm73nkOnHTTdDFvoxWkzbVbu09tMZNu5VX5BcWJ+gVR96RClYKdbp8ARI4pVmRETjToIiPRq1okmhDv66BP6CUQRQ4/8R4EzxisvG7yuUVNvbzfEksx9HPRUQoD3IhWVf1cDSzhHclYKwoCXZ06QCvOlORoTy92E0+Z71+4N6dqBOJVr7L+QIuTDuJryyvTglWEmM9foJZ0NcTqRXsRYbeZhyAZkzxZW2LM67+PQIeqC+2Ep1Z8jUwyqD6/o7427bhT5Obz2Cmmt6cLNqQy6VmHiv+70zS+6oX7y+yxHEHYoYyJ8F2QmLnHKtWTCGRDKTG0arLrgpmK6Gm6geucFRadu4E8xyvi/bzQvfHlykF/6SWcjIYpNIiw09gWD0Np5uaiRajjF1M0= ceph-11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:07:37.453 INFO:teuthology.orchestra.run.smithi052.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-06T14:07:37.453 INFO:teuthology.orchestra.run.smithi052.stdout:Adding key to root@localhost authorized_keys... 2024-09-06T14:07:37.453 INFO:teuthology.orchestra.run.smithi052.stdout:Adding host smithi052... 2024-09-06T14:07:38.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:37 smithi052 bash[19834]: audit 2024-09-06T14:07:36.933309+0000 mgr.smithi052.grtqlq (mgr.14116) 14 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:38.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:37 smithi052 bash[19834]: audit 2024-09-06T14:07:36.933309+0000 mgr.smithi052.grtqlq (mgr.14116) 14 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:39.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:39 smithi052 bash[19834]: audit 2024-09-06T14:07:38.871992+0000 mgr.smithi052.grtqlq (mgr.14116) 15 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi052", "addr": "172.21.15.52", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:39.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:39 smithi052 bash[19834]: audit 2024-09-06T14:07:38.871992+0000 mgr.smithi052.grtqlq (mgr.14116) 15 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi052", "addr": "172.21.15.52", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:40.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:40 smithi052 bash[19834]: cephadm 2024-09-06T14:07:40.156386+0000 mgr.smithi052.grtqlq (mgr.14116) 16 : cephadm [INF] Deploying cephadm binary to smithi052 2024-09-06T14:07:40.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:40 smithi052 bash[19834]: cephadm 2024-09-06T14:07:40.156386+0000 mgr.smithi052.grtqlq (mgr.14116) 16 : cephadm [INF] Deploying cephadm binary to smithi052 2024-09-06T14:07:44.493 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout Added host 'smithi052' with addr '172.21.15.52' 2024-09-06T14:07:44.494 INFO:teuthology.orchestra.run.smithi052.stdout:Deploying mon service with default placement... 2024-09-06T14:07:44.912 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:44 smithi052 bash[19834]: audit 2024-09-06T14:07:43.812823+0000 mon.smithi052 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:44.912 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:44 smithi052 bash[19834]: audit 2024-09-06T14:07:43.812823+0000 mon.smithi052 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:44.912 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:44 smithi052 bash[19834]: cephadm 2024-09-06T14:07:43.813302+0000 mgr.smithi052.grtqlq (mgr.14116) 17 : cephadm [INF] Added host smithi052 2024-09-06T14:07:44.912 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:44 smithi052 bash[19834]: cephadm 2024-09-06T14:07:43.813302+0000 mgr.smithi052.grtqlq (mgr.14116) 17 : cephadm [INF] Added host smithi052 2024-09-06T14:07:44.912 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:44 smithi052 bash[19834]: audit 2024-09-06T14:07:43.813669+0000 mon.smithi052 (mon.0) 62 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:07:44.913 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:44 smithi052 bash[19834]: audit 2024-09-06T14:07:43.813669+0000 mon.smithi052 (mon.0) 62 : audit [DBG] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:07:47.365 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-06T14:07:47.365 INFO:teuthology.orchestra.run.smithi052.stdout:Deploying mgr service with default placement... 2024-09-06T14:07:47.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:47 smithi052 bash[19834]: audit 2024-09-06T14:07:46.521415+0000 mgr.smithi052.grtqlq (mgr.14116) 18 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:47.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:47 smithi052 bash[19834]: audit 2024-09-06T14:07:46.521415+0000 mgr.smithi052.grtqlq (mgr.14116) 18 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:47.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:47 smithi052 bash[19834]: cephadm 2024-09-06T14:07:46.522520+0000 mgr.smithi052.grtqlq (mgr.14116) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-06T14:07:47.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:47 smithi052 bash[19834]: cephadm 2024-09-06T14:07:46.522520+0000 mgr.smithi052.grtqlq (mgr.14116) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-06T14:07:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:47 smithi052 bash[19834]: audit 2024-09-06T14:07:46.525430+0000 mon.smithi052 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:47 smithi052 bash[19834]: audit 2024-09-06T14:07:46.525430+0000 mon.smithi052 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:47 smithi052 bash[19834]: audit 2024-09-06T14:07:47.208187+0000 mon.smithi052 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:47 smithi052 bash[19834]: audit 2024-09-06T14:07:47.208187+0000 mon.smithi052 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:49.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: audit 2024-09-06T14:07:47.794521+0000 mon.smithi052 (mon.0) 65 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:49.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: audit 2024-09-06T14:07:47.794521+0000 mon.smithi052 (mon.0) 65 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:49.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: cluster 2024-09-06T14:07:47.978486+0000 mgr.smithi052.grtqlq (mgr.14116) 20 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:07:49.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: cluster 2024-09-06T14:07:47.978486+0000 mgr.smithi052.grtqlq (mgr.14116) 20 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:07:49.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: cluster 2024-09-06T14:07:47.979003+0000 mon.smithi052 (mon.0) 66 : cluster [WRN] Health check failed: Module 'volumes' has failed dependency: No module named 'ceph.fs' (MGR_MODULE_DEPENDENCY) 2024-09-06T14:07:49.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: cluster 2024-09-06T14:07:47.979003+0000 mon.smithi052 (mon.0) 66 : cluster [WRN] Health check failed: Module 'volumes' has failed dependency: No module named 'ceph.fs' (MGR_MODULE_DEPENDENCY) 2024-09-06T14:07:49.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: audit 2024-09-06T14:07:48.732949+0000 mgr.smithi052.grtqlq (mgr.14116) 21 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:49.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: audit 2024-09-06T14:07:48.732949+0000 mgr.smithi052.grtqlq (mgr.14116) 21 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:49.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: cephadm 2024-09-06T14:07:48.733925+0000 mgr.smithi052.grtqlq (mgr.14116) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-06T14:07:49.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: cephadm 2024-09-06T14:07:48.733925+0000 mgr.smithi052.grtqlq (mgr.14116) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-06T14:07:49.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: audit 2024-09-06T14:07:48.738475+0000 mon.smithi052 (mon.0) 67 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:49.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:48 smithi052 bash[19834]: audit 2024-09-06T14:07:48.738475+0000 mon.smithi052 (mon.0) 67 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:49.364 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-06T14:07:49.364 INFO:teuthology.orchestra.run.smithi052.stdout:Deploying crash service with default placement... 2024-09-06T14:07:51.321 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-06T14:07:51.322 INFO:teuthology.orchestra.run.smithi052.stdout:Deploying ceph-exporter service with default placement... 2024-09-06T14:07:52.135 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:51 smithi052 bash[19834]: cluster 2024-09-06T14:07:49.978953+0000 mgr.smithi052.grtqlq (mgr.14116) 23 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:07:52.135 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:51 smithi052 bash[19834]: cluster 2024-09-06T14:07:49.978953+0000 mgr.smithi052.grtqlq (mgr.14116) 23 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:07:52.135 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:51 smithi052 bash[19834]: audit 2024-09-06T14:07:50.727565+0000 mgr.smithi052.grtqlq (mgr.14116) 24 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:52.135 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:51 smithi052 bash[19834]: audit 2024-09-06T14:07:50.727565+0000 mgr.smithi052.grtqlq (mgr.14116) 24 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:52.135 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:51 smithi052 bash[19834]: cephadm 2024-09-06T14:07:50.728669+0000 mgr.smithi052.grtqlq (mgr.14116) 25 : cephadm [INF] Saving service crash spec with placement * 2024-09-06T14:07:52.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:51 smithi052 bash[19834]: cephadm 2024-09-06T14:07:50.728669+0000 mgr.smithi052.grtqlq (mgr.14116) 25 : cephadm [INF] Saving service crash spec with placement * 2024-09-06T14:07:52.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:51 smithi052 bash[19834]: audit 2024-09-06T14:07:50.733432+0000 mon.smithi052 (mon.0) 68 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:52.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:51 smithi052 bash[19834]: audit 2024-09-06T14:07:50.733432+0000 mon.smithi052 (mon.0) 68 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:53.211 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-06T14:07:53.211 INFO:teuthology.orchestra.run.smithi052.stdout:Deploying prometheus service with default placement... 2024-09-06T14:07:53.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:53 smithi052 bash[19834]: cluster 2024-09-06T14:07:51.979442+0000 mgr.smithi052.grtqlq (mgr.14116) 26 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:07:53.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:53 smithi052 bash[19834]: cluster 2024-09-06T14:07:51.979442+0000 mgr.smithi052.grtqlq (mgr.14116) 26 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:07:53.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:53 smithi052 bash[19834]: audit 2024-09-06T14:07:52.673164+0000 mgr.smithi052.grtqlq (mgr.14116) 27 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:53.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:53 smithi052 bash[19834]: audit 2024-09-06T14:07:52.673164+0000 mgr.smithi052.grtqlq (mgr.14116) 27 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:53.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:53 smithi052 bash[19834]: cephadm 2024-09-06T14:07:52.674359+0000 mgr.smithi052.grtqlq (mgr.14116) 28 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-06T14:07:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:53 smithi052 bash[19834]: cephadm 2024-09-06T14:07:52.674359+0000 mgr.smithi052.grtqlq (mgr.14116) 28 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-06T14:07:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:53 smithi052 bash[19834]: audit 2024-09-06T14:07:52.679206+0000 mon.smithi052 (mon.0) 69 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:53 smithi052 bash[19834]: audit 2024-09-06T14:07:52.679206+0000 mon.smithi052 (mon.0) 69 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:55.193 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-06T14:07:55.193 INFO:teuthology.orchestra.run.smithi052.stdout:Deploying grafana service with default placement... 2024-09-06T14:07:55.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:55 smithi052 bash[19834]: cluster 2024-09-06T14:07:53.979856+0000 mgr.smithi052.grtqlq (mgr.14116) 29 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:07:55.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:55 smithi052 bash[19834]: cluster 2024-09-06T14:07:53.979856+0000 mgr.smithi052.grtqlq (mgr.14116) 29 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:07:55.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:55 smithi052 bash[19834]: audit 2024-09-06T14:07:54.599710+0000 mgr.smithi052.grtqlq (mgr.14116) 30 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:55.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:55 smithi052 bash[19834]: audit 2024-09-06T14:07:54.599710+0000 mgr.smithi052.grtqlq (mgr.14116) 30 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:55.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:55 smithi052 bash[19834]: cephadm 2024-09-06T14:07:54.601656+0000 mgr.smithi052.grtqlq (mgr.14116) 31 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-06T14:07:55.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:55 smithi052 bash[19834]: cephadm 2024-09-06T14:07:54.601656+0000 mgr.smithi052.grtqlq (mgr.14116) 31 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-06T14:07:55.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:55 smithi052 bash[19834]: audit 2024-09-06T14:07:54.604590+0000 mon.smithi052 (mon.0) 70 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:55.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:55 smithi052 bash[19834]: audit 2024-09-06T14:07:54.604590+0000 mon.smithi052 (mon.0) 70 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:57.207 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-06T14:07:57.207 INFO:teuthology.orchestra.run.smithi052.stdout:Deploying node-exporter service with default placement... 2024-09-06T14:07:57.299 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:56 smithi052 bash[19834]: audit 2024-09-06T14:07:55.952442+0000 mon.smithi052 (mon.0) 71 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:57.299 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:56 smithi052 bash[19834]: audit 2024-09-06T14:07:55.952442+0000 mon.smithi052 (mon.0) 71 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:57.299 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:56 smithi052 bash[19834]: cluster 2024-09-06T14:07:55.980135+0000 mgr.smithi052.grtqlq (mgr.14116) 32 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:07:57.299 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:56 smithi052 bash[19834]: cluster 2024-09-06T14:07:55.980135+0000 mgr.smithi052.grtqlq (mgr.14116) 32 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:07:57.299 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:56 smithi052 bash[19834]: audit 2024-09-06T14:07:56.592615+0000 mgr.smithi052.grtqlq (mgr.14116) 33 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:57.299 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:56 smithi052 bash[19834]: audit 2024-09-06T14:07:56.592615+0000 mgr.smithi052.grtqlq (mgr.14116) 33 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:07:57.299 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:56 smithi052 bash[19834]: cephadm 2024-09-06T14:07:56.607206+0000 mgr.smithi052.grtqlq (mgr.14116) 34 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-06T14:07:57.300 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:56 smithi052 bash[19834]: cephadm 2024-09-06T14:07:56.607206+0000 mgr.smithi052.grtqlq (mgr.14116) 34 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-06T14:07:57.300 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:56 smithi052 bash[19834]: audit 2024-09-06T14:07:56.611006+0000 mon.smithi052 (mon.0) 72 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:57.300 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:56 smithi052 bash[19834]: audit 2024-09-06T14:07:56.611006+0000 mon.smithi052 (mon.0) 72 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:58.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:58 smithi052 bash[19834]: audit 2024-09-06T14:07:57.131594+0000 mon.smithi052 (mon.0) 73 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:58.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:58 smithi052 bash[19834]: audit 2024-09-06T14:07:57.131594+0000 mon.smithi052 (mon.0) 73 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:07:59.257 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-06T14:07:59.257 INFO:teuthology.orchestra.run.smithi052.stdout:Deploying alertmanager service with default placement... 2024-09-06T14:08:00.084 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:59 smithi052 bash[19834]: cluster 2024-09-06T14:07:57.980563+0000 mgr.smithi052.grtqlq (mgr.14116) 35 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:00.084 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:59 smithi052 bash[19834]: cluster 2024-09-06T14:07:57.980563+0000 mgr.smithi052.grtqlq (mgr.14116) 35 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:00.085 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:59 smithi052 bash[19834]: audit 2024-09-06T14:07:58.731104+0000 mgr.smithi052.grtqlq (mgr.14116) 36 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:00.085 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:59 smithi052 bash[19834]: audit 2024-09-06T14:07:58.731104+0000 mgr.smithi052.grtqlq (mgr.14116) 36 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:00.085 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:59 smithi052 bash[19834]: cephadm 2024-09-06T14:07:58.733717+0000 mgr.smithi052.grtqlq (mgr.14116) 37 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-06T14:08:00.085 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:59 smithi052 bash[19834]: cephadm 2024-09-06T14:07:58.733717+0000 mgr.smithi052.grtqlq (mgr.14116) 37 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-06T14:08:00.085 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:59 smithi052 bash[19834]: audit 2024-09-06T14:07:58.736669+0000 mon.smithi052 (mon.0) 74 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:00.085 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:07:59 smithi052 bash[19834]: audit 2024-09-06T14:07:58.736669+0000 mon.smithi052 (mon.0) 74 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:01.146 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-06T14:08:01.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:01 smithi052 bash[19834]: cluster 2024-09-06T14:07:59.981033+0000 mgr.smithi052.grtqlq (mgr.14116) 38 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:01.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:01 smithi052 bash[19834]: cluster 2024-09-06T14:07:59.981033+0000 mgr.smithi052.grtqlq (mgr.14116) 38 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:01.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:01 smithi052 bash[19834]: audit 2024-09-06T14:08:00.606828+0000 mgr.smithi052.grtqlq (mgr.14116) 39 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:01.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:01 smithi052 bash[19834]: audit 2024-09-06T14:08:00.606828+0000 mgr.smithi052.grtqlq (mgr.14116) 39 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:01.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:01 smithi052 bash[19834]: cephadm 2024-09-06T14:08:00.607690+0000 mgr.smithi052.grtqlq (mgr.14116) 40 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-06T14:08:01.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:01 smithi052 bash[19834]: cephadm 2024-09-06T14:08:00.607690+0000 mgr.smithi052.grtqlq (mgr.14116) 40 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-06T14:08:01.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:01 smithi052 bash[19834]: audit 2024-09-06T14:08:00.612522+0000 mon.smithi052 (mon.0) 75 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:01.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:01 smithi052 bash[19834]: audit 2024-09-06T14:08:00.612522+0000 mon.smithi052 (mon.0) 75 : audit [INF] from='mgr.14116 172.21.15.52:0/3816009651' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:03.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:03 smithi052 bash[19834]: cluster 2024-09-06T14:08:01.981476+0000 mgr.smithi052.grtqlq (mgr.14116) 41 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:03.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:03 smithi052 bash[19834]: cluster 2024-09-06T14:08:01.981476+0000 mgr.smithi052.grtqlq (mgr.14116) 41 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:03.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:03 smithi052 bash[19834]: audit 2024-09-06T14:08:02.469211+0000 mon.smithi052 (mon.0) 76 : audit [INF] from='client.? 172.21.15.52:0/2012765978' entity='client.admin' 2024-09-06T14:08:03.803 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:03 smithi052 bash[19834]: audit 2024-09-06T14:08:02.469211+0000 mon.smithi052 (mon.0) 76 : audit [INF] from='client.? 172.21.15.52:0/2012765978' entity='client.admin' 2024-09-06T14:08:05.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:05 smithi052 bash[19834]: cluster 2024-09-06T14:08:03.981895+0000 mgr.smithi052.grtqlq (mgr.14116) 42 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:05.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:05 smithi052 bash[19834]: cluster 2024-09-06T14:08:03.981895+0000 mgr.smithi052.grtqlq (mgr.14116) 42 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:05.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:05 smithi052 bash[19834]: audit 2024-09-06T14:08:05.282951+0000 mon.smithi052 (mon.0) 77 : audit [INF] from='client.? 172.21.15.52:0/4066161725' entity='client.admin' 2024-09-06T14:08:05.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:05 smithi052 bash[19834]: audit 2024-09-06T14:08:05.282951+0000 mon.smithi052 (mon.0) 77 : audit [INF] from='client.? 172.21.15.52:0/4066161725' entity='client.admin' 2024-09-06T14:08:05.892 INFO:teuthology.orchestra.run.smithi052.stdout:Enabling the dashboard module... 2024-09-06T14:08:07.726 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:07 smithi052 bash[19834]: cluster 2024-09-06T14:08:05.982403+0000 mgr.smithi052.grtqlq (mgr.14116) 43 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:07.726 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:07 smithi052 bash[19834]: cluster 2024-09-06T14:08:05.982403+0000 mgr.smithi052.grtqlq (mgr.14116) 43 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:07.726 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:07 smithi052 bash[19834]: audit 2024-09-06T14:08:07.350432+0000 mon.smithi052 (mon.0) 78 : audit [INF] from='client.? 172.21.15.52:0/2180659551' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-06T14:08:07.726 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:07 smithi052 bash[19834]: audit 2024-09-06T14:08:07.350432+0000 mon.smithi052 (mon.0) 78 : audit [INF] from='client.? 172.21.15.52:0/2180659551' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-06T14:08:08.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:08 smithi052 bash[19834]: audit 2024-09-06T14:08:07.473018+0000 mon.smithi052 (mon.0) 79 : audit [INF] from='client.? 172.21.15.52:0/2180659551' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-06T14:08:08.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:08 smithi052 bash[19834]: audit 2024-09-06T14:08:07.473018+0000 mon.smithi052 (mon.0) 79 : audit [INF] from='client.? 172.21.15.52:0/2180659551' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-06T14:08:08.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:08 smithi052 bash[19834]: cluster 2024-09-06T14:08:07.478864+0000 mon.smithi052 (mon.0) 80 : cluster [DBG] mgrmap e9: smithi052.grtqlq(active, since 39s) 2024-09-06T14:08:08.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:08 smithi052 bash[19834]: cluster 2024-09-06T14:08:07.478864+0000 mon.smithi052 (mon.0) 80 : cluster [DBG] mgrmap e9: smithi052.grtqlq(active, since 39s) 2024-09-06T14:08:09.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:09 smithi052 bash[19834]: audit 2024-09-06T14:08:09.575983+0000 mon.smithi052 (mon.0) 81 : audit [DBG] from='client.? 172.21.15.52:0/2671808271' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-06T14:08:09.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:09 smithi052 bash[19834]: audit 2024-09-06T14:08:09.575983+0000 mon.smithi052 (mon.0) 81 : audit [DBG] from='client.? 172.21.15.52:0/2671808271' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-06T14:08:10.115 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:08:10.115 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-06T14:08:10.115 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-06T14:08:10.115 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "active_name": "smithi052.grtqlq", 2024-09-06T14:08:10.115 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-06T14:08:10.115 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:08:10.115 INFO:teuthology.orchestra.run.smithi052.stdout:Waiting for the mgr to restart... 2024-09-06T14:08:10.116 INFO:teuthology.orchestra.run.smithi052.stdout:Waiting for mgr epoch 9... 2024-09-06T14:08:14.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: cluster 2024-09-06T14:08:13.756884+0000 mon.smithi052 (mon.0) 82 : cluster [INF] Active manager daemon smithi052.grtqlq restarted 2024-09-06T14:08:14.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: cluster 2024-09-06T14:08:13.756884+0000 mon.smithi052 (mon.0) 82 : cluster [INF] Active manager daemon smithi052.grtqlq restarted 2024-09-06T14:08:14.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: cluster 2024-09-06T14:08:13.757455+0000 mon.smithi052 (mon.0) 83 : cluster [INF] Activating manager daemon smithi052.grtqlq 2024-09-06T14:08:14.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: cluster 2024-09-06T14:08:13.757455+0000 mon.smithi052 (mon.0) 83 : cluster [INF] Activating manager daemon smithi052.grtqlq 2024-09-06T14:08:14.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: cluster 2024-09-06T14:08:13.764964+0000 mon.smithi052 (mon.0) 84 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-06T14:08:14.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: cluster 2024-09-06T14:08:13.764964+0000 mon.smithi052 (mon.0) 84 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-06T14:08:14.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: cluster 2024-09-06T14:08:13.765209+0000 mon.smithi052 (mon.0) 85 : cluster [DBG] mgrmap e10: smithi052.grtqlq(active, starting, since 0.00795208s) 2024-09-06T14:08:14.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: cluster 2024-09-06T14:08:13.765209+0000 mon.smithi052 (mon.0) 85 : cluster [DBG] mgrmap e10: smithi052.grtqlq(active, starting, since 0.00795208s) 2024-09-06T14:08:14.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: audit 2024-09-06T14:08:13.766473+0000 mon.smithi052 (mon.0) 86 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: audit 2024-09-06T14:08:13.766473+0000 mon.smithi052 (mon.0) 86 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: audit 2024-09-06T14:08:13.768435+0000 mon.smithi052 (mon.0) 87 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi052.grtqlq", "id": "smithi052.grtqlq"} : dispatch 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: audit 2024-09-06T14:08:13.768435+0000 mon.smithi052 (mon.0) 87 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi052.grtqlq", "id": "smithi052.grtqlq"} : dispatch 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: audit 2024-09-06T14:08:13.769752+0000 mon.smithi052 (mon.0) 88 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: audit 2024-09-06T14:08:13.769752+0000 mon.smithi052 (mon.0) 88 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: audit 2024-09-06T14:08:13.770206+0000 mon.smithi052 (mon.0) 89 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: audit 2024-09-06T14:08:13.770206+0000 mon.smithi052 (mon.0) 89 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: audit 2024-09-06T14:08:13.770480+0000 mon.smithi052 (mon.0) 90 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: audit 2024-09-06T14:08:13.770480+0000 mon.smithi052 (mon.0) 90 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: cluster 2024-09-06T14:08:13.796606+0000 mon.smithi052 (mon.0) 91 : cluster [INF] Manager daemon smithi052.grtqlq is now available 2024-09-06T14:08:14.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:13 smithi052 bash[19834]: cluster 2024-09-06T14:08:13.796606+0000 mon.smithi052 (mon.0) 91 : cluster [INF] Manager daemon smithi052.grtqlq is now available 2024-09-06T14:08:15.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:14 smithi052 bash[19834]: audit 2024-09-06T14:08:14.210779+0000 mon.smithi052 (mon.0) 92 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:08:15.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:14 smithi052 bash[19834]: audit 2024-09-06T14:08:14.210779+0000 mon.smithi052 (mon.0) 92 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:08:15.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:14 smithi052 bash[19834]: audit 2024-09-06T14:08:14.230109+0000 mon.smithi052 (mon.0) 93 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:08:15.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:14 smithi052 bash[19834]: audit 2024-09-06T14:08:14.230109+0000 mon.smithi052 (mon.0) 93 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:08:15.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:14 smithi052 bash[19834]: audit 2024-09-06T14:08:14.232127+0000 mon.smithi052 (mon.0) 94 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/trash_purge_schedule"} : dispatch 2024-09-06T14:08:15.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:14 smithi052 bash[19834]: audit 2024-09-06T14:08:14.232127+0000 mon.smithi052 (mon.0) 94 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/trash_purge_schedule"} : dispatch 2024-09-06T14:08:15.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:14 smithi052 bash[19834]: cluster 2024-09-06T14:08:14.769611+0000 mon.smithi052 (mon.0) 95 : cluster [DBG] mgrmap e11: smithi052.grtqlq(active, since 1.01234s) 2024-09-06T14:08:15.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:14 smithi052 bash[19834]: cluster 2024-09-06T14:08:14.769611+0000 mon.smithi052 (mon.0) 95 : cluster [DBG] mgrmap e11: smithi052.grtqlq(active, since 1.01234s) 2024-09-06T14:08:15.396 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:08:15.396 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-06T14:08:15.396 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-06T14:08:15.396 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:08:15.397 INFO:teuthology.orchestra.run.smithi052.stdout:mgr epoch 9 is available 2024-09-06T14:08:15.397 INFO:teuthology.orchestra.run.smithi052.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-06T14:08:16.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:15 smithi052 bash[19834]: audit 2024-09-06T14:08:14.767756+0000 mgr.smithi052.grtqlq (mgr.14158) 2 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-06T14:08:16.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:15 smithi052 bash[19834]: audit 2024-09-06T14:08:14.767756+0000 mgr.smithi052.grtqlq (mgr.14158) 2 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-06T14:08:16.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:15 smithi052 bash[19834]: audit 2024-09-06T14:08:14.788066+0000 mgr.smithi052.grtqlq (mgr.14158) 3 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-06T14:08:16.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:15 smithi052 bash[19834]: audit 2024-09-06T14:08:14.788066+0000 mgr.smithi052.grtqlq (mgr.14158) 3 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-06T14:08:17.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cephadm 2024-09-06T14:08:15.717665+0000 mgr.smithi052.grtqlq (mgr.14158) 4 : cephadm [INF] [06/Sep/2024:14:08:15] ENGINE Bus STARTING 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cephadm 2024-09-06T14:08:15.717665+0000 mgr.smithi052.grtqlq (mgr.14158) 4 : cephadm [INF] [06/Sep/2024:14:08:15] ENGINE Bus STARTING 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cluster 2024-09-06T14:08:15.816436+0000 mon.smithi052 (mon.0) 96 : cluster [DBG] mgrmap e12: smithi052.grtqlq(active, since 2s) 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cluster 2024-09-06T14:08:15.816436+0000 mon.smithi052 (mon.0) 96 : cluster [DBG] mgrmap e12: smithi052.grtqlq(active, since 2s) 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cephadm 2024-09-06T14:08:15.819698+0000 mgr.smithi052.grtqlq (mgr.14158) 5 : cephadm [INF] [06/Sep/2024:14:08:15] ENGINE Serving on http://172.21.15.52:8765 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cephadm 2024-09-06T14:08:15.819698+0000 mgr.smithi052.grtqlq (mgr.14158) 5 : cephadm [INF] [06/Sep/2024:14:08:15] ENGINE Serving on http://172.21.15.52:8765 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cephadm 2024-09-06T14:08:15.949153+0000 mgr.smithi052.grtqlq (mgr.14158) 6 : cephadm [INF] [06/Sep/2024:14:08:15] ENGINE Serving on https://172.21.15.52:7150 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cephadm 2024-09-06T14:08:15.949153+0000 mgr.smithi052.grtqlq (mgr.14158) 6 : cephadm [INF] [06/Sep/2024:14:08:15] ENGINE Serving on https://172.21.15.52:7150 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cephadm 2024-09-06T14:08:15.949353+0000 mgr.smithi052.grtqlq (mgr.14158) 7 : cephadm [INF] [06/Sep/2024:14:08:15] ENGINE Bus STARTED 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cephadm 2024-09-06T14:08:15.949353+0000 mgr.smithi052.grtqlq (mgr.14158) 7 : cephadm [INF] [06/Sep/2024:14:08:15] ENGINE Bus STARTED 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cephadm 2024-09-06T14:08:15.951121+0000 mgr.smithi052.grtqlq (mgr.14158) 8 : cephadm [ERR] [06/Sep/2024:14:08:15] ENGINE Error in HTTPServer.serve 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: Traceback (most recent call last): 2024-09-06T14:08:17.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: self._connections.run(self.expiration_interval) 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: self._run(expiration_interval) 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: s = self.context.wrap_socket( 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: return self.sslsocket_class._create( 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:08:17.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: self.do_handshake() 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: self._sslobj.do_handshake() 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: cephadm 2024-09-06T14:08:15.951121+0000 mgr.smithi052.grtqlq (mgr.14158) 8 : cephadm [ERR] [06/Sep/2024:14:08:15] ENGINE Error in HTTPServer.serve 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: Traceback (most recent call last): 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: self._connections.run(self.expiration_interval) 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: self._run(expiration_interval) 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:08:17.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:08:17.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:08:17.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: s = self.context.wrap_socket( 2024-09-06T14:08:17.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:08:17.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: return self.sslsocket_class._create( 2024-09-06T14:08:17.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:08:17.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: self.do_handshake() 2024-09-06T14:08:17.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:08:17.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: self._sslobj.do_handshake() 2024-09-06T14:08:17.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:16 smithi052 bash[19834]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:08:18.065 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:17 smithi052 bash[19834]: audit 2024-09-06T14:08:16.781312+0000 mgr.smithi052.grtqlq (mgr.14158) 9 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:18.065 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:17 smithi052 bash[19834]: audit 2024-09-06T14:08:16.781312+0000 mgr.smithi052.grtqlq (mgr.14158) 9 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:18.595 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+zCCAuOgAwIBAgIUN3jDeLkqtjiOgTDKJBSH/IneHrowDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkwNjE0MDgxOFoXDTM0\nMDkwNzE0MDgxOFowFzEVMBMGA1UEAwwMMTcyLjIxLjE1LjUyMIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEA6Yxev53+FeT+swrXiqih5Azhr5NEy26zTcby\n82nt79399qAyfX/XyQSPAGhkbuVxFRhLcggxXtIdqKLSZVRdQzKwlrMzwQ0qzf/R\nVD30stQVST5H5EucuF3lXJWTku6xJwYVO6mDRqzqTM1uHyvIkGFwne0YNNwQ2X7I\ni/T6Ls6FTlKCCiJh/gIkbdvyQX296LyvnFnq9luOZd9RchswJhYEKhRV8dl2LBuI\nbxnQK0UuGlK9VBNAdRvOxFMzyywMplWCCwfA+SjCRIUHdnxlS4gRmXGe1JOgOUCo\nX+E8NAj0Mn7/M4wv8kLjBP4OrggiVLLhn3RLidba6KZwjhBkRZ2411vaRT7BZHMc\nHm0Rfv+CpxSsa6NefcXIEnAVFGlVj2EMVgbHSjWE2rHQFXp1gwtZAz/UWAcPn/VP\ngfAJv8u4SIjvOJO7V+TeUgEc9zMuKMtD/VcnuJWB2U/ZCJzle7mMpx0cSrwUaeRC\nOHuQaiW7gKjJkxrJQT0aqlQmGy6t9OHuNjvBWSJwQ+lwhviTQ1uNcl2/bs90v5gA\nJP1MpICQ9odCVtzz3sVycNJqWQgrpWQ6DrGHXBIY5mc4HjBnuQ2RCSIhQdMJtFHP\nOL+e7vIUTdrFv58j+4vZGaLIiFZvao08nXECwVl1fbbxZQhi9Cw5Mx58G7RpYtaB\n8q6mKjMCAwEAAaM/MD0wLQYDVR0RBCYwJIIJc21pdGhpMDUyghFkYXNoYm9hcmRf\nc2VydmVyc4cErBUPNDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQAz\nAzxgHVdtXS9Lc6u+B6VPcoFtkW/NpxoLR8r5Ja4w6GC4MJSS2sX2610XtmJ8fQLW\nvezgLnXoyh3kdG8+Ejh+3ZCzffEVg2HtSV+T7x2hYxfIht0vjuswI9Pb27iJgmYw\noOSDbUHIqrZTqt90hmRevr0z3pzFBwTILigzp3x0AAxGyOpPYy9OyKUTUYPEsEK6\nQbi/z2SAGCm0qXEwpirsdPidJ06HH6zxSFSO/TA0/YEqbRYbM6Ah2fGkLrl6z5IU\nhD0wWlhjuRaySYIwM1TmcUM9KseI6SNZHQY7Scn0VEeVNzmUxXXiRNMJDdBNQQg3\noWBLOaitBoYvFwG801ET/hLSTQ/CWI/IZI+2AELGaq/PBVtj5c0I6h+1wAAenowa\nv5zd9+27Uia81WLU6mgWZ3ytUBnX5DmsXu6MfctwWTv5q/f7Uyu71hSjDWHJkluU\nl5VK+V9yM9d3fRgX2r1k4iI1zgPoKvfDDRV6GyDF1IdetwdVYVyrW4udVJnKLddv\n6TtHvhYEr7GE+egAnsLC0da7xWC5twEMe6C6fS8Pn/ncg/m5fAwVk/8JH5tVcWS4\nGhrKP92cq52krCAW4rBp3VvgwwD14IbXp2euLfL4/Ky3Fl2QLy9zTsadnDsT99z2\nEZiq98VBiLjwPBeZIL5XtgghuK6eBWT5e1ZZMBy/OQ==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKgIBAAKCAgEA6Yxev53+FeT+swrXiqih5Azhr5NEy26zTcby82nt79399qAy\nfX/XyQSPAGhkbuVxFRhLcggxXtIdqKLSZVRdQzKwlrMzwQ0qzf/RVD30stQVST5H\n5EucuF3lXJWTku6xJwYVO6mDRqzqTM1uHyvIkGFwne0YNNwQ2X7Ii/T6Ls6FTlKC\nCiJh/gIkbdvyQX296LyvnFnq9luOZd9RchswJhYEKhRV8dl2LBuIbxnQK0UuGlK9\nVBNAdRvOxFMzyywMplWCCwfA+SjCRIUHdnxlS4gRmXGe1JOgOUCoX+E8NAj0Mn7/\nM4wv8kLjBP4OrggiVLLhn3RLidba6KZwjhBkRZ2411vaRT7BZHMcHm0Rfv+CpxSs\na6NefcXIEnAVFGlVj2EMVgbHSjWE2rHQFXp1gwtZAz/UWAcPn/VPgfAJv8u4SIjv\nOJO7V+TeUgEc9zMuKMtD/VcnuJWB2U/ZCJzle7mMpx0cSrwUaeRCOHuQaiW7gKjJ\nkxrJQT0aqlQmGy6t9OHuNjvBWSJwQ+lwhviTQ1uNcl2/bs90v5gAJP1MpICQ9odC\nVtzz3sVycNJqWQgrpWQ6DrGHXBIY5mc4HjBnuQ2RCSIhQdMJtFHPOL+e7vIUTdrF\nv58j+4vZGaLIiFZvao08nXECwVl1fbbxZQhi9Cw5Mx58G7RpYtaB8q6mKjMCAwEA\nAQKCAgBbhb05pT4FsXwYiNanyWbL2jp1Fia+/A47HAxoVGpAdkPIasXuhXN4HJe3\nprE4/iQfCqrCMLC8QmYKCGif+fwkUdB+9hIBhNnx6V7Mfw0OKWuADO6aagEsBOvV\nqO4wheaZbtpSS58cyrV0zIprn7pUzkKWOOwkBtt5iCQqKKIERr1Z0J6SPyAcrRU+\nkhNxE8gg1RSSlnAsA/wdMvMVXs8zFayjGt4FTV1wcoe4VirMUit7eFImiPbZDcEt\nEZf59jSs2FSCYxL98TmUJXejuKLvgw62jZ6bGpEO7qYtELSJhbrAsSDsP/MoIosZ\nkUAKdjiR7ZnaZXYWucKGqnbwTT8lgy7aLRgNt7L1mv9++2e7OIE8V7EPuFdRm5S8\nTlhJBKGExdK8TWuZ7om0ItiwWLkRvrqnHKn7AL8K9jnXWhx7SvZE6udaN9OjdT1x\nxoZrMjIyBXLCZEBMsov6xFDMMbkAkXOtKD3GEBEooF8CQWC6EtqL6lkH2cDn7WxT\nI05DQivb3BIexdpTRTzlwOHhr93pkYoHqNA90zMpUcNvPx0xM7yOhw3kayBoSZMD\nwapIR2sUJ6Joex1mId35W5oI6px73GvqOB9aeX3Ft9iWOcSeibGTHvqzg63ieCTj\nw3FGZi03kAsayafeRzwA5HKDSgzn1m0ZpOTSIPu7xInakKMhrQKCAQEA+0bz2aQH\nNiACtn+sUVhjwzRQyng4IsDU2RmGAmSVfftaKBxHltK2JjEqmxtYT0PNWVq4Su7Z\nPBtzvLJI59B5K2M4t5ADPoYCKy9QX+qFkbBVR3WvJpXNjZF95WJDVuKLlzxzjNuT\nESMNyOH/hPWWf4H1ujwVqRdJTyEyADrKvsOAcYk3RQhINudnCNZvth1myvSPC+HT\nOQP7zOrvZnHG+WrEhhIWzmqHFrdftyOUbJgRRVWOAjRrhNiPSnc0oLBg1sc3lfKN\nz+no+Xmj4EJmPYz26p8p4uxZ+A5XU9Zho1ml8d4QtTeehUxEnTt53fGupfHa6lkH\nLNb4eiow3nWO5wKCAQEA7fAdA4w7aiT1r3ZkwJg4moNJt1K+XvBiP5D4Uem82HpT\nSsZwcy0MQErxvJQFvudsqaQqMvNYD3KWmHy2NtSIEOOQUm7r5dBSkls4ofpDQQ7w\n/5gaCaYE0cbT6iMJDMOVk4p7hbzFBrrUHrBX0esPBa0MOzD2EpG160VLiS21qBk+\nZh4qcF1rkoE+EPwRxRLPughfKEK+1av+ZnHTZS4+VOiUzNaGT2i/l8WOAdpc56hg\nNz+boLeeI8KeQd1zQE7fHX9B5m+UAH1+yRzg6K7XOBLYzI6lBavuDPKvr2E2/1zw\n9NWXwWTWHW1WV3j3uYT5ZYPQYF6tix3sYkwiLYMc1QKCAQEAjNq0HL8u76839hdR\nf/PdUHJGC4kiZpDTf7MoBLVfe1RnsG5RzwDk7DnJWVMVyLEILluFTTPggCofUZpa\n9d9N3P1ssLFAsE6sborCMlIjd4xx8XHNsgJtTDtPaEMR3mV1vFw9par8ILIWqxHM\nizqjl2xBU5kUx0lvZbUE804BkrfCi2JQohjHakeC4VhbHKoUkhZPDWkUXzSVdMQJ\nWNLUp8Gq0kDXmfPrL9exBtch/1Gq9MPFrAS4dKp0gFicHqtgTWU1CpAB4JeNajM+\nopp193DKhLCd6T92G2/mke9togTB2fgSQ5MfADfFiqHpaXlt3kXZ4l3vgLosZUa7\nSCh75wKCAQEAsxjTngIGDuV3EPW67MUnhhZgfF8J8IhcS6ChaXbYsNGStGwd5HP6\nDsLapql8ka+8uQxavzMwC6Ci/nCQ70CWkq/XyFS5t6hRHt0PCc1IpkXK3Xjt0Glo\no0ZX6JsqirMFeaL5SzdFzsT+OYNe9yFJk2ooFL3L2zpWhpsIOl9vpvIpZ9A4/Y80\nE3i48SvrbD22oj7+8V0cK9VkjlQLXNOsE1ll97FaM5eS73jCZV6qI603jx6P1C+i\nFyS83rMDt1om0xsgzYUbECtmLZdRK5O/Z/O3wHF2gYhijNh3qTkxnpGkxYWozudJ\ny6irHvhs7vXKi8DmLkPVuSty7KKF72ALaQKCAQEAyBoZld8bDtVL1IO65GP1xjmq\nOvkROBOrdq/SuBNgPx8QZJy5VDa8OFTkT2lZxLPFcaSTZpUGzuHc/gVK8eH5Qh6K\nQdduz2leQoIW5YO2Eg/uQZRz2vJQIyuLfqRiRv/rCbOKVsDTDoMjXywIGFPqo6vC\nEJw4A4GtR6TvQTKNu69D6xMBbmkICCJg/tpIpfb+YP5kfyMyssDGRh+DVjYnoyMl\nht6uFKBhqgIwr8LdmYmPiWlRJ3Mn3McRnD4KzOs9kEDa5b+Rl/8oOJyNQbuDL8px\nAa2fMaH7EyqfJFIu2yV9agzB98UD74RRVdq95Z9MZ9A8tc6WS4fXS21McEzMTQ==\n-----END RSA PRIVATE KEY-----\n"} 2024-09-06T14:08:20.586 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-06T14:08:21.413 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:21 smithi052 bash[19834]: audit 2024-09-06T14:08:20.063918+0000 mgr.smithi052.grtqlq (mgr.14158) 10 : audit [DBG] from='client.14170 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:21.413 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:21 smithi052 bash[19834]: audit 2024-09-06T14:08:20.063918+0000 mgr.smithi052.grtqlq (mgr.14158) 10 : audit [DBG] from='client.14170 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:21.413 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:21 smithi052 bash[19834]: audit 2024-09-06T14:08:20.069051+0000 mon.smithi052 (mon.0) 97 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:21.413 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:21 smithi052 bash[19834]: audit 2024-09-06T14:08:20.069051+0000 mon.smithi052 (mon.0) 97 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:22.484 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-06T14:08:22.485 INFO:teuthology.orchestra.run.smithi052.stdout:Creating initial admin user... 2024-09-06T14:08:22.575 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:22 smithi052 bash[19834]: audit 2024-09-06T14:08:21.324135+0000 mon.smithi052 (mon.0) 98 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:22.575 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:22 smithi052 bash[19834]: audit 2024-09-06T14:08:21.324135+0000 mon.smithi052 (mon.0) 98 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:22.575 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:22 smithi052 bash[19834]: audit 2024-09-06T14:08:21.958043+0000 mon.smithi052 (mon.0) 99 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:22.575 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:22 smithi052 bash[19834]: audit 2024-09-06T14:08:21.958043+0000 mon.smithi052 (mon.0) 99 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:23.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:23 smithi052 bash[19834]: audit 2024-09-06T14:08:21.950803+0000 mgr.smithi052.grtqlq (mgr.14158) 11 : audit [DBG] from='client.14172 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:23.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:23 smithi052 bash[19834]: audit 2024-09-06T14:08:21.950803+0000 mgr.smithi052.grtqlq (mgr.14158) 11 : audit [DBG] from='client.14172 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:23.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:23 smithi052 bash[19834]: audit 2024-09-06T14:08:22.504573+0000 mon.smithi052 (mon.0) 100 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:23.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:23 smithi052 bash[19834]: audit 2024-09-06T14:08:22.504573+0000 mon.smithi052 (mon.0) 100 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:24.850 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$AvRgQ3RovnpZZFNidQY7zeh8hvhnhmg7GMMl2RxdK53Fsq.Cm6UuS", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1725631704, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-06T14:08:24.850 INFO:teuthology.orchestra.run.smithi052.stdout:Fetching dashboard port number... 2024-09-06T14:08:25.681 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:25 smithi052 bash[19834]: audit 2024-09-06T14:08:23.971996+0000 mgr.smithi052.grtqlq (mgr.14158) 12 : audit [DBG] from='client.14174 -' 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-09-06T14:08:25.681 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:25 smithi052 bash[19834]: audit 2024-09-06T14:08:23.971996+0000 mgr.smithi052.grtqlq (mgr.14158) 12 : audit [DBG] from='client.14174 -' 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-09-06T14:08:25.681 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:25 smithi052 bash[19834]: audit 2024-09-06T14:08:24.267800+0000 mon.smithi052 (mon.0) 101 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:25.681 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:25 smithi052 bash[19834]: audit 2024-09-06T14:08:24.267800+0000 mon.smithi052 (mon.0) 101 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:26.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:26 smithi052 bash[19834]: audit 2024-09-06T14:08:26.171521+0000 mon.smithi052 (mon.0) 102 : audit [DBG] from='client.? 172.21.15.52:0/45595421' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-06T14:08:26.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:26 smithi052 bash[19834]: audit 2024-09-06T14:08:26.171521+0000 mon.smithi052 (mon.0) 102 : audit [DBG] from='client.? 172.21.15.52:0/45595421' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-06T14:08:26.657 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stdout 8443 2024-09-06T14:08:26.657 INFO:teuthology.orchestra.run.smithi052.stdout:firewalld does not appear to be present 2024-09-06T14:08:26.658 INFO:teuthology.orchestra.run.smithi052.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-06T14:08:26.661 INFO:teuthology.orchestra.run.smithi052.stdout:Ceph Dashboard is now available at: 2024-09-06T14:08:26.661 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:08:26.661 INFO:teuthology.orchestra.run.smithi052.stdout: URL: https://smithi052.front.sepia.ceph.com:8443/ 2024-09-06T14:08:26.661 INFO:teuthology.orchestra.run.smithi052.stdout: User: admin 2024-09-06T14:08:26.661 INFO:teuthology.orchestra.run.smithi052.stdout: Password: i052rtdh1k 2024-09-06T14:08:26.661 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:08:26.661 INFO:teuthology.orchestra.run.smithi052.stdout:Saving cluster configuration to /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config directory 2024-09-06T14:08:27.529 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:27 smithi052 bash[19834]: cluster 2024-09-06T14:08:26.270073+0000 mon.smithi052 (mon.0) 103 : cluster [DBG] mgrmap e13: smithi052.grtqlq(active, since 12s) 2024-09-06T14:08:27.530 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:27 smithi052 bash[19834]: cluster 2024-09-06T14:08:26.270073+0000 mon.smithi052 (mon.0) 103 : cluster [DBG] mgrmap e13: smithi052.grtqlq(active, since 12s) 2024-09-06T14:08:28.945 INFO:teuthology.orchestra.run.smithi052.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout:Or, if you are only running a single cluster on this host: 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout: ceph telemetry on 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:08:28.946 INFO:teuthology.orchestra.run.smithi052.stdout:For more information see: 2024-09-06T14:08:28.947 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:08:28.947 INFO:teuthology.orchestra.run.smithi052.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-06T14:08:28.947 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:08:28.947 INFO:teuthology.orchestra.run.smithi052.stdout:Bootstrap complete. 2024-09-06T14:08:28.993 INFO:tasks.cephadm:Fetching config... 2024-09-06T14:08:28.994 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:08:28.994 DEBUG:teuthology.orchestra.run.smithi052:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-06T14:08:29.001 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-06T14:08:29.001 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:08:29.001 DEBUG:teuthology.orchestra.run.smithi052:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-06T14:08:29.048 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-06T14:08:29.048 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:08:29.048 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/keyring of=/dev/stdout 2024-09-06T14:08:29.104 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-06T14:08:29.105 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:08:29.105 DEBUG:teuthology.orchestra.run.smithi052:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-06T14:08:29.156 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-06T14:08:29.157 DEBUG:teuthology.orchestra.run.smithi052:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAiPtofCUidiXc/XXBgCbez7K/mWN2x8KyiU62+BhfTRSJo1PcNYAS1e/CfY+II027kJBPIPKcsq2B04AAV4Zusi9SrZC7NzTFVhx2XxS98osICS1jP8UKAm73nkOnHTTdDFvoxWkzbVbu09tMZNu5VX5BcWJ+gVR96RClYKdbp8ARI4pVmRETjToIiPRq1okmhDv66BP6CUQRQ4/8R4EzxisvG7yuUVNvbzfEksx9HPRUQoD3IhWVf1cDSzhHclYKwoCXZ06QCvOlORoTy92E0+Z71+4N6dqBOJVr7L+QIuTDuJryyvTglWEmM9foJZ0NcTqRXsRYbeZhyAZkzxZW2LM67+PQIeqC+2Ep1Z8jUwyqD6/o7427bhT5Obz2Cmmt6cLNqQy6VmHiv+70zS+6oX7y+yxHEHYoYyJ8F2QmLnHKtWTCGRDKTG0arLrgpmK6Gm6geucFRadu4E8xyvi/bzQvfHlykF/6SWcjIYpNIiw09gWD0Np5uaiRajjF1M0= ceph-11d261e0-6c59-11ef-bce4-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-06T14:08:29.211 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:29 smithi052 bash[19834]: audit 2024-09-06T14:08:28.190519+0000 mon.smithi052 (mon.0) 104 : audit [INF] from='client.? 172.21.15.52:0/1838515423' entity='client.admin' 2024-09-06T14:08:29.211 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:29 smithi052 bash[19834]: audit 2024-09-06T14:08:28.190519+0000 mon.smithi052 (mon.0) 104 : audit [INF] from='client.? 172.21.15.52:0/1838515423' entity='client.admin' 2024-09-06T14:08:29.218 INFO:teuthology.orchestra.run.smithi052.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAiPtofCUidiXc/XXBgCbez7K/mWN2x8KyiU62+BhfTRSJo1PcNYAS1e/CfY+II027kJBPIPKcsq2B04AAV4Zusi9SrZC7NzTFVhx2XxS98osICS1jP8UKAm73nkOnHTTdDFvoxWkzbVbu09tMZNu5VX5BcWJ+gVR96RClYKdbp8ARI4pVmRETjToIiPRq1okmhDv66BP6CUQRQ4/8R4EzxisvG7yuUVNvbzfEksx9HPRUQoD3IhWVf1cDSzhHclYKwoCXZ06QCvOlORoTy92E0+Z71+4N6dqBOJVr7L+QIuTDuJryyvTglWEmM9foJZ0NcTqRXsRYbeZhyAZkzxZW2LM67+PQIeqC+2Ep1Z8jUwyqD6/o7427bhT5Obz2Cmmt6cLNqQy6VmHiv+70zS+6oX7y+yxHEHYoYyJ8F2QmLnHKtWTCGRDKTG0arLrgpmK6Gm6geucFRadu4E8xyvi/bzQvfHlykF/6SWcjIYpNIiw09gWD0Np5uaiRajjF1M0= ceph-11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:08:29.225 DEBUG:teuthology.orchestra.run.smithi148:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAiPtofCUidiXc/XXBgCbez7K/mWN2x8KyiU62+BhfTRSJo1PcNYAS1e/CfY+II027kJBPIPKcsq2B04AAV4Zusi9SrZC7NzTFVhx2XxS98osICS1jP8UKAm73nkOnHTTdDFvoxWkzbVbu09tMZNu5VX5BcWJ+gVR96RClYKdbp8ARI4pVmRETjToIiPRq1okmhDv66BP6CUQRQ4/8R4EzxisvG7yuUVNvbzfEksx9HPRUQoD3IhWVf1cDSzhHclYKwoCXZ06QCvOlORoTy92E0+Z71+4N6dqBOJVr7L+QIuTDuJryyvTglWEmM9foJZ0NcTqRXsRYbeZhyAZkzxZW2LM67+PQIeqC+2Ep1Z8jUwyqD6/o7427bhT5Obz2Cmmt6cLNqQy6VmHiv+70zS+6oX7y+yxHEHYoYyJ8F2QmLnHKtWTCGRDKTG0arLrgpmK6Gm6geucFRadu4E8xyvi/bzQvfHlykF/6SWcjIYpNIiw09gWD0Np5uaiRajjF1M0= ceph-11d261e0-6c59-11ef-bce4-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-06T14:08:29.250 INFO:teuthology.orchestra.run.smithi148.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAiPtofCUidiXc/XXBgCbez7K/mWN2x8KyiU62+BhfTRSJo1PcNYAS1e/CfY+II027kJBPIPKcsq2B04AAV4Zusi9SrZC7NzTFVhx2XxS98osICS1jP8UKAm73nkOnHTTdDFvoxWkzbVbu09tMZNu5VX5BcWJ+gVR96RClYKdbp8ARI4pVmRETjToIiPRq1okmhDv66BP6CUQRQ4/8R4EzxisvG7yuUVNvbzfEksx9HPRUQoD3IhWVf1cDSzhHclYKwoCXZ06QCvOlORoTy92E0+Z71+4N6dqBOJVr7L+QIuTDuJryyvTglWEmM9foJZ0NcTqRXsRYbeZhyAZkzxZW2LM67+PQIeqC+2Ep1Z8jUwyqD6/o7427bhT5Obz2Cmmt6cLNqQy6VmHiv+70zS+6oX7y+yxHEHYoYyJ8F2QmLnHKtWTCGRDKTG0arLrgpmK6Gm6geucFRadu4E8xyvi/bzQvfHlykF/6SWcjIYpNIiw09gWD0Np5uaiRajjF1M0= ceph-11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:08:29.259 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-06T14:08:35.099 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:08:35.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:34 smithi052 bash[19834]: cluster 2024-09-06T14:08:33.771159+0000 mgr.smithi052.grtqlq (mgr.14158) 13 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:35.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:34 smithi052 bash[19834]: cluster 2024-09-06T14:08:33.771159+0000 mgr.smithi052.grtqlq (mgr.14158) 13 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:36.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.525218+0000 mon.smithi052 (mon.0) 105 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:36.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.525218+0000 mon.smithi052 (mon.0) 105 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:36.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.531441+0000 mon.smithi052 (mon.0) 106 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:36.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.531441+0000 mon.smithi052 (mon.0) 106 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:36.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.533569+0000 mon.smithi052 (mon.0) 107 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd/host:smithi052", "name": "osd_memory_target"} : dispatch 2024-09-06T14:08:36.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.533569+0000 mon.smithi052 (mon.0) 107 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd/host:smithi052", "name": "osd_memory_target"} : dispatch 2024-09-06T14:08:36.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.540775+0000 mon.smithi052 (mon.0) 108 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:36.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.540775+0000 mon.smithi052 (mon.0) 108 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:36.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.544218+0000 mon.smithi052 (mon.0) 109 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 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-09-06T14:08:36.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.544218+0000 mon.smithi052 (mon.0) 109 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 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-09-06T14:08:36.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.545931+0000 mon.smithi052 (mon.0) 110 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 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-09-06T14:08:36.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.545931+0000 mon.smithi052 (mon.0) 110 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 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-09-06T14:08:36.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.550697+0000 mon.smithi052 (mon.0) 111 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:08:36.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:35.550697+0000 mon.smithi052 (mon.0) 111 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:08:36.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:36.424853+0000 mon.smithi052 (mon.0) 112 : audit [INF] from='client.? 172.21.15.52:0/3435013512' entity='client.admin' 2024-09-06T14:08:36.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:36 smithi052 bash[19834]: audit 2024-09-06T14:08:36.424853+0000 mon.smithi052 (mon.0) 112 : audit [INF] from='client.? 172.21.15.52:0/3435013512' entity='client.admin' 2024-09-06T14:08:37.268 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-06T14:08:37.268 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-06T14:08:37.516 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:37 smithi052 bash[19834]: cephadm 2024-09-06T14:08:35.552534+0000 mgr.smithi052.grtqlq (mgr.14158) 14 : cephadm [INF] Deploying daemon ceph-exporter.smithi052 on smithi052 2024-09-06T14:08:37.517 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:37 smithi052 bash[19834]: cephadm 2024-09-06T14:08:35.552534+0000 mgr.smithi052.grtqlq (mgr.14158) 14 : cephadm [INF] Deploying daemon ceph-exporter.smithi052 on smithi052 2024-09-06T14:08:37.517 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:37 smithi052 bash[19834]: cluster 2024-09-06T14:08:35.771699+0000 mgr.smithi052.grtqlq (mgr.14158) 15 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:37.517 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:37 smithi052 bash[19834]: cluster 2024-09-06T14:08:35.771699+0000 mgr.smithi052.grtqlq (mgr.14158) 15 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:38.539 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:38 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:08:38.893 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:38 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:08:39.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: cluster 2024-09-06T14:08:37.772227+0000 mgr.smithi052.grtqlq (mgr.14158) 16 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:39.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: cluster 2024-09-06T14:08:37.772227+0000 mgr.smithi052.grtqlq (mgr.14158) 16 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:39.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.827152+0000 mon.smithi052 (mon.0) 113 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:39.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.827152+0000 mon.smithi052 (mon.0) 113 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:39.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.829415+0000 mon.smithi052 (mon.0) 114 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:39.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.829415+0000 mon.smithi052 (mon.0) 114 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:39.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.831980+0000 mon.smithi052 (mon.0) 115 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.831980+0000 mon.smithi052 (mon.0) 115 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.834119+0000 mon.smithi052 (mon.0) 116 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.834119+0000 mon.smithi052 (mon.0) 116 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.835272+0000 mon.smithi052 (mon.0) 117 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.835272+0000 mon.smithi052 (mon.0) 117 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.835888+0000 mon.smithi052 (mon.0) 118 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.835888+0000 mon.smithi052 (mon.0) 118 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.837614+0000 mon.smithi052 (mon.0) 119 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:38.837614+0000 mon.smithi052 (mon.0) 119 : audit [DBG] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:39.227998+0000 mon.smithi052 (mon.0) 120 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:39.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:39 smithi052 bash[19834]: audit 2024-09-06T14:08:39.227998+0000 mon.smithi052 (mon.0) 120 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:40.754 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:40 smithi052 bash[19834]: cephadm 2024-09-06T14:08:38.838464+0000 mgr.smithi052.grtqlq (mgr.14158) 17 : cephadm [INF] Deploying daemon crash.smithi052 on smithi052 2024-09-06T14:08:40.754 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:40 smithi052 bash[19834]: cephadm 2024-09-06T14:08:38.838464+0000 mgr.smithi052.grtqlq (mgr.14158) 17 : cephadm [INF] Deploying daemon crash.smithi052 on smithi052 2024-09-06T14:08:41.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:41 smithi052 bash[19834]: cluster 2024-09-06T14:08:39.772700+0000 mgr.smithi052.grtqlq (mgr.14158) 18 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:41.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:41 smithi052 bash[19834]: cluster 2024-09-06T14:08:39.772700+0000 mgr.smithi052.grtqlq (mgr.14158) 18 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:41.793 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:41 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:08:42.131 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:41 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:08:43.001 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:08:43.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:42 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: cluster 2024-09-06T14:08:41.773093+0000 mgr.smithi052.grtqlq (mgr.14158) 19 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: cluster 2024-09-06T14:08:41.773093+0000 mgr.smithi052.grtqlq (mgr.14158) 19 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: audit 2024-09-06T14:08:42.074383+0000 mon.smithi052 (mon.0) 121 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: audit 2024-09-06T14:08:42.074383+0000 mon.smithi052 (mon.0) 121 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: audit 2024-09-06T14:08:42.077057+0000 mon.smithi052 (mon.0) 122 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: audit 2024-09-06T14:08:42.077057+0000 mon.smithi052 (mon.0) 122 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: audit 2024-09-06T14:08:42.079342+0000 mon.smithi052 (mon.0) 123 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: audit 2024-09-06T14:08:42.079342+0000 mon.smithi052 (mon.0) 123 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: audit 2024-09-06T14:08:42.081263+0000 mon.smithi052 (mon.0) 124 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: audit 2024-09-06T14:08:42.081263+0000 mon.smithi052 (mon.0) 124 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: cephadm 2024-09-06T14:08:42.082450+0000 mgr.smithi052.grtqlq (mgr.14158) 20 : cephadm [INF] Deploying daemon node-exporter.smithi052 on smithi052 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 bash[19834]: cephadm 2024-09-06T14:08:42.082450+0000 mgr.smithi052.grtqlq (mgr.14158) 20 : cephadm [INF] Deploying daemon node-exporter.smithi052 on smithi052 2024-09-06T14:08:43.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:43 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:08:44.580 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: audit 2024-09-06T14:08:43.266378+0000 mon.smithi052 (mon.0) 125 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:44.580 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: audit 2024-09-06T14:08:43.266378+0000 mon.smithi052 (mon.0) 125 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:44.580 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: audit 2024-09-06T14:08:43.268550+0000 mon.smithi052 (mon.0) 126 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:44.580 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: audit 2024-09-06T14:08:43.268550+0000 mon.smithi052 (mon.0) 126 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:44.580 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: audit 2024-09-06T14:08:43.270746+0000 mon.smithi052 (mon.0) 127 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:44.580 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: audit 2024-09-06T14:08:43.270746+0000 mon.smithi052 (mon.0) 127 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:44.580 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: audit 2024-09-06T14:08:43.272672+0000 mon.smithi052 (mon.0) 128 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:44.580 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: audit 2024-09-06T14:08:43.272672+0000 mon.smithi052 (mon.0) 128 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:44.580 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: cephadm 2024-09-06T14:08:43.281495+0000 mgr.smithi052.grtqlq (mgr.14158) 21 : cephadm [INF] Deploying daemon alertmanager.smithi052 on smithi052 2024-09-06T14:08:44.581 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: cephadm 2024-09-06T14:08:43.281495+0000 mgr.smithi052.grtqlq (mgr.14158) 21 : cephadm [INF] Deploying daemon alertmanager.smithi052 on smithi052 2024-09-06T14:08:44.581 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: audit 2024-09-06T14:08:44.233731+0000 mon.smithi052 (mon.0) 129 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:44.581 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:44 smithi052 bash[19834]: audit 2024-09-06T14:08:44.233731+0000 mon.smithi052 (mon.0) 129 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:45.566 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:45 smithi052 bash[19834]: cluster 2024-09-06T14:08:43.773389+0000 mgr.smithi052.grtqlq (mgr.14158) 22 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:45.566 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:45 smithi052 bash[19834]: cluster 2024-09-06T14:08:43.773389+0000 mgr.smithi052.grtqlq (mgr.14158) 22 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:45.566 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:45 smithi052 bash[19834]: audit 2024-09-06T14:08:44.908348+0000 mon.smithi052 (mon.0) 130 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:45.566 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:45 smithi052 bash[19834]: audit 2024-09-06T14:08:44.908348+0000 mon.smithi052 (mon.0) 130 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:45.641 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi148 2024-09-06T14:08:45.641 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T14:08:45.641 DEBUG:teuthology.orchestra.run.smithi148:> dd of=/etc/ceph/ceph.conf 2024-09-06T14:08:45.648 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T14:08:45.648 DEBUG:teuthology.orchestra.run.smithi148:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:08:45.693 INFO:tasks.cephadm:Adding host smithi148 to orchestrator... 2024-09-06T14:08:45.694 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph orch host add smithi148 2024-09-06T14:08:46.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:46 smithi052 bash[19834]: audit 2024-09-06T14:08:44.903689+0000 mgr.smithi052.grtqlq (mgr.14158) 23 : audit [DBG] from='client.14183 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:46.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:46 smithi052 bash[19834]: audit 2024-09-06T14:08:44.903689+0000 mgr.smithi052.grtqlq (mgr.14158) 23 : audit [DBG] from='client.14183 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:47.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:47 smithi052 bash[19834]: cluster 2024-09-06T14:08:45.773800+0000 mgr.smithi052.grtqlq (mgr.14158) 24 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:47.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:47 smithi052 bash[19834]: cluster 2024-09-06T14:08:45.773800+0000 mgr.smithi052.grtqlq (mgr.14158) 24 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:49.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:49 smithi052 bash[19834]: cluster 2024-09-06T14:08:47.774334+0000 mgr.smithi052.grtqlq (mgr.14158) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:49.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:49 smithi052 bash[19834]: cluster 2024-09-06T14:08:47.774334+0000 mgr.smithi052.grtqlq (mgr.14158) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:50.448 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:08:51.604 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:51 smithi052 bash[19834]: cluster 2024-09-06T14:08:49.774731+0000 mgr.smithi052.grtqlq (mgr.14158) 26 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:51.604 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:51 smithi052 bash[19834]: cluster 2024-09-06T14:08:49.774731+0000 mgr.smithi052.grtqlq (mgr.14158) 26 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:53.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:53 smithi052 bash[19834]: cluster 2024-09-06T14:08:51.775009+0000 mgr.smithi052.grtqlq (mgr.14158) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:53.846 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:53 smithi052 bash[19834]: cluster 2024-09-06T14:08:51.775009+0000 mgr.smithi052.grtqlq (mgr.14158) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:53.846 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:53 smithi052 bash[19834]: audit 2024-09-06T14:08:51.937863+0000 mgr.smithi052.grtqlq (mgr.14158) 28 : audit [DBG] from='client.14185 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi148", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:53.846 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:53 smithi052 bash[19834]: audit 2024-09-06T14:08:51.937863+0000 mgr.smithi052.grtqlq (mgr.14158) 28 : audit [DBG] from='client.14185 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi148", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:08:54.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:54 smithi052 bash[19834]: cephadm 2024-09-06T14:08:53.211946+0000 mgr.smithi052.grtqlq (mgr.14158) 29 : cephadm [INF] Deploying cephadm binary to smithi148 2024-09-06T14:08:54.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:54 smithi052 bash[19834]: cephadm 2024-09-06T14:08:53.211946+0000 mgr.smithi052.grtqlq (mgr.14158) 29 : cephadm [INF] Deploying cephadm binary to smithi148 2024-09-06T14:08:55.628 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:55 smithi052 bash[19834]: cluster 2024-09-06T14:08:53.775452+0000 mgr.smithi052.grtqlq (mgr.14158) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:55.628 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:55 smithi052 bash[19834]: cluster 2024-09-06T14:08:53.775452+0000 mgr.smithi052.grtqlq (mgr.14158) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:56.897 INFO:teuthology.orchestra.run.smithi052.stdout:Added host 'smithi148' with addr '172.21.15.148' 2024-09-06T14:08:57.575 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:57 smithi052 bash[19834]: cluster 2024-09-06T14:08:55.775921+0000 mgr.smithi052.grtqlq (mgr.14158) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:57.575 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:57 smithi052 bash[19834]: cluster 2024-09-06T14:08:55.775921+0000 mgr.smithi052.grtqlq (mgr.14158) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:57.575 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:57 smithi052 bash[19834]: audit 2024-09-06T14:08:56.901669+0000 mon.smithi052 (mon.0) 131 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:57.576 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:57 smithi052 bash[19834]: audit 2024-09-06T14:08:56.901669+0000 mon.smithi052 (mon.0) 131 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:08:57.577 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph orch host ls --format=json 2024-09-06T14:08:58.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:58 smithi052 bash[19834]: cephadm 2024-09-06T14:08:56.902589+0000 mgr.smithi052.grtqlq (mgr.14158) 32 : cephadm [INF] Added host smithi148 2024-09-06T14:08:58.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:58 smithi052 bash[19834]: cephadm 2024-09-06T14:08:56.902589+0000 mgr.smithi052.grtqlq (mgr.14158) 32 : cephadm [INF] Added host smithi148 2024-09-06T14:08:59.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:59 smithi052 bash[19834]: cluster 2024-09-06T14:08:57.776268+0000 mgr.smithi052.grtqlq (mgr.14158) 33 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:08:59.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:08:59 smithi052 bash[19834]: cluster 2024-09-06T14:08:57.776268+0000 mgr.smithi052.grtqlq (mgr.14158) 33 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:01.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:01 smithi052 bash[19834]: cluster 2024-09-06T14:08:59.776713+0000 mgr.smithi052.grtqlq (mgr.14158) 34 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:01.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:01 smithi052 bash[19834]: cluster 2024-09-06T14:08:59.776713+0000 mgr.smithi052.grtqlq (mgr.14158) 34 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:02.323 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:09:03.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:03 smithi052 bash[19834]: cluster 2024-09-06T14:09:01.777167+0000 mgr.smithi052.grtqlq (mgr.14158) 35 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:03.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:03 smithi052 bash[19834]: cluster 2024-09-06T14:09:01.777167+0000 mgr.smithi052.grtqlq (mgr.14158) 35 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:03.689 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:09:03.689 INFO:teuthology.orchestra.run.smithi052.stdout:[{"addr": "172.21.15.52", "hostname": "smithi052", "labels": [], "status": ""}, {"addr": "172.21.15.148", "hostname": "smithi148", "labels": [], "status": ""}] 2024-09-06T14:09:04.678 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-06T14:09:04.679 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd crush tunables default 2024-09-06T14:09:05.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:05 smithi052 bash[19834]: audit 2024-09-06T14:09:03.693846+0000 mgr.smithi052.grtqlq (mgr.14158) 36 : audit [DBG] from='client.14187 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:09:05.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:05 smithi052 bash[19834]: audit 2024-09-06T14:09:03.693846+0000 mgr.smithi052.grtqlq (mgr.14158) 36 : audit [DBG] from='client.14187 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:09:05.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:05 smithi052 bash[19834]: cluster 2024-09-06T14:09:03.777599+0000 mgr.smithi052.grtqlq (mgr.14158) 37 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:05.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:05 smithi052 bash[19834]: cluster 2024-09-06T14:09:03.777599+0000 mgr.smithi052.grtqlq (mgr.14158) 37 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:07.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:07 smithi052 bash[19834]: cluster 2024-09-06T14:09:05.778068+0000 mgr.smithi052.grtqlq (mgr.14158) 38 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:07.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:07 smithi052 bash[19834]: cluster 2024-09-06T14:09:05.778068+0000 mgr.smithi052.grtqlq (mgr.14158) 38 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:09.437 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:09:09.532 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:09 smithi052 bash[19834]: cluster 2024-09-06T14:09:07.778453+0000 mgr.smithi052.grtqlq (mgr.14158) 39 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:09.532 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:09 smithi052 bash[19834]: cluster 2024-09-06T14:09:07.778453+0000 mgr.smithi052.grtqlq (mgr.14158) 39 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:11.650 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:11 smithi052 bash[19834]: cluster 2024-09-06T14:09:09.778855+0000 mgr.smithi052.grtqlq (mgr.14158) 40 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:11.650 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:11 smithi052 bash[19834]: cluster 2024-09-06T14:09:09.778855+0000 mgr.smithi052.grtqlq (mgr.14158) 40 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:12.309 INFO:teuthology.orchestra.run.smithi052.stderr:adjusted tunables profile to default 2024-09-06T14:09:12.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:12 smithi052 bash[19834]: audit 2024-09-06T14:09:11.993695+0000 mon.smithi052 (mon.0) 132 : audit [INF] from='client.? 172.21.15.52:0/928761523' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-06T14:09:12.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:12 smithi052 bash[19834]: audit 2024-09-06T14:09:11.993695+0000 mon.smithi052 (mon.0) 132 : audit [INF] from='client.? 172.21.15.52:0/928761523' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-06T14:09:13.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:13 smithi052 bash[19834]: cluster 2024-09-06T14:09:11.779133+0000 mgr.smithi052.grtqlq (mgr.14158) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:13.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:13 smithi052 bash[19834]: cluster 2024-09-06T14:09:11.779133+0000 mgr.smithi052.grtqlq (mgr.14158) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:13.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:13 smithi052 bash[19834]: audit 2024-09-06T14:09:12.313527+0000 mon.smithi052 (mon.0) 133 : audit [INF] from='client.? 172.21.15.52:0/928761523' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-06T14:09:13.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:13 smithi052 bash[19834]: audit 2024-09-06T14:09:12.313527+0000 mon.smithi052 (mon.0) 133 : audit [INF] from='client.? 172.21.15.52:0/928761523' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-06T14:09:13.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:13 smithi052 bash[19834]: cluster 2024-09-06T14:09:12.319125+0000 mon.smithi052 (mon.0) 134 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-06T14:09:13.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:13 smithi052 bash[19834]: cluster 2024-09-06T14:09:12.319125+0000 mon.smithi052 (mon.0) 134 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-06T14:09:13.710 INFO:tasks.cephadm:Adding mon.smithi052 on smithi052 2024-09-06T14:09:13.710 INFO:tasks.cephadm:Adding mon.smithi148 on smithi148 2024-09-06T14:09:13.711 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph orch apply mon '2;smithi052:172.21.15.52=smithi052;smithi148:172.21.15.148=smithi148' 2024-09-06T14:09:14.934 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:15.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:15 smithi052 bash[19834]: cluster 2024-09-06T14:09:13.779529+0000 mgr.smithi052.grtqlq (mgr.14158) 42 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:15.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:15 smithi052 bash[19834]: cluster 2024-09-06T14:09:13.779529+0000 mgr.smithi052.grtqlq (mgr.14158) 42 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:15.980 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:17.342 INFO:teuthology.orchestra.run.smithi148.stdout:Scheduled mon update... 2024-09-06T14:09:17.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:17 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:09:17.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:17 smithi052 bash[19834]: cluster 2024-09-06T14:09:15.780030+0000 mgr.smithi052.grtqlq (mgr.14158) 43 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:17.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:17 smithi052 bash[19834]: cluster 2024-09-06T14:09:15.780030+0000 mgr.smithi052.grtqlq (mgr.14158) 43 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:17.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:17 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:09:17.973 DEBUG:teuthology.orchestra.run.smithi148:mon.smithi148> sudo journalctl -f -n 0 -u ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi148.service 2024-09-06T14:09:17.975 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:09:17.976 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:09:18.673 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.341677+0000 mgr.smithi052.grtqlq (mgr.14158) 44 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi052:172.21.15.52=smithi052;smithi148:172.21.15.148=smithi148", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:09:18.673 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.341677+0000 mgr.smithi052.grtqlq (mgr.14158) 44 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi052:172.21.15.52=smithi052;smithi148:172.21.15.148=smithi148", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:09:18.673 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: cephadm 2024-09-06T14:09:17.343964+0000 mgr.smithi052.grtqlq (mgr.14158) 45 : cephadm [INF] Saving service mon spec with placement smithi052:172.21.15.52=smithi052;smithi148:172.21.15.148=smithi148;count:2 2024-09-06T14:09:18.673 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: cephadm 2024-09-06T14:09:17.343964+0000 mgr.smithi052.grtqlq (mgr.14158) 45 : cephadm [INF] Saving service mon spec with placement smithi052:172.21.15.52=smithi052;smithi148:172.21.15.148=smithi148;count:2 2024-09-06T14:09:18.674 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.346265+0000 mon.smithi052 (mon.0) 135 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:18.674 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.346265+0000 mon.smithi052 (mon.0) 135 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:18.674 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.688267+0000 mon.smithi052 (mon.0) 136 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:18.674 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.688267+0000 mon.smithi052 (mon.0) 136 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:18.674 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.690843+0000 mon.smithi052 (mon.0) 137 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:18.674 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.690843+0000 mon.smithi052 (mon.0) 137 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:18.674 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.693317+0000 mon.smithi052 (mon.0) 138 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:18.674 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.693317+0000 mon.smithi052 (mon.0) 138 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:18.674 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.695464+0000 mon.smithi052 (mon.0) 139 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:18.674 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:18 smithi052 bash[19834]: audit 2024-09-06T14:09:17.695464+0000 mon.smithi052 (mon.0) 139 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.244 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:19.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: cephadm 2024-09-06T14:09:17.696496+0000 mgr.smithi052.grtqlq (mgr.14158) 46 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-09-06T14:09:19.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: cephadm 2024-09-06T14:09:17.696496+0000 mgr.smithi052.grtqlq (mgr.14158) 46 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-09-06T14:09:19.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: cluster 2024-09-06T14:09:17.780332+0000 mgr.smithi052.grtqlq (mgr.14158) 47 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:19.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: cluster 2024-09-06T14:09:17.780332+0000 mgr.smithi052.grtqlq (mgr.14158) 47 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.541552+0000 mon.smithi052 (mon.0) 140 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.541552+0000 mon.smithi052 (mon.0) 140 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.546801+0000 mon.smithi052 (mon.0) 141 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.546801+0000 mon.smithi052 (mon.0) 141 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.548984+0000 mon.smithi052 (mon.0) 142 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.548984+0000 mon.smithi052 (mon.0) 142 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.554581+0000 mon.smithi052 (mon.0) 143 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.554581+0000 mon.smithi052 (mon.0) 143 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.564547+0000 mon.smithi052 (mon.0) 144 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.564547+0000 mon.smithi052 (mon.0) 144 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.567354+0000 mon.smithi052 (mon.0) 145 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:18.567354+0000 mon.smithi052 (mon.0) 145 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:19.245319+0000 mon.smithi052 (mon.0) 146 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:19.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:19 smithi052 bash[19834]: audit 2024-09-06T14:09:19.245319+0000 mon.smithi052 (mon.0) 146 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:20.289 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:20.804 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:20 smithi052 bash[19834]: audit 2024-09-06T14:09:18.549883+0000 mgr.smithi052.grtqlq (mgr.14158) 48 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-06T14:09:20.805 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:20 smithi052 bash[19834]: audit 2024-09-06T14:09:18.549883+0000 mgr.smithi052.grtqlq (mgr.14158) 48 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-06T14:09:20.805 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:20 smithi052 bash[19834]: cephadm 2024-09-06T14:09:18.581213+0000 mgr.smithi052.grtqlq (mgr.14158) 49 : cephadm [INF] Deploying daemon grafana.smithi052 on smithi052 2024-09-06T14:09:20.805 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:20 smithi052 bash[19834]: cephadm 2024-09-06T14:09:18.581213+0000 mgr.smithi052.grtqlq (mgr.14158) 49 : cephadm [INF] Deploying daemon grafana.smithi052 on smithi052 2024-09-06T14:09:21.756 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:09:21.757 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:09:21.757 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:09:21.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:21 smithi052 bash[19834]: cluster 2024-09-06T14:09:19.780756+0000 mgr.smithi052.grtqlq (mgr.14158) 50 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:21.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:21 smithi052 bash[19834]: cluster 2024-09-06T14:09:19.780756+0000 mgr.smithi052.grtqlq (mgr.14158) 50 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:22.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:22 smithi052 bash[19834]: audit 2024-09-06T14:09:21.760685+0000 mon.smithi052 (mon.0) 147 : audit [DBG] from='client.? 172.21.15.148:0/3443514805' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:22.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:22 smithi052 bash[19834]: audit 2024-09-06T14:09:21.760685+0000 mon.smithi052 (mon.0) 147 : audit [DBG] from='client.? 172.21.15.148:0/3443514805' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:23.321 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:09:23.321 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:09:23.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:23 smithi052 bash[19834]: cluster 2024-09-06T14:09:21.781170+0000 mgr.smithi052.grtqlq (mgr.14158) 51 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:23.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:23 smithi052 bash[19834]: cluster 2024-09-06T14:09:21.781170+0000 mgr.smithi052.grtqlq (mgr.14158) 51 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:24.546 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:24.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:24 smithi052 bash[19834]: cluster 2024-09-06T14:09:23.781567+0000 mgr.smithi052.grtqlq (mgr.14158) 52 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:24.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:24 smithi052 bash[19834]: cluster 2024-09-06T14:09:23.781567+0000 mgr.smithi052.grtqlq (mgr.14158) 52 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:25.592 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:26.913 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:09:26.914 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:09:26.914 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:09:27.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:26 smithi052 bash[19834]: cluster 2024-09-06T14:09:25.782039+0000 mgr.smithi052.grtqlq (mgr.14158) 53 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:27.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:26 smithi052 bash[19834]: cluster 2024-09-06T14:09:25.782039+0000 mgr.smithi052.grtqlq (mgr.14158) 53 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:28.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:27 smithi052 bash[19834]: audit 2024-09-06T14:09:26.917444+0000 mon.smithi052 (mon.0) 148 : audit [DBG] from='client.? 172.21.15.148:0/4211747072' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:28.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:27 smithi052 bash[19834]: audit 2024-09-06T14:09:26.917444+0000 mon.smithi052 (mon.0) 148 : audit [DBG] from='client.? 172.21.15.148:0/4211747072' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:28.501 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:09:28.501 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:09:29.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:28 smithi052 bash[19834]: cluster 2024-09-06T14:09:27.782589+0000 mgr.smithi052.grtqlq (mgr.14158) 54 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:29.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:28 smithi052 bash[19834]: cluster 2024-09-06T14:09:27.782589+0000 mgr.smithi052.grtqlq (mgr.14158) 54 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:29.725 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:30.771 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:31.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:30 smithi052 bash[19834]: cluster 2024-09-06T14:09:29.783006+0000 mgr.smithi052.grtqlq (mgr.14158) 55 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:31.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:30 smithi052 bash[19834]: cluster 2024-09-06T14:09:29.783006+0000 mgr.smithi052.grtqlq (mgr.14158) 55 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:32.061 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:09:32.062 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:09:32.062 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:09:33.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:32 smithi052 bash[19834]: cluster 2024-09-06T14:09:31.783434+0000 mgr.smithi052.grtqlq (mgr.14158) 56 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:33.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:32 smithi052 bash[19834]: cluster 2024-09-06T14:09:31.783434+0000 mgr.smithi052.grtqlq (mgr.14158) 56 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:33.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:32 smithi052 bash[19834]: audit 2024-09-06T14:09:32.065712+0000 mon.smithi052 (mon.0) 149 : audit [DBG] from='client.? 172.21.15.148:0/623516341' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:33.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:32 smithi052 bash[19834]: audit 2024-09-06T14:09:32.065712+0000 mon.smithi052 (mon.0) 149 : audit [DBG] from='client.? 172.21.15.148:0/623516341' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:33.599 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:09:33.599 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:09:34.823 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:35.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:34 smithi052 bash[19834]: cluster 2024-09-06T14:09:33.783975+0000 mgr.smithi052.grtqlq (mgr.14158) 57 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:35.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:34 smithi052 bash[19834]: cluster 2024-09-06T14:09:33.783975+0000 mgr.smithi052.grtqlq (mgr.14158) 57 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:35.869 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:36 smithi052 bash[19834]: cluster 2024-09-06T14:09:35.784516+0000 mgr.smithi052.grtqlq (mgr.14158) 58 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:36 smithi052 bash[19834]: cluster 2024-09-06T14:09:35.784516+0000 mgr.smithi052.grtqlq (mgr.14158) 58 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:37.198 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:09:37.198 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:09:37.198 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:09:38.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:37 smithi052 bash[19834]: audit 2024-09-06T14:09:37.202023+0000 mon.smithi052 (mon.0) 150 : audit [DBG] from='client.? 172.21.15.148:0/3663355706' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:38.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:37 smithi052 bash[19834]: audit 2024-09-06T14:09:37.202023+0000 mon.smithi052 (mon.0) 150 : audit [DBG] from='client.? 172.21.15.148:0/3663355706' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:38.786 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:09:38.787 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:09:39.145 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:38 smithi052 bash[19834]: cluster 2024-09-06T14:09:37.785099+0000 mgr.smithi052.grtqlq (mgr.14158) 59 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:39.145 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:38 smithi052 bash[19834]: cluster 2024-09-06T14:09:37.785099+0000 mgr.smithi052.grtqlq (mgr.14158) 59 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:40.009 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:40.119 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:40 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:09:40.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:40 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:09:41.053 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:41.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: cluster 2024-09-06T14:09:39.785579+0000 mgr.smithi052.grtqlq (mgr.14158) 60 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:41.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: cluster 2024-09-06T14:09:39.785579+0000 mgr.smithi052.grtqlq (mgr.14158) 60 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:41.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.406916+0000 mon.smithi052 (mon.0) 151 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.406916+0000 mon.smithi052 (mon.0) 151 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.409621+0000 mon.smithi052 (mon.0) 152 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.409621+0000 mon.smithi052 (mon.0) 152 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.412071+0000 mon.smithi052 (mon.0) 153 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.412071+0000 mon.smithi052 (mon.0) 153 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.414144+0000 mon.smithi052 (mon.0) 154 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.414144+0000 mon.smithi052 (mon.0) 154 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.416560+0000 mon.smithi052 (mon.0) 155 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.416560+0000 mon.smithi052 (mon.0) 155 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.419054+0000 mon.smithi052 (mon.0) 156 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.419054+0000 mon.smithi052 (mon.0) 156 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.421536+0000 mon.smithi052 (mon.0) 157 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.421536+0000 mon.smithi052 (mon.0) 157 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.423283+0000 mon.smithi052 (mon.0) 158 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:41.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:41 smithi052 bash[19834]: audit 2024-09-06T14:09:40.423283+0000 mon.smithi052 (mon.0) 158 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:42.381 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:09:42.381 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:09:42.382 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:09:42.645 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:42 smithi052 bash[19834]: cephadm 2024-09-06T14:09:40.688775+0000 mgr.smithi052.grtqlq (mgr.14158) 61 : cephadm [INF] Deploying daemon prometheus.smithi052 on smithi052 2024-09-06T14:09:42.646 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:42 smithi052 bash[19834]: cephadm 2024-09-06T14:09:40.688775+0000 mgr.smithi052.grtqlq (mgr.14158) 61 : cephadm [INF] Deploying daemon prometheus.smithi052 on smithi052 2024-09-06T14:09:42.646 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:42 smithi052 bash[19834]: audit 2024-09-06T14:09:42.385512+0000 mon.smithi052 (mon.0) 159 : audit [DBG] from='client.? 172.21.15.148:0/4031558083' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:42.646 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:42 smithi052 bash[19834]: audit 2024-09-06T14:09:42.385512+0000 mon.smithi052 (mon.0) 159 : audit [DBG] from='client.? 172.21.15.148:0/4031558083' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:43 smithi052 bash[19834]: cluster 2024-09-06T14:09:41.785951+0000 mgr.smithi052.grtqlq (mgr.14158) 62 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:43 smithi052 bash[19834]: cluster 2024-09-06T14:09:41.785951+0000 mgr.smithi052.grtqlq (mgr.14158) 62 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:43.935 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:09:43.936 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:09:45.161 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:45.301 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:45 smithi052 bash[19834]: cluster 2024-09-06T14:09:43.786493+0000 mgr.smithi052.grtqlq (mgr.14158) 63 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:45.301 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:45 smithi052 bash[19834]: cluster 2024-09-06T14:09:43.786493+0000 mgr.smithi052.grtqlq (mgr.14158) 63 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:45.301 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:45 smithi052 bash[19834]: audit 2024-09-06T14:09:44.276022+0000 mon.smithi052 (mon.0) 160 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:45.301 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:45 smithi052 bash[19834]: audit 2024-09-06T14:09:44.276022+0000 mon.smithi052 (mon.0) 160 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:46.206 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:47.393 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:47 smithi052 bash[19834]: cluster 2024-09-06T14:09:45.786981+0000 mgr.smithi052.grtqlq (mgr.14158) 64 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:47.393 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:47 smithi052 bash[19834]: cluster 2024-09-06T14:09:45.786981+0000 mgr.smithi052.grtqlq (mgr.14158) 64 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:47.532 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:09:47.532 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:09:47.532 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:09:48.524 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:48 smithi052 bash[19834]: audit 2024-09-06T14:09:47.535800+0000 mon.smithi052 (mon.0) 161 : audit [DBG] from='client.? 172.21.15.148:0/1596515060' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:48.525 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:48 smithi052 bash[19834]: audit 2024-09-06T14:09:47.535800+0000 mon.smithi052 (mon.0) 161 : audit [DBG] from='client.? 172.21.15.148:0/1596515060' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:49.049 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:09:49.050 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:09:49.324 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:49 smithi052 bash[19834]: cluster 2024-09-06T14:09:47.787481+0000 mgr.smithi052.grtqlq (mgr.14158) 65 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:49.325 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:49 smithi052 bash[19834]: cluster 2024-09-06T14:09:47.787481+0000 mgr.smithi052.grtqlq (mgr.14158) 65 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:50.274 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:51.319 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:51.383 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:51 smithi052 bash[19834]: cluster 2024-09-06T14:09:49.787845+0000 mgr.smithi052.grtqlq (mgr.14158) 66 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:51.383 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:51 smithi052 bash[19834]: cluster 2024-09-06T14:09:49.787845+0000 mgr.smithi052.grtqlq (mgr.14158) 66 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:52.656 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:09:52.657 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:09:52.657 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:09:53.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:53 smithi052 bash[19834]: cluster 2024-09-06T14:09:51.788352+0000 mgr.smithi052.grtqlq (mgr.14158) 67 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:53.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:53 smithi052 bash[19834]: cluster 2024-09-06T14:09:51.788352+0000 mgr.smithi052.grtqlq (mgr.14158) 67 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:53.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:53 smithi052 bash[19834]: audit 2024-09-06T14:09:52.660368+0000 mon.smithi052 (mon.0) 162 : audit [DBG] from='client.? 172.21.15.148:0/1317722253' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:53.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:53 smithi052 bash[19834]: audit 2024-09-06T14:09:52.660368+0000 mon.smithi052 (mon.0) 162 : audit [DBG] from='client.? 172.21.15.148:0/1317722253' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:54.185 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:09:54.186 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:09:55.401 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:55.493 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:55 smithi052 bash[19834]: cluster 2024-09-06T14:09:53.788847+0000 mgr.smithi052.grtqlq (mgr.14158) 68 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:55.493 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:55 smithi052 bash[19834]: cluster 2024-09-06T14:09:53.788847+0000 mgr.smithi052.grtqlq (mgr.14158) 68 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:56.445 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:09:57.430 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:57 smithi052 bash[19834]: cluster 2024-09-06T14:09:55.789298+0000 mgr.smithi052.grtqlq (mgr.14158) 69 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:57.430 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:57 smithi052 bash[19834]: cluster 2024-09-06T14:09:55.789298+0000 mgr.smithi052.grtqlq (mgr.14158) 69 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:57.810 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:09:57.810 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:09:57.811 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:09:58.547 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:58 smithi052 bash[19834]: audit 2024-09-06T14:09:57.814017+0000 mon.smithi052 (mon.0) 163 : audit [DBG] from='client.? 172.21.15.148:0/1961673705' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:58.547 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:58 smithi052 bash[19834]: audit 2024-09-06T14:09:57.814017+0000 mon.smithi052 (mon.0) 163 : audit [DBG] from='client.? 172.21.15.148:0/1961673705' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:09:59.055 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:58 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:09:59.308 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:09:59.308 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: cluster 2024-09-06T14:09:57.789639+0000 mgr.smithi052.grtqlq (mgr.14158) 70 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:59.308 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: cluster 2024-09-06T14:09:57.789639+0000 mgr.smithi052.grtqlq (mgr.14158) 70 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:09:59.308 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: audit 2024-09-06T14:09:59.225640+0000 mon.smithi052 (mon.0) 164 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:59.308 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: audit 2024-09-06T14:09:59.225640+0000 mon.smithi052 (mon.0) 164 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:59.308 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: audit 2024-09-06T14:09:59.228430+0000 mon.smithi052 (mon.0) 165 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:59.308 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: audit 2024-09-06T14:09:59.228430+0000 mon.smithi052 (mon.0) 165 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:59.309 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: audit 2024-09-06T14:09:59.230991+0000 mon.smithi052 (mon.0) 166 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:59.309 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: audit 2024-09-06T14:09:59.230991+0000 mon.smithi052 (mon.0) 166 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:59.309 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: audit 2024-09-06T14:09:59.232904+0000 mon.smithi052 (mon.0) 167 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-06T14:09:59.309 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: audit 2024-09-06T14:09:59.232904+0000 mon.smithi052 (mon.0) 167 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-06T14:09:59.309 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: audit 2024-09-06T14:09:59.280463+0000 mon.smithi052 (mon.0) 168 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:59.309 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:09:59 smithi052 bash[19834]: audit 2024-09-06T14:09:59.280463+0000 mon.smithi052 (mon.0) 168 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:09:59.358 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:09:59.358 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:10:00.583 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:10:01.498 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:01 smithi052 bash[19834]: audit 2024-09-06T14:10:00.231763+0000 mon.smithi052 (mon.0) 169 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-06T14:10:01.498 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:01 smithi052 bash[19834]: audit 2024-09-06T14:10:00.231763+0000 mon.smithi052 (mon.0) 169 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-06T14:10:01.498 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:01 smithi052 bash[19834]: cluster 2024-09-06T14:10:00.237251+0000 mon.smithi052 (mon.0) 170 : cluster [DBG] mgrmap e14: smithi052.grtqlq(active, since 106s) 2024-09-06T14:10:01.498 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:01 smithi052 bash[19834]: cluster 2024-09-06T14:10:00.237251+0000 mon.smithi052 (mon.0) 170 : cluster [DBG] mgrmap e14: smithi052.grtqlq(active, since 106s) 2024-09-06T14:10:01.628 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:10:03.061 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:10:03.061 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:10:03.061 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:10:03.307 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:03 smithi052 bash[19834]: audit 2024-09-06T14:10:03.064928+0000 mon.smithi052 (mon.0) 171 : audit [DBG] from='client.? 172.21.15.148:0/1271374658' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:03.307 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:03 smithi052 bash[19834]: audit 2024-09-06T14:10:03.064928+0000 mon.smithi052 (mon.0) 171 : audit [DBG] from='client.? 172.21.15.148:0/1271374658' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:04.597 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:10:04.597 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:10:05.826 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:10:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: cluster 2024-09-06T14:10:06.572432+0000 mon.smithi052 (mon.0) 172 : cluster [INF] Active manager daemon smithi052.grtqlq restarted 2024-09-06T14:10:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: cluster 2024-09-06T14:10:06.572432+0000 mon.smithi052 (mon.0) 172 : cluster [INF] Active manager daemon smithi052.grtqlq restarted 2024-09-06T14:10:06.716 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: cluster 2024-09-06T14:10:06.572995+0000 mon.smithi052 (mon.0) 173 : cluster [INF] Activating manager daemon smithi052.grtqlq 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: cluster 2024-09-06T14:10:06.572995+0000 mon.smithi052 (mon.0) 173 : cluster [INF] Activating manager daemon smithi052.grtqlq 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: cluster 2024-09-06T14:10:06.576466+0000 mon.smithi052 (mon.0) 174 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: cluster 2024-09-06T14:10:06.576466+0000 mon.smithi052 (mon.0) 174 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: cluster 2024-09-06T14:10:06.576586+0000 mon.smithi052 (mon.0) 175 : cluster [DBG] mgrmap e15: smithi052.grtqlq(active, starting, since 0.00380054s) 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: cluster 2024-09-06T14:10:06.576586+0000 mon.smithi052 (mon.0) 175 : cluster [DBG] mgrmap e15: smithi052.grtqlq(active, starting, since 0.00380054s) 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: audit 2024-09-06T14:10:06.581658+0000 mon.smithi052 (mon.0) 176 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: audit 2024-09-06T14:10:06.581658+0000 mon.smithi052 (mon.0) 176 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: audit 2024-09-06T14:10:06.582948+0000 mon.smithi052 (mon.0) 177 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi052.grtqlq", "id": "smithi052.grtqlq"} : dispatch 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: audit 2024-09-06T14:10:06.582948+0000 mon.smithi052 (mon.0) 177 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi052.grtqlq", "id": "smithi052.grtqlq"} : dispatch 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: audit 2024-09-06T14:10:06.584556+0000 mon.smithi052 (mon.0) 178 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: audit 2024-09-06T14:10:06.584556+0000 mon.smithi052 (mon.0) 178 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:10:06.717 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: audit 2024-09-06T14:10:06.584703+0000 mon.smithi052 (mon.0) 179 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:10:06.718 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: audit 2024-09-06T14:10:06.584703+0000 mon.smithi052 (mon.0) 179 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:10:06.718 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: audit 2024-09-06T14:10:06.584834+0000 mon.smithi052 (mon.0) 180 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:10:06.718 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: audit 2024-09-06T14:10:06.584834+0000 mon.smithi052 (mon.0) 180 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:10:06.718 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: cluster 2024-09-06T14:10:06.617062+0000 mon.smithi052 (mon.0) 181 : cluster [INF] Manager daemon smithi052.grtqlq is now available 2024-09-06T14:10:06.718 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:06 smithi052 bash[19834]: cluster 2024-09-06T14:10:06.617062+0000 mon.smithi052 (mon.0) 181 : cluster [INF] Manager daemon smithi052.grtqlq is now available 2024-09-06T14:10:06.871 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:10:07.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.050326+0000 mon.smithi052 (mon.0) 182 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:10:07.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.050326+0000 mon.smithi052 (mon.0) 182 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:10:07.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.069836+0000 mon.smithi052 (mon.0) 183 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:07.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.069836+0000 mon.smithi052 (mon.0) 183 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:07.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.072684+0000 mon.smithi052 (mon.0) 184 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:10:07.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.072684+0000 mon.smithi052 (mon.0) 184 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:10:07.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.074082+0000 mon.smithi052 (mon.0) 185 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:07.801 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.074082+0000 mon.smithi052 (mon.0) 185 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:07.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.074858+0000 mon.smithi052 (mon.0) 186 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:07.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.074858+0000 mon.smithi052 (mon.0) 186 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:07.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.084105+0000 mon.smithi052 (mon.0) 187 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:10:07.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.084105+0000 mon.smithi052 (mon.0) 187 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:10:07.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.086654+0000 mon.smithi052 (mon.0) 188 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/trash_purge_schedule"} : dispatch 2024-09-06T14:10:07.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: audit 2024-09-06T14:10:07.086654+0000 mon.smithi052 (mon.0) 188 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/trash_purge_schedule"} : dispatch 2024-09-06T14:10:07.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: cluster 2024-09-06T14:10:07.581218+0000 mon.smithi052 (mon.0) 189 : cluster [DBG] mgrmap e16: smithi052.grtqlq(active, since 1.00843s) 2024-09-06T14:10:07.802 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:07 smithi052 bash[19834]: cluster 2024-09-06T14:10:07.581218+0000 mon.smithi052 (mon.0) 189 : cluster [DBG] mgrmap e16: smithi052.grtqlq(active, since 1.00843s) 2024-09-06T14:10:08.302 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:10:08.302 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:10:08.302 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:10:09.122 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:08 smithi052 bash[19834]: audit 2024-09-06T14:10:07.583980+0000 mgr.smithi052.grtqlq (mgr.14209) 2 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:10:09.123 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:08 smithi052 bash[19834]: audit 2024-09-06T14:10:07.583980+0000 mgr.smithi052.grtqlq (mgr.14209) 2 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:10:09.123 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:08 smithi052 bash[19834]: audit 2024-09-06T14:10:07.932290+0000 mon.smithi052 (mon.0) 190 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:09.123 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:08 smithi052 bash[19834]: audit 2024-09-06T14:10:07.932290+0000 mon.smithi052 (mon.0) 190 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:09.123 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:08 smithi052 bash[19834]: audit 2024-09-06T14:10:08.305774+0000 mon.smithi052 (mon.0) 191 : audit [DBG] from='client.? 172.21.15.148:0/3312027754' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:09.123 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:08 smithi052 bash[19834]: audit 2024-09-06T14:10:08.305774+0000 mon.smithi052 (mon.0) 191 : audit [DBG] from='client.? 172.21.15.148:0/3312027754' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:09.871 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:10:09.871 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:10:10.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cephadm 2024-09-06T14:10:08.469399+0000 mgr.smithi052.grtqlq (mgr.14209) 3 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Bus STARTING 2024-09-06T14:10:10.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cephadm 2024-09-06T14:10:08.469399+0000 mgr.smithi052.grtqlq (mgr.14209) 3 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Bus STARTING 2024-09-06T14:10:10.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cephadm 2024-09-06T14:10:08.571745+0000 mgr.smithi052.grtqlq (mgr.14209) 4 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Serving on http://172.21.15.52:8765 2024-09-06T14:10:10.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cephadm 2024-09-06T14:10:08.571745+0000 mgr.smithi052.grtqlq (mgr.14209) 4 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Serving on http://172.21.15.52:8765 2024-09-06T14:10:10.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cephadm 2024-09-06T14:10:08.699735+0000 mgr.smithi052.grtqlq (mgr.14209) 5 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Serving on https://172.21.15.52:7150 2024-09-06T14:10:10.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cephadm 2024-09-06T14:10:08.699735+0000 mgr.smithi052.grtqlq (mgr.14209) 5 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Serving on https://172.21.15.52:7150 2024-09-06T14:10:10.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cephadm 2024-09-06T14:10:08.699838+0000 mgr.smithi052.grtqlq (mgr.14209) 6 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Bus STARTED 2024-09-06T14:10:10.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cephadm 2024-09-06T14:10:08.699838+0000 mgr.smithi052.grtqlq (mgr.14209) 6 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Bus STARTED 2024-09-06T14:10:10.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cephadm 2024-09-06T14:10:08.701947+0000 mgr.smithi052.grtqlq (mgr.14209) 7 : cephadm [ERR] [06/Sep/2024:14:10:08] ENGINE Error in HTTPServer.serve 2024-09-06T14:10:10.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: Traceback (most recent call last): 2024-09-06T14:10:10.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:10:10.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: self._connections.run(self.expiration_interval) 2024-09-06T14:10:10.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: self._run(expiration_interval) 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: s = self.context.wrap_socket( 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: return self.sslsocket_class._create( 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:10:10.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: self.do_handshake() 2024-09-06T14:10:10.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:10:10.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: self._sslobj.do_handshake() 2024-09-06T14:10:10.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:10:10.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cephadm 2024-09-06T14:10:08.701947+0000 mgr.smithi052.grtqlq (mgr.14209) 7 : cephadm [ERR] [06/Sep/2024:14:10:08] ENGINE Error in HTTPServer.serve 2024-09-06T14:10:10.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: Traceback (most recent call last): 2024-09-06T14:10:10.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:10:10.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: self._connections.run(self.expiration_interval) 2024-09-06T14:10:10.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:10:10.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: self._run(expiration_interval) 2024-09-06T14:10:10.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: s = self.context.wrap_socket( 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: return self.sslsocket_class._create( 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: self.do_handshake() 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:10:10.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: self._sslobj.do_handshake() 2024-09-06T14:10:10.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:10:10.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cluster 2024-09-06T14:10:08.935704+0000 mon.smithi052 (mon.0) 192 : cluster [DBG] mgrmap e17: smithi052.grtqlq(active, since 2s) 2024-09-06T14:10:10.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: cluster 2024-09-06T14:10:08.935704+0000 mon.smithi052 (mon.0) 192 : cluster [DBG] mgrmap e17: smithi052.grtqlq(active, since 2s) 2024-09-06T14:10:10.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: audit 2024-09-06T14:10:09.906144+0000 mon.smithi052 (mon.0) 193 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:10.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:09 smithi052 bash[19834]: audit 2024-09-06T14:10:09.906144+0000 mon.smithi052 (mon.0) 193 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:11.090 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:10:12.124 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:10:12.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:12 smithi052 bash[19834]: audit 2024-09-06T14:10:11.160129+0000 mon.smithi052 (mon.0) 194 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:12.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:12 smithi052 bash[19834]: audit 2024-09-06T14:10:11.160129+0000 mon.smithi052 (mon.0) 194 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:13.917 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:10:13.917 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:10:13.918 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:10:14.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:14 smithi052 bash[19834]: audit 2024-09-06T14:10:13.245423+0000 mon.smithi052 (mon.0) 195 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:14.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:14 smithi052 bash[19834]: audit 2024-09-06T14:10:13.245423+0000 mon.smithi052 (mon.0) 195 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:14.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:14 smithi052 bash[19834]: audit 2024-09-06T14:10:13.248150+0000 mon.smithi052 (mon.0) 196 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:14.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:14 smithi052 bash[19834]: audit 2024-09-06T14:10:13.248150+0000 mon.smithi052 (mon.0) 196 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:14.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:14 smithi052 bash[19834]: audit 2024-09-06T14:10:13.920981+0000 mon.smithi052 (mon.0) 197 : audit [DBG] from='client.? 172.21.15.148:0/3208200318' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:14.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:14 smithi052 bash[19834]: audit 2024-09-06T14:10:13.920981+0000 mon.smithi052 (mon.0) 197 : audit [DBG] from='client.? 172.21.15.148:0/3208200318' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:15.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:15 smithi052 bash[19834]: audit 2024-09-06T14:10:14.374416+0000 mon.smithi052 (mon.0) 198 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:15.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:15 smithi052 bash[19834]: audit 2024-09-06T14:10:14.374416+0000 mon.smithi052 (mon.0) 198 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:15.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:15 smithi052 bash[19834]: audit 2024-09-06T14:10:14.378772+0000 mon.smithi052 (mon.0) 199 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:15.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:15 smithi052 bash[19834]: audit 2024-09-06T14:10:14.378772+0000 mon.smithi052 (mon.0) 199 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:15.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:15 smithi052 bash[19834]: audit 2024-09-06T14:10:14.380636+0000 mon.smithi052 (mon.0) 200 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd/host:smithi052", "name": "osd_memory_target"} : dispatch 2024-09-06T14:10:15.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:15 smithi052 bash[19834]: audit 2024-09-06T14:10:14.380636+0000 mon.smithi052 (mon.0) 200 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd/host:smithi052", "name": "osd_memory_target"} : dispatch 2024-09-06T14:10:15.747 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:10:15.748 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:10:18.256 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:18.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.343054+0000 mon.smithi052 (mon.0) 201 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.343054+0000 mon.smithi052 (mon.0) 201 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.348757+0000 mon.smithi052 (mon.0) 202 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.348757+0000 mon.smithi052 (mon.0) 202 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.356050+0000 mon.smithi052 (mon.0) 203 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.356050+0000 mon.smithi052 (mon.0) 203 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.361648+0000 mon.smithi052 (mon.0) 204 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.361648+0000 mon.smithi052 (mon.0) 204 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.363478+0000 mon.smithi052 (mon.0) 205 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd/host:smithi148", "name": "osd_memory_target"} : dispatch 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.363478+0000 mon.smithi052 (mon.0) 205 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd/host:smithi148", "name": "osd_memory_target"} : dispatch 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.366075+0000 mon.smithi052 (mon.0) 206 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.366075+0000 mon.smithi052 (mon.0) 206 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.367719+0000 mon.smithi052 (mon.0) 207 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:17.367719+0000 mon.smithi052 (mon.0) 207 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.370015+0000 mgr.smithi052.grtqlq (mgr.14209) 8 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.conf 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.370015+0000 mgr.smithi052.grtqlq (mgr.14209) 8 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.conf 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.370474+0000 mgr.smithi052.grtqlq (mgr.14209) 9 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.conf 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.370474+0000 mgr.smithi052.grtqlq (mgr.14209) 9 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.conf 2024-09-06T14:10:18.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.574392+0000 mgr.smithi052.grtqlq (mgr.14209) 10 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:18.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.574392+0000 mgr.smithi052.grtqlq (mgr.14209) 10 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:18.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.574674+0000 mgr.smithi052.grtqlq (mgr.14209) 11 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:18.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.574674+0000 mgr.smithi052.grtqlq (mgr.14209) 11 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:18.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.720150+0000 mgr.smithi052.grtqlq (mgr.14209) 12 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:10:18.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.720150+0000 mgr.smithi052.grtqlq (mgr.14209) 12 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:10:18.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.720444+0000 mgr.smithi052.grtqlq (mgr.14209) 13 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:10:18.692 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.720444+0000 mgr.smithi052.grtqlq (mgr.14209) 13 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.862534+0000 mgr.smithi052.grtqlq (mgr.14209) 14 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.862534+0000 mgr.smithi052.grtqlq (mgr.14209) 14 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.862850+0000 mgr.smithi052.grtqlq (mgr.14209) 15 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:17.862850+0000 mgr.smithi052.grtqlq (mgr.14209) 15 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.004717+0000 mon.smithi052 (mon.0) 208 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.004717+0000 mon.smithi052 (mon.0) 208 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.007920+0000 mon.smithi052 (mon.0) 209 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.007920+0000 mon.smithi052 (mon.0) 209 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.010909+0000 mon.smithi052 (mon.0) 210 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.010909+0000 mon.smithi052 (mon.0) 210 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.014429+0000 mon.smithi052 (mon.0) 211 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.014429+0000 mon.smithi052 (mon.0) 211 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.017914+0000 mon.smithi052 (mon.0) 212 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.017914+0000 mon.smithi052 (mon.0) 212 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:18.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.019817+0000 mon.smithi052 (mon.0) 213 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T14:10:18.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.019817+0000 mon.smithi052 (mon.0) 213 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T14:10:18.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.020985+0000 mon.smithi052 (mon.0) 214 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-06T14:10:18.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.020985+0000 mon.smithi052 (mon.0) 214 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-06T14:10:18.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.024954+0000 mon.smithi052 (mon.0) 215 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:18.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: audit 2024-09-06T14:10:18.024954+0000 mon.smithi052 (mon.0) 215 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:18.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:18.026257+0000 mgr.smithi052.grtqlq (mgr.14209) 16 : cephadm [INF] Deploying daemon ceph-exporter.smithi148 on smithi148 2024-09-06T14:10:18.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:18 smithi052 bash[19834]: cephadm 2024-09-06T14:10:18.026257+0000 mgr.smithi052.grtqlq (mgr.14209) 16 : cephadm [INF] Deploying daemon ceph-exporter.smithi148 on smithi148 2024-09-06T14:10:19.805 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:10:19.805 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:10:19.805 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:10:20.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:19 smithi052 bash[19834]: audit 2024-09-06T14:10:19.808605+0000 mon.smithi052 (mon.0) 216 : audit [DBG] from='client.? 172.21.15.148:0/4067999640' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:20.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:19 smithi052 bash[19834]: audit 2024-09-06T14:10:19.808605+0000 mon.smithi052 (mon.0) 216 : audit [DBG] from='client.? 172.21.15.148:0/4067999640' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:21.598 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:10:21.598 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:10:22.810 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:23.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.813442+0000 mon.smithi052 (mon.0) 217 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:23.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.813442+0000 mon.smithi052 (mon.0) 217 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:23.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.819081+0000 mon.smithi052 (mon.0) 218 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:23.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.819081+0000 mon.smithi052 (mon.0) 218 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:23.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.824880+0000 mon.smithi052 (mon.0) 219 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:23.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.824880+0000 mon.smithi052 (mon.0) 219 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.830426+0000 mon.smithi052 (mon.0) 220 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.830426+0000 mon.smithi052 (mon.0) 220 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.833656+0000 mon.smithi052 (mon.0) 221 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.833656+0000 mon.smithi052 (mon.0) 221 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.835398+0000 mon.smithi052 (mon.0) 222 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.835398+0000 mon.smithi052 (mon.0) 222 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.839968+0000 mon.smithi052 (mon.0) 223 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:21.839968+0000 mon.smithi052 (mon.0) 223 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: cephadm 2024-09-06T14:10:21.841993+0000 mgr.smithi052.grtqlq (mgr.14209) 17 : cephadm [INF] Deploying daemon crash.smithi148 on smithi148 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: cephadm 2024-09-06T14:10:21.841993+0000 mgr.smithi052.grtqlq (mgr.14209) 17 : cephadm [INF] Deploying daemon crash.smithi148 on smithi148 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:22.071196+0000 mon.smithi052 (mon.0) 224 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:22.071196+0000 mon.smithi052 (mon.0) 224 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:23.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:22.073368+0000 mon.smithi052 (mon.0) 225 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:23.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:22 smithi052 bash[19834]: audit 2024-09-06T14:10:22.073368+0000 mon.smithi052 (mon.0) 225 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:24.899 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:10:24.899 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:10:24.899 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:10:25.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:24 smithi052 bash[19834]: audit 2024-09-06T14:10:24.902374+0000 mon.smithi052 (mon.0) 226 : audit [DBG] from='client.? 172.21.15.148:0/580959165' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:25.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:24 smithi052 bash[19834]: audit 2024-09-06T14:10:24.902374+0000 mon.smithi052 (mon.0) 226 : audit [DBG] from='client.? 172.21.15.148:0/580959165' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:26.487 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:10:26.487 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:10:26.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:26 smithi052 bash[19834]: audit 2024-09-06T14:10:25.552868+0000 mon.smithi052 (mon.0) 227 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:26.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:26 smithi052 bash[19834]: audit 2024-09-06T14:10:25.552868+0000 mon.smithi052 (mon.0) 227 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:26.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:26 smithi052 bash[19834]: audit 2024-09-06T14:10:25.558802+0000 mon.smithi052 (mon.0) 228 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:26.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:26 smithi052 bash[19834]: audit 2024-09-06T14:10:25.558802+0000 mon.smithi052 (mon.0) 228 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:26.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:26 smithi052 bash[19834]: audit 2024-09-06T14:10:25.564982+0000 mon.smithi052 (mon.0) 229 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:26.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:26 smithi052 bash[19834]: audit 2024-09-06T14:10:25.564982+0000 mon.smithi052 (mon.0) 229 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:26.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:26 smithi052 bash[19834]: audit 2024-09-06T14:10:25.570585+0000 mon.smithi052 (mon.0) 230 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:26.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:26 smithi052 bash[19834]: audit 2024-09-06T14:10:25.570585+0000 mon.smithi052 (mon.0) 230 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:26.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:26 smithi052 bash[19834]: cephadm 2024-09-06T14:10:25.573657+0000 mgr.smithi052.grtqlq (mgr.14209) 18 : cephadm [INF] Deploying daemon node-exporter.smithi148 on smithi148 2024-09-06T14:10:26.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:26 smithi052 bash[19834]: cephadm 2024-09-06T14:10:25.573657+0000 mgr.smithi052.grtqlq (mgr.14209) 18 : cephadm [INF] Deploying daemon node-exporter.smithi148 on smithi148 2024-09-06T14:10:28.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: cluster 2024-09-06T14:10:26.586365+0000 mgr.smithi052.grtqlq (mgr.14209) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:28.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: cluster 2024-09-06T14:10:26.586365+0000 mgr.smithi052.grtqlq (mgr.14209) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:28.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.754736+0000 mon.smithi052 (mon.0) 231 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:28.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.754736+0000 mon.smithi052 (mon.0) 231 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:28.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.760957+0000 mon.smithi052 (mon.0) 232 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:28.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.760957+0000 mon.smithi052 (mon.0) 232 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:28.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.784768+0000 mon.smithi052 (mon.0) 233 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.784768+0000 mon.smithi052 (mon.0) 233 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.790498+0000 mon.smithi052 (mon.0) 234 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.790498+0000 mon.smithi052 (mon.0) 234 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.794848+0000 mon.smithi052 (mon.0) 235 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.794848+0000 mon.smithi052 (mon.0) 235 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.796770+0000 mon.smithi052 (mon.0) 236 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.796770+0000 mon.smithi052 (mon.0) 236 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.801339+0000 mon.smithi052 (mon.0) 237 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.801339+0000 mon.smithi052 (mon.0) 237 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.803536+0000 mon.smithi052 (mon.0) 238 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:26.803536+0000 mon.smithi052 (mon.0) 238 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: cephadm 2024-09-06T14:10:26.805655+0000 mgr.smithi052.grtqlq (mgr.14209) 20 : cephadm [INF] Deploying daemon mgr.smithi148.bctpwo on smithi148 2024-09-06T14:10:28.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: cephadm 2024-09-06T14:10:26.805655+0000 mgr.smithi052.grtqlq (mgr.14209) 20 : cephadm [INF] Deploying daemon mgr.smithi148.bctpwo on smithi148 2024-09-06T14:10:28.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:27.078046+0000 mon.smithi052 (mon.0) 239 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:28.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:27 smithi052 bash[19834]: audit 2024-09-06T14:10:27.078046+0000 mon.smithi052 (mon.0) 239 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:30.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:29 smithi052 bash[19834]: cluster 2024-09-06T14:10:28.586799+0000 mgr.smithi052.grtqlq (mgr.14209) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:30.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:29 smithi052 bash[19834]: cluster 2024-09-06T14:10:28.586799+0000 mgr.smithi052.grtqlq (mgr.14209) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:30.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:30 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:10:31.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.113501+0000 mon.smithi052 (mon.0) 240 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.113501+0000 mon.smithi052 (mon.0) 240 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.119532+0000 mon.smithi052 (mon.0) 241 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.119532+0000 mon.smithi052 (mon.0) 241 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.125459+0000 mon.smithi052 (mon.0) 242 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.125459+0000 mon.smithi052 (mon.0) 242 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.131083+0000 mon.smithi052 (mon.0) 243 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.131083+0000 mon.smithi052 (mon.0) 243 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.134429+0000 mon.smithi052 (mon.0) 244 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.134429+0000 mon.smithi052 (mon.0) 244 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.136152+0000 mon.smithi052 (mon.0) 245 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:31.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: audit 2024-09-06T14:10:30.136152+0000 mon.smithi052 (mon.0) 245 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:31.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: cephadm 2024-09-06T14:10:30.138083+0000 mgr.smithi052.grtqlq (mgr.14209) 22 : cephadm [INF] Deploying daemon mon.smithi148 on smithi148 2024-09-06T14:10:31.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:31 smithi052 bash[19834]: cephadm 2024-09-06T14:10:30.138083+0000 mgr.smithi052.grtqlq (mgr.14209) 22 : cephadm [INF] Deploying daemon mon.smithi148 on smithi148 2024-09-06T14:10:32.429 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:32.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:32 smithi052 bash[19834]: cluster 2024-09-06T14:10:30.587264+0000 mgr.smithi052.grtqlq (mgr.14209) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:32.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:32 smithi052 bash[19834]: cluster 2024-09-06T14:10:30.587264+0000 mgr.smithi052.grtqlq (mgr.14209) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:32.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:32 smithi052 bash[19834]: audit 2024-09-06T14:10:32.084728+0000 mon.smithi052 (mon.0) 246 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:32.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:32 smithi052 bash[19834]: audit 2024-09-06T14:10:32.084728+0000 mon.smithi052 (mon.0) 246 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:34.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:34 smithi052 bash[19834]: cluster 2024-09-06T14:10:32.587745+0000 mgr.smithi052.grtqlq (mgr.14209) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:34.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:34 smithi052 bash[19834]: cluster 2024-09-06T14:10:32.587745+0000 mgr.smithi052.grtqlq (mgr.14209) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:35.483 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 1 2024-09-06T14:10:35.483 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:10:35.484 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":1,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:06:55.627106Z","created":"2024-09-06T14:06:55.627106Z","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":"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]} 2024-09-06T14:10:36.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:36 smithi052 bash[19834]: cluster 2024-09-06T14:10:34.588212+0000 mgr.smithi052.grtqlq (mgr.14209) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:36.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:36 smithi052 bash[19834]: cluster 2024-09-06T14:10:34.588212+0000 mgr.smithi052.grtqlq (mgr.14209) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:36.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:36 smithi052 bash[19834]: audit 2024-09-06T14:10:35.486733+0000 mon.smithi052 (mon.0) 247 : audit [DBG] from='client.? 172.21.15.148:0/357280180' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:36.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:36 smithi052 bash[19834]: audit 2024-09-06T14:10:35.486733+0000 mon.smithi052 (mon.0) 247 : audit [DBG] from='client.? 172.21.15.148:0/357280180' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:37.296 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:37 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:10:37.296 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:37 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:10:37.296 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:37 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:10:37.296 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:37 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:10:37.342 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:10:37.343 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:10:37.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:37 smithi052 bash[19834]: audit 2024-09-06T14:10:37.073858+0000 mon.smithi052 (mon.0) 248 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:37.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:37 smithi052 bash[19834]: audit 2024-09-06T14:10:37.073858+0000 mon.smithi052 (mon.0) 248 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:37.594 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:37 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:10:37.594 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:37 smithi148 systemd[1]: Started Ceph mon.smithi148 for 11d261e0-6c59-11ef-bce4-c7b262605968. 2024-09-06T14:10:38.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: cluster 2024-09-06T14:10:36.588681+0000 mgr.smithi052.grtqlq (mgr.14209) 26 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: cluster 2024-09-06T14:10:36.588681+0000 mgr.smithi052.grtqlq (mgr.14209) 26 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.472763+0000 mon.smithi052 (mon.0) 249 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.472763+0000 mon.smithi052 (mon.0) 249 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.479003+0000 mon.smithi052 (mon.0) 250 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.479003+0000 mon.smithi052 (mon.0) 250 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.485145+0000 mon.smithi052 (mon.0) 251 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.485145+0000 mon.smithi052 (mon.0) 251 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.491354+0000 mon.smithi052 (mon.0) 252 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.491354+0000 mon.smithi052 (mon.0) 252 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.500758+0000 mon.smithi052 (mon.0) 253 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.500758+0000 mon.smithi052 (mon.0) 253 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.556756+0000 mon.smithi052 (mon.0) 254 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:10:38.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:38 smithi052 bash[19834]: audit 2024-09-06T14:10:37.556756+0000 mon.smithi052 (mon.0) 254 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:10:38.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.642+0000 7fc562ae4c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.642+0000 7fc562ae4c80 0 ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev), process ceph-mon, pid 7 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.642+0000 7fc562ae4c80 0 pidfile_write: ignore empty --pid-file 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.642+0000 7fc562ae4c80 0 load: jerasure load: lrc 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Git sha 0 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Compile date 2024-09-04 13:52:53 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: DB SUMMARY 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: DB Session ID: 55YNSNE9PWCK4OO1TR1E 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: CURRENT file: CURRENT 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-06T14:10:38.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi148/store.db dir, Total Num: 0, files: 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi148/store.db: 000004.log size: 511 ; 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.error_if_exists: 0 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.create_if_missing: 0 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.env: 0x560e8e78a160 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.info_log: 0x560e9089fa60 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-06T14:10:38.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.statistics: (nil) 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.use_fsync: 0 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.db_log_dir: 2024-09-06T14:10:38.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.wal_dir: 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.write_buffer_manager: 0x560e908a2e60 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-06T14:10:38.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-06T14:10:38.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-06T14:10:38.944 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-06T14:10:38.944 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-06T14:10:38.944 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.unordered_write: 0 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.row_cache: None 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.wal_filter: None 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.two_write_queues: 0 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.wal_compression: 0 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.atomic_flush: 0 2024-09-06T14:10:38.945 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-06T14:10:38.946 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_open_files: -1 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-06T14:10:38.947 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Compression algorithms supported: 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: kZSTD supported: 0 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: kXpressCompression supported: 0 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: kZlibCompression supported: 1 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi148/store.db/MANIFEST-000005 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-06T14:10:38.948 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.merge_operator: 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_filter: None 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x560e9089f6e0) 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cache_index_and_filter_blocks: 1 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: pin_top_level_index_and_filter: 1 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: index_type: 0 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: data_block_index_type: 0 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: index_shortening: 1 2024-09-06T14:10:38.949 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: data_block_hash_table_util_ratio: 0.750000 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: checksum: 4 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: no_block_cache: 0 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: block_cache: 0x560e90894850 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: block_cache_name: BinnedLRUCache 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: block_cache_options: 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: capacity : 536870912 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: num_shard_bits : 4 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: strict_capacity_limit : 0 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: high_pri_pool_ratio: 0.000 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: block_cache_compressed: (nil) 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: persistent_cache: (nil) 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: block_size: 4096 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: block_size_deviation: 10 2024-09-06T14:10:38.950 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: block_restart_interval: 16 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: index_block_restart_interval: 1 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: metadata_block_size: 4096 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: partition_filters: 0 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: use_delta_encoding: 1 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: filter_policy: bloomfilter 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: whole_key_filtering: 1 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: verify_compression: 0 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: read_amp_bytes_per_bit: 0 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: format_version: 5 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: enable_index_compression: 1 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: block_align: 0 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: max_auto_readahead_size: 262144 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: prepopulate_block_cache: 0 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: initial_auto_readahead_size: 8192 2024-09-06T14:10:38.951 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: num_file_reads_for_auto_readahead: 2 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compression: NoCompression 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.num_levels: 7 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-06T14:10:38.952 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-06T14:10:38.953 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-06T14:10:38.954 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-06T14:10:38.955 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.bloom_locality: 0 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-06T14:10:38.956 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.ttl: 2592000 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.enable_blob_files: false 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.min_blob_size: 0 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-06T14:10:38.957 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi148/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-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: f61e4e22-d62f-45ff-8bd6-f0c77fab318a 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725631838650675, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725631838651050, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1725631838, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "f61e4e22-d62f-45ff-8bd6-f0c77fab318a", "db_session_id": "55YNSNE9PWCK4OO1TR1E", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725631838651138, "job": 1, "event": "recovery_finished"} 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi148/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x560e908c2e00 2024-09-06T14:10:38.958 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 4 rocksdb: DB pointer 0x560e909c6000 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc5588ac640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc5588ac640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: ** DB Stats ** 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: ** Compaction Stats [default] ** 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: 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-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-06T14:10:38.959 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: 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.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: ** Compaction Stats [default] ** 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: 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-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: 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.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: AddFile(Total Files): cumulative 0, interval 0 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: AddFile(Keys): cumulative 0, interval 0 2024-09-06T14:10:38.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Cumulative compaction: 0.00 GB write, 0.55 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Interval compaction: 0.00 GB write, 0.55 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: 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-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Block cache BinnedLRUCache@0x560e90894850#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.2e-05 secs_since: 0 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: ** File Read Latency Histogram By Level [default] ** 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 0 mon.smithi148 does not exist in monmap, will attempt to join an existing cluster 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 0 using public_addr v2:172.21.15.148:0/0 -> [v2:172.21.15.148:3300/0,v1:172.21.15.148:6789/0] 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.646+0000 7fc562ae4c80 0 starting mon.smithi148 rank -1 at public addrs [v2:172.21.15.148:3300/0,v1:172.21.15.148:6789/0] at bind addrs [v2:172.21.15.148:3300/0,v1:172.21.15.148:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi148 fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.650+0000 7fc562ae4c80 1 mon.smithi148@-1(???) e0 preinit fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.678+0000 7fc55b8b2640 0 mon.smithi148@-1(synchronizing).mds e1 new map 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.678+0000 7fc55b8b2640 0 mon.smithi148@-1(synchronizing).mds e1 print_map 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: e1 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: btime 2024-09-06T14:07:00:183271+0000 2024-09-06T14:10:38.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: 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-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: legacy client fscid: -1 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: No filesystems configured 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.678+0000 7fc55b8b2640 1 mon.smithi148@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.678+0000 7fc55b8b2640 1 mon.smithi148@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.678+0000 7fc55b8b2640 1 mon.smithi148@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.678+0000 7fc55b8b2640 1 mon.smithi148@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.678+0000 7fc55b8b2640 1 mon.smithi148@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.678+0000 7fc55b8b2640 1 mon.smithi148@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.682+0000 7fc55b8b2640 1 mon.smithi148@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.682+0000 7fc55b8b2640 0 mon.smithi148@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.682+0000 7fc55b8b2640 0 mon.smithi148@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.682+0000 7fc55b8b2640 0 mon.smithi148@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T14:10:38.962 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.682+0000 7fc55b8b2640 0 mon.smithi148@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:43.786493+0000 mgr.smithi052.grtqlq (mgr.14158) 63 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:43.786493+0000 mgr.smithi052.grtqlq (mgr.14158) 63 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:44.276022+0000 mon.smithi052 (mon.0) 160 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:44.276022+0000 mon.smithi052 (mon.0) 160 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:45.786981+0000 mgr.smithi052.grtqlq (mgr.14158) 64 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:45.786981+0000 mgr.smithi052.grtqlq (mgr.14158) 64 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:47.535800+0000 mon.smithi052 (mon.0) 161 : audit [DBG] from='client.? 172.21.15.148:0/1596515060' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:47.535800+0000 mon.smithi052 (mon.0) 161 : audit [DBG] from='client.? 172.21.15.148:0/1596515060' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:47.787481+0000 mgr.smithi052.grtqlq (mgr.14158) 65 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:47.787481+0000 mgr.smithi052.grtqlq (mgr.14158) 65 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:49.787845+0000 mgr.smithi052.grtqlq (mgr.14158) 66 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:49.787845+0000 mgr.smithi052.grtqlq (mgr.14158) 66 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:51.788352+0000 mgr.smithi052.grtqlq (mgr.14158) 67 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.963 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:51.788352+0000 mgr.smithi052.grtqlq (mgr.14158) 67 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:52.660368+0000 mon.smithi052 (mon.0) 162 : audit [DBG] from='client.? 172.21.15.148:0/1317722253' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:52.660368+0000 mon.smithi052 (mon.0) 162 : audit [DBG] from='client.? 172.21.15.148:0/1317722253' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:53.788847+0000 mgr.smithi052.grtqlq (mgr.14158) 68 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:53.788847+0000 mgr.smithi052.grtqlq (mgr.14158) 68 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:55.789298+0000 mgr.smithi052.grtqlq (mgr.14158) 69 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:55.789298+0000 mgr.smithi052.grtqlq (mgr.14158) 69 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:57.814017+0000 mon.smithi052 (mon.0) 163 : audit [DBG] from='client.? 172.21.15.148:0/1961673705' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:57.814017+0000 mon.smithi052 (mon.0) 163 : audit [DBG] from='client.? 172.21.15.148:0/1961673705' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:57.789639+0000 mgr.smithi052.grtqlq (mgr.14158) 70 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:09:57.789639+0000 mgr.smithi052.grtqlq (mgr.14158) 70 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:59.225640+0000 mon.smithi052 (mon.0) 164 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:59.225640+0000 mon.smithi052 (mon.0) 164 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.964 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:59.228430+0000 mon.smithi052 (mon.0) 165 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:59.228430+0000 mon.smithi052 (mon.0) 165 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:59.230991+0000 mon.smithi052 (mon.0) 166 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:59.230991+0000 mon.smithi052 (mon.0) 166 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:59.232904+0000 mon.smithi052 (mon.0) 167 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:59.232904+0000 mon.smithi052 (mon.0) 167 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:59.280463+0000 mon.smithi052 (mon.0) 168 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:09:59.280463+0000 mon.smithi052 (mon.0) 168 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:00.231763+0000 mon.smithi052 (mon.0) 169 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:00.231763+0000 mon.smithi052 (mon.0) 169 : audit [INF] from='mgr.14158 172.21.15.52:0/854280363' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:00.237251+0000 mon.smithi052 (mon.0) 170 : cluster [DBG] mgrmap e14: smithi052.grtqlq(active, since 106s) 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:00.237251+0000 mon.smithi052 (mon.0) 170 : cluster [DBG] mgrmap e14: smithi052.grtqlq(active, since 106s) 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:03.064928+0000 mon.smithi052 (mon.0) 171 : audit [DBG] from='client.? 172.21.15.148:0/1271374658' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:03.064928+0000 mon.smithi052 (mon.0) 171 : audit [DBG] from='client.? 172.21.15.148:0/1271374658' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.965 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:06.572432+0000 mon.smithi052 (mon.0) 172 : cluster [INF] Active manager daemon smithi052.grtqlq restarted 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:06.572432+0000 mon.smithi052 (mon.0) 172 : cluster [INF] Active manager daemon smithi052.grtqlq restarted 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:06.572995+0000 mon.smithi052 (mon.0) 173 : cluster [INF] Activating manager daemon smithi052.grtqlq 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:06.572995+0000 mon.smithi052 (mon.0) 173 : cluster [INF] Activating manager daemon smithi052.grtqlq 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:06.576466+0000 mon.smithi052 (mon.0) 174 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:06.576466+0000 mon.smithi052 (mon.0) 174 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:06.576586+0000 mon.smithi052 (mon.0) 175 : cluster [DBG] mgrmap e15: smithi052.grtqlq(active, starting, since 0.00380054s) 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:06.576586+0000 mon.smithi052 (mon.0) 175 : cluster [DBG] mgrmap e15: smithi052.grtqlq(active, starting, since 0.00380054s) 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:06.581658+0000 mon.smithi052 (mon.0) 176 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:06.581658+0000 mon.smithi052 (mon.0) 176 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:06.582948+0000 mon.smithi052 (mon.0) 177 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi052.grtqlq", "id": "smithi052.grtqlq"} : dispatch 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:06.582948+0000 mon.smithi052 (mon.0) 177 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi052.grtqlq", "id": "smithi052.grtqlq"} : dispatch 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:06.584556+0000 mon.smithi052 (mon.0) 178 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:06.584556+0000 mon.smithi052 (mon.0) 178 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:06.584703+0000 mon.smithi052 (mon.0) 179 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:10:38.966 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:06.584703+0000 mon.smithi052 (mon.0) 179 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:06.584834+0000 mon.smithi052 (mon.0) 180 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:06.584834+0000 mon.smithi052 (mon.0) 180 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:06.617062+0000 mon.smithi052 (mon.0) 181 : cluster [INF] Manager daemon smithi052.grtqlq is now available 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:06.617062+0000 mon.smithi052 (mon.0) 181 : cluster [INF] Manager daemon smithi052.grtqlq is now available 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.050326+0000 mon.smithi052 (mon.0) 182 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.050326+0000 mon.smithi052 (mon.0) 182 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.069836+0000 mon.smithi052 (mon.0) 183 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.069836+0000 mon.smithi052 (mon.0) 183 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.072684+0000 mon.smithi052 (mon.0) 184 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.072684+0000 mon.smithi052 (mon.0) 184 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.074082+0000 mon.smithi052 (mon.0) 185 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.074082+0000 mon.smithi052 (mon.0) 185 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.967 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.074858+0000 mon.smithi052 (mon.0) 186 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.074858+0000 mon.smithi052 (mon.0) 186 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.084105+0000 mon.smithi052 (mon.0) 187 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.084105+0000 mon.smithi052 (mon.0) 187 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.086654+0000 mon.smithi052 (mon.0) 188 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/trash_purge_schedule"} : dispatch 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.086654+0000 mon.smithi052 (mon.0) 188 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi052.grtqlq/trash_purge_schedule"} : dispatch 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:07.581218+0000 mon.smithi052 (mon.0) 189 : cluster [DBG] mgrmap e16: smithi052.grtqlq(active, since 1.00843s) 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:07.581218+0000 mon.smithi052 (mon.0) 189 : cluster [DBG] mgrmap e16: smithi052.grtqlq(active, since 1.00843s) 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.583980+0000 mgr.smithi052.grtqlq (mgr.14209) 2 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.583980+0000 mgr.smithi052.grtqlq (mgr.14209) 2 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.932290+0000 mon.smithi052 (mon.0) 190 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:07.932290+0000 mon.smithi052 (mon.0) 190 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:08.305774+0000 mon.smithi052 (mon.0) 191 : audit [DBG] from='client.? 172.21.15.148:0/3312027754' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:08.305774+0000 mon.smithi052 (mon.0) 191 : audit [DBG] from='client.? 172.21.15.148:0/3312027754' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.968 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:08.469399+0000 mgr.smithi052.grtqlq (mgr.14209) 3 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Bus STARTING 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:08.469399+0000 mgr.smithi052.grtqlq (mgr.14209) 3 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Bus STARTING 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:08.571745+0000 mgr.smithi052.grtqlq (mgr.14209) 4 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Serving on http://172.21.15.52:8765 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:08.571745+0000 mgr.smithi052.grtqlq (mgr.14209) 4 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Serving on http://172.21.15.52:8765 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:08.699735+0000 mgr.smithi052.grtqlq (mgr.14209) 5 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Serving on https://172.21.15.52:7150 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:08.699735+0000 mgr.smithi052.grtqlq (mgr.14209) 5 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Serving on https://172.21.15.52:7150 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:08.699838+0000 mgr.smithi052.grtqlq (mgr.14209) 6 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Bus STARTED 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:08.699838+0000 mgr.smithi052.grtqlq (mgr.14209) 6 : cephadm [INF] [06/Sep/2024:14:10:08] ENGINE Bus STARTED 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:08.701947+0000 mgr.smithi052.grtqlq (mgr.14209) 7 : cephadm [ERR] [06/Sep/2024:14:10:08] ENGINE Error in HTTPServer.serve 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Traceback (most recent call last): 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: self._connections.run(self.expiration_interval) 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: self._run(expiration_interval) 2024-09-06T14:10:38.969 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: s = self.context.wrap_socket( 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: return self.sslsocket_class._create( 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: self.do_handshake() 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: self._sslobj.do_handshake() 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:08.701947+0000 mgr.smithi052.grtqlq (mgr.14209) 7 : cephadm [ERR] [06/Sep/2024:14:10:08] ENGINE Error in HTTPServer.serve 2024-09-06T14:10:38.970 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: Traceback (most recent call last): 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: self._connections.run(self.expiration_interval) 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: self._run(expiration_interval) 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: s = self.context.wrap_socket( 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: return self.sslsocket_class._create( 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: self.do_handshake() 2024-09-06T14:10:38.971 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: self._sslobj.do_handshake() 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:08.935704+0000 mon.smithi052 (mon.0) 192 : cluster [DBG] mgrmap e17: smithi052.grtqlq(active, since 2s) 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:08.935704+0000 mon.smithi052 (mon.0) 192 : cluster [DBG] mgrmap e17: smithi052.grtqlq(active, since 2s) 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:09.906144+0000 mon.smithi052 (mon.0) 193 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:09.906144+0000 mon.smithi052 (mon.0) 193 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:11.160129+0000 mon.smithi052 (mon.0) 194 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:11.160129+0000 mon.smithi052 (mon.0) 194 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:13.245423+0000 mon.smithi052 (mon.0) 195 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:13.245423+0000 mon.smithi052 (mon.0) 195 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:13.248150+0000 mon.smithi052 (mon.0) 196 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:13.248150+0000 mon.smithi052 (mon.0) 196 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.972 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:13.920981+0000 mon.smithi052 (mon.0) 197 : audit [DBG] from='client.? 172.21.15.148:0/3208200318' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:13.920981+0000 mon.smithi052 (mon.0) 197 : audit [DBG] from='client.? 172.21.15.148:0/3208200318' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:14.374416+0000 mon.smithi052 (mon.0) 198 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:14.374416+0000 mon.smithi052 (mon.0) 198 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:14.378772+0000 mon.smithi052 (mon.0) 199 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:14.378772+0000 mon.smithi052 (mon.0) 199 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:14.380636+0000 mon.smithi052 (mon.0) 200 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd/host:smithi052", "name": "osd_memory_target"} : dispatch 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:14.380636+0000 mon.smithi052 (mon.0) 200 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd/host:smithi052", "name": "osd_memory_target"} : dispatch 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.343054+0000 mon.smithi052 (mon.0) 201 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.343054+0000 mon.smithi052 (mon.0) 201 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.348757+0000 mon.smithi052 (mon.0) 202 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.348757+0000 mon.smithi052 (mon.0) 202 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.356050+0000 mon.smithi052 (mon.0) 203 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.356050+0000 mon.smithi052 (mon.0) 203 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.973 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.361648+0000 mon.smithi052 (mon.0) 204 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.361648+0000 mon.smithi052 (mon.0) 204 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.363478+0000 mon.smithi052 (mon.0) 205 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd/host:smithi148", "name": "osd_memory_target"} : dispatch 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.363478+0000 mon.smithi052 (mon.0) 205 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd/host:smithi148", "name": "osd_memory_target"} : dispatch 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.366075+0000 mon.smithi052 (mon.0) 206 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.366075+0000 mon.smithi052 (mon.0) 206 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.367719+0000 mon.smithi052 (mon.0) 207 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:17.367719+0000 mon.smithi052 (mon.0) 207 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.370015+0000 mgr.smithi052.grtqlq (mgr.14209) 8 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.conf 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.370015+0000 mgr.smithi052.grtqlq (mgr.14209) 8 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.conf 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.370474+0000 mgr.smithi052.grtqlq (mgr.14209) 9 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.conf 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.370474+0000 mgr.smithi052.grtqlq (mgr.14209) 9 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.conf 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.574392+0000 mgr.smithi052.grtqlq (mgr.14209) 10 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.574392+0000 mgr.smithi052.grtqlq (mgr.14209) 10 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:38.974 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.574674+0000 mgr.smithi052.grtqlq (mgr.14209) 11 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.574674+0000 mgr.smithi052.grtqlq (mgr.14209) 11 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.720150+0000 mgr.smithi052.grtqlq (mgr.14209) 12 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.720150+0000 mgr.smithi052.grtqlq (mgr.14209) 12 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.720444+0000 mgr.smithi052.grtqlq (mgr.14209) 13 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.720444+0000 mgr.smithi052.grtqlq (mgr.14209) 13 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.862534+0000 mgr.smithi052.grtqlq (mgr.14209) 14 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.862534+0000 mgr.smithi052.grtqlq (mgr.14209) 14 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.862850+0000 mgr.smithi052.grtqlq (mgr.14209) 15 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:17.862850+0000 mgr.smithi052.grtqlq (mgr.14209) 15 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.004717+0000 mon.smithi052 (mon.0) 208 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.004717+0000 mon.smithi052 (mon.0) 208 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.007920+0000 mon.smithi052 (mon.0) 209 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.975 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.007920+0000 mon.smithi052 (mon.0) 209 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.010909+0000 mon.smithi052 (mon.0) 210 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.010909+0000 mon.smithi052 (mon.0) 210 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.014429+0000 mon.smithi052 (mon.0) 211 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.014429+0000 mon.smithi052 (mon.0) 211 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.017914+0000 mon.smithi052 (mon.0) 212 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.017914+0000 mon.smithi052 (mon.0) 212 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.019817+0000 mon.smithi052 (mon.0) 213 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.019817+0000 mon.smithi052 (mon.0) 213 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.020985+0000 mon.smithi052 (mon.0) 214 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.020985+0000 mon.smithi052 (mon.0) 214 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.024954+0000 mon.smithi052 (mon.0) 215 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:18.024954+0000 mon.smithi052 (mon.0) 215 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:38.976 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:18.026257+0000 mgr.smithi052.grtqlq (mgr.14209) 16 : cephadm [INF] Deploying daemon ceph-exporter.smithi148 on smithi148 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:18.026257+0000 mgr.smithi052.grtqlq (mgr.14209) 16 : cephadm [INF] Deploying daemon ceph-exporter.smithi148 on smithi148 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:19.808605+0000 mon.smithi052 (mon.0) 216 : audit [DBG] from='client.? 172.21.15.148:0/4067999640' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:19.808605+0000 mon.smithi052 (mon.0) 216 : audit [DBG] from='client.? 172.21.15.148:0/4067999640' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.813442+0000 mon.smithi052 (mon.0) 217 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.813442+0000 mon.smithi052 (mon.0) 217 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.819081+0000 mon.smithi052 (mon.0) 218 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.819081+0000 mon.smithi052 (mon.0) 218 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.824880+0000 mon.smithi052 (mon.0) 219 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.824880+0000 mon.smithi052 (mon.0) 219 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.830426+0000 mon.smithi052 (mon.0) 220 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.830426+0000 mon.smithi052 (mon.0) 220 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.833656+0000 mon.smithi052 (mon.0) 221 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.833656+0000 mon.smithi052 (mon.0) 221 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:10:38.977 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.835398+0000 mon.smithi052 (mon.0) 222 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.835398+0000 mon.smithi052 (mon.0) 222 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.839968+0000 mon.smithi052 (mon.0) 223 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:21.839968+0000 mon.smithi052 (mon.0) 223 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:21.841993+0000 mgr.smithi052.grtqlq (mgr.14209) 17 : cephadm [INF] Deploying daemon crash.smithi148 on smithi148 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:21.841993+0000 mgr.smithi052.grtqlq (mgr.14209) 17 : cephadm [INF] Deploying daemon crash.smithi148 on smithi148 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:22.071196+0000 mon.smithi052 (mon.0) 224 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:22.071196+0000 mon.smithi052 (mon.0) 224 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:22.073368+0000 mon.smithi052 (mon.0) 225 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:22.073368+0000 mon.smithi052 (mon.0) 225 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:24.902374+0000 mon.smithi052 (mon.0) 226 : audit [DBG] from='client.? 172.21.15.148:0/580959165' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:24.902374+0000 mon.smithi052 (mon.0) 226 : audit [DBG] from='client.? 172.21.15.148:0/580959165' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:25.552868+0000 mon.smithi052 (mon.0) 227 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:25.552868+0000 mon.smithi052 (mon.0) 227 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.978 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:25.558802+0000 mon.smithi052 (mon.0) 228 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:25.558802+0000 mon.smithi052 (mon.0) 228 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:25.564982+0000 mon.smithi052 (mon.0) 229 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:25.564982+0000 mon.smithi052 (mon.0) 229 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:25.570585+0000 mon.smithi052 (mon.0) 230 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:25.570585+0000 mon.smithi052 (mon.0) 230 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:25.573657+0000 mgr.smithi052.grtqlq (mgr.14209) 18 : cephadm [INF] Deploying daemon node-exporter.smithi148 on smithi148 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:25.573657+0000 mgr.smithi052.grtqlq (mgr.14209) 18 : cephadm [INF] Deploying daemon node-exporter.smithi148 on smithi148 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:26.586365+0000 mgr.smithi052.grtqlq (mgr.14209) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:26.586365+0000 mgr.smithi052.grtqlq (mgr.14209) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.754736+0000 mon.smithi052 (mon.0) 231 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.754736+0000 mon.smithi052 (mon.0) 231 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.760957+0000 mon.smithi052 (mon.0) 232 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.760957+0000 mon.smithi052 (mon.0) 232 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.979 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.784768+0000 mon.smithi052 (mon.0) 233 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.784768+0000 mon.smithi052 (mon.0) 233 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.790498+0000 mon.smithi052 (mon.0) 234 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.790498+0000 mon.smithi052 (mon.0) 234 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.794848+0000 mon.smithi052 (mon.0) 235 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.794848+0000 mon.smithi052 (mon.0) 235 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.796770+0000 mon.smithi052 (mon.0) 236 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.796770+0000 mon.smithi052 (mon.0) 236 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.801339+0000 mon.smithi052 (mon.0) 237 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.801339+0000 mon.smithi052 (mon.0) 237 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.803536+0000 mon.smithi052 (mon.0) 238 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:26.803536+0000 mon.smithi052 (mon.0) 238 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:26.805655+0000 mgr.smithi052.grtqlq (mgr.14209) 20 : cephadm [INF] Deploying daemon mgr.smithi148.bctpwo on smithi148 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:26.805655+0000 mgr.smithi052.grtqlq (mgr.14209) 20 : cephadm [INF] Deploying daemon mgr.smithi148.bctpwo on smithi148 2024-09-06T14:10:38.980 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:27.078046+0000 mon.smithi052 (mon.0) 239 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:27.078046+0000 mon.smithi052 (mon.0) 239 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:28.586799+0000 mgr.smithi052.grtqlq (mgr.14209) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:28.586799+0000 mgr.smithi052.grtqlq (mgr.14209) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.113501+0000 mon.smithi052 (mon.0) 240 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.113501+0000 mon.smithi052 (mon.0) 240 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.119532+0000 mon.smithi052 (mon.0) 241 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.119532+0000 mon.smithi052 (mon.0) 241 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.125459+0000 mon.smithi052 (mon.0) 242 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.125459+0000 mon.smithi052 (mon.0) 242 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.131083+0000 mon.smithi052 (mon.0) 243 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.131083+0000 mon.smithi052 (mon.0) 243 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.134429+0000 mon.smithi052 (mon.0) 244 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:10:38.981 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.134429+0000 mon.smithi052 (mon.0) 244 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.136152+0000 mon.smithi052 (mon.0) 245 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:30.136152+0000 mon.smithi052 (mon.0) 245 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:30.138083+0000 mgr.smithi052.grtqlq (mgr.14209) 22 : cephadm [INF] Deploying daemon mon.smithi148 on smithi148 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cephadm 2024-09-06T14:10:30.138083+0000 mgr.smithi052.grtqlq (mgr.14209) 22 : cephadm [INF] Deploying daemon mon.smithi148 on smithi148 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:30.587264+0000 mgr.smithi052.grtqlq (mgr.14209) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:30.587264+0000 mgr.smithi052.grtqlq (mgr.14209) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:32.084728+0000 mon.smithi052 (mon.0) 246 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:32.084728+0000 mon.smithi052 (mon.0) 246 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:32.587745+0000 mgr.smithi052.grtqlq (mgr.14209) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:32.587745+0000 mgr.smithi052.grtqlq (mgr.14209) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:34.588212+0000 mgr.smithi052.grtqlq (mgr.14209) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:34.588212+0000 mgr.smithi052.grtqlq (mgr.14209) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:35.486733+0000 mon.smithi052 (mon.0) 247 : audit [DBG] from='client.? 172.21.15.148:0/357280180' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.982 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:35.486733+0000 mon.smithi052 (mon.0) 247 : audit [DBG] from='client.? 172.21.15.148:0/357280180' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.073858+0000 mon.smithi052 (mon.0) 248 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.073858+0000 mon.smithi052 (mon.0) 248 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:36.588681+0000 mgr.smithi052.grtqlq (mgr.14209) 26 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: cluster 2024-09-06T14:10:36.588681+0000 mgr.smithi052.grtqlq (mgr.14209) 26 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.472763+0000 mon.smithi052 (mon.0) 249 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.472763+0000 mon.smithi052 (mon.0) 249 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.479003+0000 mon.smithi052 (mon.0) 250 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.479003+0000 mon.smithi052 (mon.0) 250 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.485145+0000 mon.smithi052 (mon.0) 251 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.485145+0000 mon.smithi052 (mon.0) 251 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.491354+0000 mon.smithi052 (mon.0) 252 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.491354+0000 mon.smithi052 (mon.0) 252 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.500758+0000 mon.smithi052 (mon.0) 253 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.500758+0000 mon.smithi052 (mon.0) 253 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:38.983 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.556756+0000 mon.smithi052 (mon.0) 254 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:10:38.984 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: audit 2024-09-06T14:10:37.556756+0000 mon.smithi052 (mon.0) 254 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:10:38.984 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:38 smithi148 bash[25697]: debug 2024-09-06T14:10:38.686+0000 7fc55b8b2640 1 mon.smithi148@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-09-06T14:10:43.114 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi148/config 2024-09-06T14:10:43.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:38.589214+0000 mgr.smithi052.grtqlq (mgr.14209) 27 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:43.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:38.589214+0000 mgr.smithi052.grtqlq (mgr.14209) 27 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:43.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:38.592295+0000 mgr.smithi148.bctpwo (mgr.14226) 1 : cluster [ERR] Failed to load ceph-mgr modules: volumes 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:38.592295+0000 mgr.smithi148.bctpwo (mgr.14226) 1 : cluster [ERR] Failed to load ceph-mgr modules: volumes 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:38.695102+0000 mon.smithi052 (mon.0) 260 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:38.695102+0000 mon.smithi052 (mon.0) 260 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:38.700333+0000 mon.smithi052 (mon.0) 261 : cluster [INF] mon.smithi052 calling monitor election 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:38.700333+0000 mon.smithi052 (mon.0) 261 : cluster [INF] mon.smithi052 calling monitor election 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:38.719574+0000 mon.smithi052 (mon.0) 262 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:38.719574+0000 mon.smithi052 (mon.0) 262 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:38.719912+0000 mon.smithi052 (mon.0) 263 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:38.719912+0000 mon.smithi052 (mon.0) 263 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:39.694809+0000 mon.smithi052 (mon.0) 264 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:39.694809+0000 mon.smithi052 (mon.0) 264 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:40.589754+0000 mgr.smithi052.grtqlq (mgr.14209) 28 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:43.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:40.589754+0000 mgr.smithi052.grtqlq (mgr.14209) 28 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:43.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:40.694956+0000 mon.smithi052 (mon.0) 265 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:40.694956+0000 mon.smithi052 (mon.0) 265 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:40.698080+0000 mon.smithi148 (mon.1) 1 : cluster [INF] mon.smithi148 calling monitor election 2024-09-06T14:10:43.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:40.698080+0000 mon.smithi148 (mon.1) 1 : cluster [INF] mon.smithi148 calling monitor election 2024-09-06T14:10:43.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:41.695367+0000 mon.smithi052 (mon.0) 266 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:41.695367+0000 mon.smithi052 (mon.0) 266 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:42.590336+0000 mgr.smithi052.grtqlq (mgr.14209) 29 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:42.590336+0000 mgr.smithi052.grtqlq (mgr.14209) 29 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:42.695209+0000 mon.smithi052 (mon.0) 267 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:42.695209+0000 mon.smithi052 (mon.0) 267 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.695541+0000 mon.smithi052 (mon.0) 268 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.695541+0000 mon.smithi052 (mon.0) 268 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.741763+0000 mon.smithi052 (mon.0) 269 : cluster [INF] mon.smithi052 is new leader, mons smithi052,smithi148 in quorum (ranks 0,1) 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.741763+0000 mon.smithi052 (mon.0) 269 : cluster [INF] mon.smithi052 is new leader, mons smithi052,smithi148 in quorum (ranks 0,1) 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.748881+0000 mon.smithi052 (mon.0) 270 : cluster [DBG] monmap epoch 2 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.748881+0000 mon.smithi052 (mon.0) 270 : cluster [DBG] monmap epoch 2 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.748919+0000 mon.smithi052 (mon.0) 271 : cluster [DBG] fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.748919+0000 mon.smithi052 (mon.0) 271 : cluster [DBG] fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:10:43.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749003+0000 mon.smithi052 (mon.0) 272 : cluster [DBG] last_changed 2024-09-06T14:10:38.694464+0000 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749003+0000 mon.smithi052 (mon.0) 272 : cluster [DBG] last_changed 2024-09-06T14:10:38.694464+0000 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749042+0000 mon.smithi052 (mon.0) 273 : cluster [DBG] created 2024-09-06T14:06:55.627106+0000 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749042+0000 mon.smithi052 (mon.0) 273 : cluster [DBG] created 2024-09-06T14:06:55.627106+0000 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749084+0000 mon.smithi052 (mon.0) 274 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749084+0000 mon.smithi052 (mon.0) 274 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749124+0000 mon.smithi052 (mon.0) 275 : cluster [DBG] election_strategy: 1 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749124+0000 mon.smithi052 (mon.0) 275 : cluster [DBG] election_strategy: 1 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749158+0000 mon.smithi052 (mon.0) 276 : cluster [DBG] 0: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749158+0000 mon.smithi052 (mon.0) 276 : cluster [DBG] 0: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749191+0000 mon.smithi052 (mon.0) 277 : cluster [DBG] 1: [v2:172.21.15.148:3300/0,v1:172.21.15.148:6789/0] mon.smithi148 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.749191+0000 mon.smithi052 (mon.0) 277 : cluster [DBG] 1: [v2:172.21.15.148:3300/0,v1:172.21.15.148:6789/0] mon.smithi148 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.767251+0000 mon.smithi052 (mon.0) 278 : cluster [DBG] fsmap 2024-09-06T14:10:43.940 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.767251+0000 mon.smithi052 (mon.0) 278 : cluster [DBG] fsmap 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.767344+0000 mon.smithi052 (mon.0) 279 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.767344+0000 mon.smithi052 (mon.0) 279 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.767780+0000 mon.smithi052 (mon.0) 280 : cluster [DBG] mgrmap e17: smithi052.grtqlq(active, since 37s) 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.767780+0000 mon.smithi052 (mon.0) 280 : cluster [DBG] mgrmap e17: smithi052.grtqlq(active, since 37s) 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.768054+0000 mon.smithi052 (mon.0) 281 : cluster [WRN] Health detail: HEALTH_WARN Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.768054+0000 mon.smithi052 (mon.0) 281 : cluster [WRN] Health detail: HEALTH_WARN Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.768087+0000 mon.smithi052 (mon.0) 282 : cluster [WRN] [WRN] MGR_MODULE_DEPENDENCY: Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.768087+0000 mon.smithi052 (mon.0) 282 : cluster [WRN] [WRN] MGR_MODULE_DEPENDENCY: Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.768122+0000 mon.smithi052 (mon.0) 283 : cluster [WRN] Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.768122+0000 mon.smithi052 (mon.0) 283 : cluster [WRN] Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.768236+0000 mon.smithi052 (mon.0) 284 : cluster [DBG] Standby manager daemon smithi148.bctpwo started 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.768236+0000 mon.smithi052 (mon.0) 284 : cluster [DBG] Standby manager daemon smithi148.bctpwo started 2024-09-06T14:10:43.941 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.775322+0000 mon.smithi052 (mon.0) 285 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:43.942 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.775322+0000 mon.smithi052 (mon.0) 285 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:43.942 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.781203+0000 mon.smithi052 (mon.0) 286 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:43.942 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.781203+0000 mon.smithi052 (mon.0) 286 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:43.942 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.789477+0000 mon.smithi052 (mon.0) 287 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:43.942 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.789477+0000 mon.smithi052 (mon.0) 287 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:43.942 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.791310+0000 mon.smithi052 (mon.0) 288 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:43.942 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.791310+0000 mon.smithi052 (mon.0) 288 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:43.942 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.793208+0000 mon.smithi052 (mon.0) 289 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:10:43.942 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:43 smithi148 bash[25697]: audit 2024-09-06T14:10:43.793208+0000 mon.smithi052 (mon.0) 289 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:10:44.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:38.589214+0000 mgr.smithi052.grtqlq (mgr.14209) 27 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:38.589214+0000 mgr.smithi052.grtqlq (mgr.14209) 27 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:38.592295+0000 mgr.smithi148.bctpwo (mgr.14226) 1 : cluster [ERR] Failed to load ceph-mgr modules: volumes 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:38.592295+0000 mgr.smithi148.bctpwo (mgr.14226) 1 : cluster [ERR] Failed to load ceph-mgr modules: volumes 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:38.695102+0000 mon.smithi052 (mon.0) 260 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:38.695102+0000 mon.smithi052 (mon.0) 260 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:38.700333+0000 mon.smithi052 (mon.0) 261 : cluster [INF] mon.smithi052 calling monitor election 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:38.700333+0000 mon.smithi052 (mon.0) 261 : cluster [INF] mon.smithi052 calling monitor election 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:38.719574+0000 mon.smithi052 (mon.0) 262 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:38.719574+0000 mon.smithi052 (mon.0) 262 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:38.719912+0000 mon.smithi052 (mon.0) 263 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:38.719912+0000 mon.smithi052 (mon.0) 263 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:39.694809+0000 mon.smithi052 (mon.0) 264 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:39.694809+0000 mon.smithi052 (mon.0) 264 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:40.589754+0000 mgr.smithi052.grtqlq (mgr.14209) 28 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:44.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:40.589754+0000 mgr.smithi052.grtqlq (mgr.14209) 28 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:44.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:40.694956+0000 mon.smithi052 (mon.0) 265 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:40.694956+0000 mon.smithi052 (mon.0) 265 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:40.698080+0000 mon.smithi148 (mon.1) 1 : cluster [INF] mon.smithi148 calling monitor election 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:40.698080+0000 mon.smithi148 (mon.1) 1 : cluster [INF] mon.smithi148 calling monitor election 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:41.695367+0000 mon.smithi052 (mon.0) 266 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:41.695367+0000 mon.smithi052 (mon.0) 266 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:42.590336+0000 mgr.smithi052.grtqlq (mgr.14209) 29 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:42.590336+0000 mgr.smithi052.grtqlq (mgr.14209) 29 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:42.695209+0000 mon.smithi052 (mon.0) 267 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:42.695209+0000 mon.smithi052 (mon.0) 267 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.695541+0000 mon.smithi052 (mon.0) 268 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.695541+0000 mon.smithi052 (mon.0) 268 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.741763+0000 mon.smithi052 (mon.0) 269 : cluster [INF] mon.smithi052 is new leader, mons smithi052,smithi148 in quorum (ranks 0,1) 2024-09-06T14:10:44.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.741763+0000 mon.smithi052 (mon.0) 269 : cluster [INF] mon.smithi052 is new leader, mons smithi052,smithi148 in quorum (ranks 0,1) 2024-09-06T14:10:44.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.748881+0000 mon.smithi052 (mon.0) 270 : cluster [DBG] monmap epoch 2 2024-09-06T14:10:44.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.748881+0000 mon.smithi052 (mon.0) 270 : cluster [DBG] monmap epoch 2 2024-09-06T14:10:44.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.748919+0000 mon.smithi052 (mon.0) 271 : cluster [DBG] fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:10:44.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.748919+0000 mon.smithi052 (mon.0) 271 : cluster [DBG] fsid 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:10:44.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749003+0000 mon.smithi052 (mon.0) 272 : cluster [DBG] last_changed 2024-09-06T14:10:38.694464+0000 2024-09-06T14:10:44.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749003+0000 mon.smithi052 (mon.0) 272 : cluster [DBG] last_changed 2024-09-06T14:10:38.694464+0000 2024-09-06T14:10:44.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749042+0000 mon.smithi052 (mon.0) 273 : cluster [DBG] created 2024-09-06T14:06:55.627106+0000 2024-09-06T14:10:44.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749042+0000 mon.smithi052 (mon.0) 273 : cluster [DBG] created 2024-09-06T14:06:55.627106+0000 2024-09-06T14:10:44.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749084+0000 mon.smithi052 (mon.0) 274 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:10:44.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749084+0000 mon.smithi052 (mon.0) 274 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749124+0000 mon.smithi052 (mon.0) 275 : cluster [DBG] election_strategy: 1 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749124+0000 mon.smithi052 (mon.0) 275 : cluster [DBG] election_strategy: 1 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749158+0000 mon.smithi052 (mon.0) 276 : cluster [DBG] 0: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749158+0000 mon.smithi052 (mon.0) 276 : cluster [DBG] 0: [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] mon.smithi052 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749191+0000 mon.smithi052 (mon.0) 277 : cluster [DBG] 1: [v2:172.21.15.148:3300/0,v1:172.21.15.148:6789/0] mon.smithi148 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.749191+0000 mon.smithi052 (mon.0) 277 : cluster [DBG] 1: [v2:172.21.15.148:3300/0,v1:172.21.15.148:6789/0] mon.smithi148 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.767251+0000 mon.smithi052 (mon.0) 278 : cluster [DBG] fsmap 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.767251+0000 mon.smithi052 (mon.0) 278 : cluster [DBG] fsmap 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.767344+0000 mon.smithi052 (mon.0) 279 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.767344+0000 mon.smithi052 (mon.0) 279 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.767780+0000 mon.smithi052 (mon.0) 280 : cluster [DBG] mgrmap e17: smithi052.grtqlq(active, since 37s) 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.767780+0000 mon.smithi052 (mon.0) 280 : cluster [DBG] mgrmap e17: smithi052.grtqlq(active, since 37s) 2024-09-06T14:10:44.194 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.768054+0000 mon.smithi052 (mon.0) 281 : cluster [WRN] Health detail: HEALTH_WARN Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.768054+0000 mon.smithi052 (mon.0) 281 : cluster [WRN] Health detail: HEALTH_WARN Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.768087+0000 mon.smithi052 (mon.0) 282 : cluster [WRN] [WRN] MGR_MODULE_DEPENDENCY: Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.768087+0000 mon.smithi052 (mon.0) 282 : cluster [WRN] [WRN] MGR_MODULE_DEPENDENCY: Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.768122+0000 mon.smithi052 (mon.0) 283 : cluster [WRN] Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.768122+0000 mon.smithi052 (mon.0) 283 : cluster [WRN] Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.768236+0000 mon.smithi052 (mon.0) 284 : cluster [DBG] Standby manager daemon smithi148.bctpwo started 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.768236+0000 mon.smithi052 (mon.0) 284 : cluster [DBG] Standby manager daemon smithi148.bctpwo started 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.775322+0000 mon.smithi052 (mon.0) 285 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.775322+0000 mon.smithi052 (mon.0) 285 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.781203+0000 mon.smithi052 (mon.0) 286 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.781203+0000 mon.smithi052 (mon.0) 286 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.789477+0000 mon.smithi052 (mon.0) 287 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.195 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.789477+0000 mon.smithi052 (mon.0) 287 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.196 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.791310+0000 mon.smithi052 (mon.0) 288 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:44.196 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.791310+0000 mon.smithi052 (mon.0) 288 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:44.196 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.793208+0000 mon.smithi052 (mon.0) 289 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:10:44.196 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:43 smithi052 bash[19834]: audit 2024-09-06T14:10:43.793208+0000 mon.smithi052 (mon.0) 289 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:10:44.614 INFO:teuthology.orchestra.run.smithi148.stdout: 2024-09-06T14:10:44.614 INFO:teuthology.orchestra.run.smithi148.stdout:{"epoch":2,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","modified":"2024-09-06T14:10:38.694464Z","created":"2024-09-06T14:06:55.627106Z","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":"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":"{}"},{"rank":1,"name":"smithi148","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:3300","nonce":0},{"type":"v1","addr":"172.21.15.148:6789","nonce":0}]},"addr":"172.21.15.148:6789/0","public_addr":"172.21.15.148:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-06T14:10:44.614 INFO:teuthology.orchestra.run.smithi148.stderr:dumped monmap epoch 2 2024-09-06T14:10:44.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:43.795720+0000 mgr.smithi052.grtqlq (mgr.14209) 30 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.conf 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:43.795720+0000 mgr.smithi052.grtqlq (mgr.14209) 30 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.conf 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:43.796391+0000 mgr.smithi052.grtqlq (mgr.14209) 31 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.conf 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:43.796391+0000 mgr.smithi052.grtqlq (mgr.14209) 31 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.conf 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.832058+0000 mon.smithi052 (mon.0) 290 : cluster [DBG] mgrmap e18: smithi052.grtqlq(active, since 37s), standbys: smithi148.bctpwo 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cluster 2024-09-06T14:10:43.832058+0000 mon.smithi052 (mon.0) 290 : cluster [DBG] mgrmap e18: smithi052.grtqlq(active, since 37s), standbys: smithi148.bctpwo 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:43.832824+0000 mon.smithi052 (mon.0) 291 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi148.bctpwo", "id": "smithi148.bctpwo"} : dispatch 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:43.832824+0000 mon.smithi052 (mon.0) 291 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi148.bctpwo", "id": "smithi148.bctpwo"} : dispatch 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:43.977778+0000 mgr.smithi052.grtqlq (mgr.14209) 32 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:43.977778+0000 mgr.smithi052.grtqlq (mgr.14209) 32 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:43.986610+0000 mgr.smithi052.grtqlq (mgr.14209) 33 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:44.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:43.986610+0000 mgr.smithi052.grtqlq (mgr.14209) 33 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.113210+0000 mon.smithi052 (mon.0) 292 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.113210+0000 mon.smithi052 (mon.0) 292 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.119043+0000 mon.smithi052 (mon.0) 293 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.119043+0000 mon.smithi052 (mon.0) 293 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.127934+0000 mon.smithi052 (mon.0) 294 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.127934+0000 mon.smithi052 (mon.0) 294 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.134908+0000 mon.smithi052 (mon.0) 295 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.134908+0000 mon.smithi052 (mon.0) 295 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.139683+0000 mon.smithi052 (mon.0) 296 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.139683+0000 mon.smithi052 (mon.0) 296 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:44.176204+0000 mgr.smithi052.grtqlq (mgr.14209) 34 : cephadm [INF] Reconfiguring mon.smithi052 (unknown last config time)... 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:44.176204+0000 mgr.smithi052.grtqlq (mgr.14209) 34 : cephadm [INF] Reconfiguring mon.smithi052 (unknown last config time)... 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.176638+0000 mon.smithi052 (mon.0) 297 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:10:44.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.176638+0000 mon.smithi052 (mon.0) 297 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:10:44.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.177499+0000 mon.smithi052 (mon.0) 298 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T14:10:44.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.177499+0000 mon.smithi052 (mon.0) 298 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T14:10:44.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.178327+0000 mon.smithi052 (mon.0) 299 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:44.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.178327+0000 mon.smithi052 (mon.0) 299 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:44.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:44.179220+0000 mgr.smithi052.grtqlq (mgr.14209) 35 : cephadm [INF] Reconfiguring daemon mon.smithi052 on smithi052 2024-09-06T14:10:44.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: cephadm 2024-09-06T14:10:44.179220+0000 mgr.smithi052.grtqlq (mgr.14209) 35 : cephadm [INF] Reconfiguring daemon mon.smithi052 on smithi052 2024-09-06T14:10:44.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.617688+0000 mon.smithi052 (mon.0) 300 : audit [DBG] from='client.? 172.21.15.148:0/556946796' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:44.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.617688+0000 mon.smithi052 (mon.0) 300 : audit [DBG] from='client.? 172.21.15.148:0/556946796' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:44.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.694254+0000 mon.smithi052 (mon.0) 301 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:44.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:44 smithi148 bash[25697]: audit 2024-09-06T14:10:44.694254+0000 mon.smithi052 (mon.0) 301 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:45.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:43.795720+0000 mgr.smithi052.grtqlq (mgr.14209) 30 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.conf 2024-09-06T14:10:45.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:43.795720+0000 mgr.smithi052.grtqlq (mgr.14209) 30 : cephadm [INF] Updating smithi052:/etc/ceph/ceph.conf 2024-09-06T14:10:45.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:43.796391+0000 mgr.smithi052.grtqlq (mgr.14209) 31 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.conf 2024-09-06T14:10:45.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:43.796391+0000 mgr.smithi052.grtqlq (mgr.14209) 31 : cephadm [INF] Updating smithi148:/etc/ceph/ceph.conf 2024-09-06T14:10:45.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.832058+0000 mon.smithi052 (mon.0) 290 : cluster [DBG] mgrmap e18: smithi052.grtqlq(active, since 37s), standbys: smithi148.bctpwo 2024-09-06T14:10:45.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cluster 2024-09-06T14:10:43.832058+0000 mon.smithi052 (mon.0) 290 : cluster [DBG] mgrmap e18: smithi052.grtqlq(active, since 37s), standbys: smithi148.bctpwo 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:43.832824+0000 mon.smithi052 (mon.0) 291 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi148.bctpwo", "id": "smithi148.bctpwo"} : dispatch 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:43.832824+0000 mon.smithi052 (mon.0) 291 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr metadata", "who": "smithi148.bctpwo", "id": "smithi148.bctpwo"} : dispatch 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:43.977778+0000 mgr.smithi052.grtqlq (mgr.14209) 32 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:43.977778+0000 mgr.smithi052.grtqlq (mgr.14209) 32 : cephadm [INF] Updating smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:43.986610+0000 mgr.smithi052.grtqlq (mgr.14209) 33 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:43.986610+0000 mgr.smithi052.grtqlq (mgr.14209) 33 : cephadm [INF] Updating smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.113210+0000 mon.smithi052 (mon.0) 292 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.113210+0000 mon.smithi052 (mon.0) 292 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.119043+0000 mon.smithi052 (mon.0) 293 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.119043+0000 mon.smithi052 (mon.0) 293 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.127934+0000 mon.smithi052 (mon.0) 294 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.127934+0000 mon.smithi052 (mon.0) 294 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.134908+0000 mon.smithi052 (mon.0) 295 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:45.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.134908+0000 mon.smithi052 (mon.0) 295 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.139683+0000 mon.smithi052 (mon.0) 296 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.139683+0000 mon.smithi052 (mon.0) 296 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:44.176204+0000 mgr.smithi052.grtqlq (mgr.14209) 34 : cephadm [INF] Reconfiguring mon.smithi052 (unknown last config time)... 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:44.176204+0000 mgr.smithi052.grtqlq (mgr.14209) 34 : cephadm [INF] Reconfiguring mon.smithi052 (unknown last config time)... 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.176638+0000 mon.smithi052 (mon.0) 297 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.176638+0000 mon.smithi052 (mon.0) 297 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.177499+0000 mon.smithi052 (mon.0) 298 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.177499+0000 mon.smithi052 (mon.0) 298 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.178327+0000 mon.smithi052 (mon.0) 299 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.178327+0000 mon.smithi052 (mon.0) 299 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:44.179220+0000 mgr.smithi052.grtqlq (mgr.14209) 35 : cephadm [INF] Reconfiguring daemon mon.smithi052 on smithi052 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: cephadm 2024-09-06T14:10:44.179220+0000 mgr.smithi052.grtqlq (mgr.14209) 35 : cephadm [INF] Reconfiguring daemon mon.smithi052 on smithi052 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.617688+0000 mon.smithi052 (mon.0) 300 : audit [DBG] from='client.? 172.21.15.148:0/556946796' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:45.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.617688+0000 mon.smithi052 (mon.0) 300 : audit [DBG] from='client.? 172.21.15.148:0/556946796' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:10:45.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.694254+0000 mon.smithi052 (mon.0) 301 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:45.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:44 smithi052 bash[19834]: audit 2024-09-06T14:10:44.694254+0000 mon.smithi052 (mon.0) 301 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:10:45.397 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-06T14:10:45.398 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph config generate-minimal-conf 2024-09-06T14:10:46.404 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:46 smithi052 bash[19834]: cluster 2024-09-06T14:10:44.590693+0000 mgr.smithi052.grtqlq (mgr.14209) 36 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:46.404 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:46 smithi052 bash[19834]: cluster 2024-09-06T14:10:44.590693+0000 mgr.smithi052.grtqlq (mgr.14209) 36 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:46.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:46 smithi148 bash[25697]: cluster 2024-09-06T14:10:44.590693+0000 mgr.smithi052.grtqlq (mgr.14209) 36 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:46.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:46 smithi148 bash[25697]: cluster 2024-09-06T14:10:44.590693+0000 mgr.smithi052.grtqlq (mgr.14209) 36 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:47.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: audit 2024-09-06T14:10:46.515208+0000 mon.smithi052 (mon.0) 302 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:47.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: audit 2024-09-06T14:10:46.515208+0000 mon.smithi052 (mon.0) 302 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:47.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: audit 2024-09-06T14:10:46.523211+0000 mon.smithi052 (mon.0) 303 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:47.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: audit 2024-09-06T14:10:46.523211+0000 mon.smithi052 (mon.0) 303 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:47.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: cephadm 2024-09-06T14:10:46.524653+0000 mgr.smithi052.grtqlq (mgr.14209) 37 : cephadm [INF] Reconfiguring mgr.smithi052.grtqlq (unknown last config time)... 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: cephadm 2024-09-06T14:10:46.524653+0000 mgr.smithi052.grtqlq (mgr.14209) 37 : cephadm [INF] Reconfiguring mgr.smithi052.grtqlq (unknown last config time)... 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: audit 2024-09-06T14:10:46.525156+0000 mon.smithi052 (mon.0) 304 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi052.grtqlq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: audit 2024-09-06T14:10:46.525156+0000 mon.smithi052 (mon.0) 304 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi052.grtqlq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: audit 2024-09-06T14:10:46.526922+0000 mon.smithi052 (mon.0) 305 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: audit 2024-09-06T14:10:46.526922+0000 mon.smithi052 (mon.0) 305 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: audit 2024-09-06T14:10:46.528311+0000 mon.smithi052 (mon.0) 306 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: audit 2024-09-06T14:10:46.528311+0000 mon.smithi052 (mon.0) 306 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: cephadm 2024-09-06T14:10:46.529823+0000 mgr.smithi052.grtqlq (mgr.14209) 38 : cephadm [INF] Reconfiguring daemon mgr.smithi052.grtqlq on smithi052 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: cephadm 2024-09-06T14:10:46.529823+0000 mgr.smithi052.grtqlq (mgr.14209) 38 : cephadm [INF] Reconfiguring daemon mgr.smithi052.grtqlq on smithi052 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: cluster 2024-09-06T14:10:46.591110+0000 mgr.smithi052.grtqlq (mgr.14209) 39 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:47.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:47 smithi148 bash[25697]: cluster 2024-09-06T14:10:46.591110+0000 mgr.smithi052.grtqlq (mgr.14209) 39 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: audit 2024-09-06T14:10:46.515208+0000 mon.smithi052 (mon.0) 302 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: audit 2024-09-06T14:10:46.515208+0000 mon.smithi052 (mon.0) 302 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: audit 2024-09-06T14:10:46.523211+0000 mon.smithi052 (mon.0) 303 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: audit 2024-09-06T14:10:46.523211+0000 mon.smithi052 (mon.0) 303 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: cephadm 2024-09-06T14:10:46.524653+0000 mgr.smithi052.grtqlq (mgr.14209) 37 : cephadm [INF] Reconfiguring mgr.smithi052.grtqlq (unknown last config time)... 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: cephadm 2024-09-06T14:10:46.524653+0000 mgr.smithi052.grtqlq (mgr.14209) 37 : cephadm [INF] Reconfiguring mgr.smithi052.grtqlq (unknown last config time)... 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: audit 2024-09-06T14:10:46.525156+0000 mon.smithi052 (mon.0) 304 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi052.grtqlq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: audit 2024-09-06T14:10:46.525156+0000 mon.smithi052 (mon.0) 304 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi052.grtqlq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: audit 2024-09-06T14:10:46.526922+0000 mon.smithi052 (mon.0) 305 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: audit 2024-09-06T14:10:46.526922+0000 mon.smithi052 (mon.0) 305 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: audit 2024-09-06T14:10:46.528311+0000 mon.smithi052 (mon.0) 306 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:47.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: audit 2024-09-06T14:10:46.528311+0000 mon.smithi052 (mon.0) 306 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:47.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: cephadm 2024-09-06T14:10:46.529823+0000 mgr.smithi052.grtqlq (mgr.14209) 38 : cephadm [INF] Reconfiguring daemon mgr.smithi052.grtqlq on smithi052 2024-09-06T14:10:47.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: cephadm 2024-09-06T14:10:46.529823+0000 mgr.smithi052.grtqlq (mgr.14209) 38 : cephadm [INF] Reconfiguring daemon mgr.smithi052.grtqlq on smithi052 2024-09-06T14:10:47.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: cluster 2024-09-06T14:10:46.591110+0000 mgr.smithi052.grtqlq (mgr.14209) 39 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:47.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:47 smithi052 bash[19834]: cluster 2024-09-06T14:10:46.591110+0000 mgr.smithi052.grtqlq (mgr.14209) 39 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:50.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: cluster 2024-09-06T14:10:48.591603+0000 mgr.smithi052.grtqlq (mgr.14209) 40 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:50.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: cluster 2024-09-06T14:10:48.591603+0000 mgr.smithi052.grtqlq (mgr.14209) 40 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:50.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: audit 2024-09-06T14:10:48.935034+0000 mon.smithi052 (mon.0) 307 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:50.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: audit 2024-09-06T14:10:48.935034+0000 mon.smithi052 (mon.0) 307 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:50.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: audit 2024-09-06T14:10:48.943409+0000 mon.smithi052 (mon.0) 308 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:50.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: audit 2024-09-06T14:10:48.943409+0000 mon.smithi052 (mon.0) 308 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:50.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: cephadm 2024-09-06T14:10:48.945351+0000 mgr.smithi052.grtqlq (mgr.14209) 41 : cephadm [INF] Reconfiguring ceph-exporter.smithi052 (monmap changed)... 2024-09-06T14:10:50.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: cephadm 2024-09-06T14:10:48.945351+0000 mgr.smithi052.grtqlq (mgr.14209) 41 : cephadm [INF] Reconfiguring ceph-exporter.smithi052 (monmap changed)... 2024-09-06T14:10:50.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: audit 2024-09-06T14:10:48.945859+0000 mon.smithi052 (mon.0) 309 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:10:50.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: audit 2024-09-06T14:10:48.945859+0000 mon.smithi052 (mon.0) 309 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:10:50.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: audit 2024-09-06T14:10:48.947428+0000 mon.smithi052 (mon.0) 310 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:50.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: audit 2024-09-06T14:10:48.947428+0000 mon.smithi052 (mon.0) 310 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:50.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: cephadm 2024-09-06T14:10:48.949100+0000 mgr.smithi052.grtqlq (mgr.14209) 42 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi052 on smithi052 2024-09-06T14:10:50.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:49 smithi148 bash[25697]: cephadm 2024-09-06T14:10:48.949100+0000 mgr.smithi052.grtqlq (mgr.14209) 42 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi052 on smithi052 2024-09-06T14:10:50.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: cluster 2024-09-06T14:10:48.591603+0000 mgr.smithi052.grtqlq (mgr.14209) 40 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: cluster 2024-09-06T14:10:48.591603+0000 mgr.smithi052.grtqlq (mgr.14209) 40 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: audit 2024-09-06T14:10:48.935034+0000 mon.smithi052 (mon.0) 307 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: audit 2024-09-06T14:10:48.935034+0000 mon.smithi052 (mon.0) 307 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: audit 2024-09-06T14:10:48.943409+0000 mon.smithi052 (mon.0) 308 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: audit 2024-09-06T14:10:48.943409+0000 mon.smithi052 (mon.0) 308 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: cephadm 2024-09-06T14:10:48.945351+0000 mgr.smithi052.grtqlq (mgr.14209) 41 : cephadm [INF] Reconfiguring ceph-exporter.smithi052 (monmap changed)... 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: cephadm 2024-09-06T14:10:48.945351+0000 mgr.smithi052.grtqlq (mgr.14209) 41 : cephadm [INF] Reconfiguring ceph-exporter.smithi052 (monmap changed)... 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: audit 2024-09-06T14:10:48.945859+0000 mon.smithi052 (mon.0) 309 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: audit 2024-09-06T14:10:48.945859+0000 mon.smithi052 (mon.0) 309 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: audit 2024-09-06T14:10:48.947428+0000 mon.smithi052 (mon.0) 310 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: audit 2024-09-06T14:10:48.947428+0000 mon.smithi052 (mon.0) 310 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: cephadm 2024-09-06T14:10:48.949100+0000 mgr.smithi052.grtqlq (mgr.14209) 42 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi052 on smithi052 2024-09-06T14:10:50.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:49 smithi052 bash[19834]: cephadm 2024-09-06T14:10:48.949100+0000 mgr.smithi052.grtqlq (mgr.14209) 42 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi052 on smithi052 2024-09-06T14:10:50.198 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:10:52.053 INFO:teuthology.orchestra.run.smithi052.stdout:# minimal ceph.conf for 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:10:52.053 INFO:teuthology.orchestra.run.smithi052.stdout:[global] 2024-09-06T14:10:52.053 INFO:teuthology.orchestra.run.smithi052.stdout: fsid = 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:10:52.053 INFO:teuthology.orchestra.run.smithi052.stdout: mon_host = [v2:172.21.15.52:3300/0,v1:172.21.15.52:6789/0] [v2:172.21.15.148:3300/0,v1:172.21.15.148:6789/0] 2024-09-06T14:10:52.066 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:51 smithi052 bash[19834]: cluster 2024-09-06T14:10:50.592007+0000 mgr.smithi052.grtqlq (mgr.14209) 43 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:52.066 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:51 smithi052 bash[19834]: cluster 2024-09-06T14:10:50.592007+0000 mgr.smithi052.grtqlq (mgr.14209) 43 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:52.066 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:51 smithi052 bash[19834]: audit 2024-09-06T14:10:51.660765+0000 mon.smithi052 (mon.0) 311 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:52.066 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:51 smithi052 bash[19834]: audit 2024-09-06T14:10:51.660765+0000 mon.smithi052 (mon.0) 311 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:52.066 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:51 smithi052 bash[19834]: audit 2024-09-06T14:10:51.667580+0000 mon.smithi052 (mon.0) 312 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:52.066 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:51 smithi052 bash[19834]: audit 2024-09-06T14:10:51.667580+0000 mon.smithi052 (mon.0) 312 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:52.066 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:51 smithi052 bash[19834]: audit 2024-09-06T14:10:51.669571+0000 mon.smithi052 (mon.0) 313 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:10:52.066 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:51 smithi052 bash[19834]: audit 2024-09-06T14:10:51.669571+0000 mon.smithi052 (mon.0) 313 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:10:52.066 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:51 smithi052 bash[19834]: audit 2024-09-06T14:10:51.671244+0000 mon.smithi052 (mon.0) 314 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:52.066 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:51 smithi052 bash[19834]: audit 2024-09-06T14:10:51.671244+0000 mon.smithi052 (mon.0) 314 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:52.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:51 smithi148 bash[25697]: cluster 2024-09-06T14:10:50.592007+0000 mgr.smithi052.grtqlq (mgr.14209) 43 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:52.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:51 smithi148 bash[25697]: cluster 2024-09-06T14:10:50.592007+0000 mgr.smithi052.grtqlq (mgr.14209) 43 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:52.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:51 smithi148 bash[25697]: audit 2024-09-06T14:10:51.660765+0000 mon.smithi052 (mon.0) 311 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:52.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:51 smithi148 bash[25697]: audit 2024-09-06T14:10:51.660765+0000 mon.smithi052 (mon.0) 311 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:52.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:51 smithi148 bash[25697]: audit 2024-09-06T14:10:51.667580+0000 mon.smithi052 (mon.0) 312 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:52.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:51 smithi148 bash[25697]: audit 2024-09-06T14:10:51.667580+0000 mon.smithi052 (mon.0) 312 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:52.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:51 smithi148 bash[25697]: audit 2024-09-06T14:10:51.669571+0000 mon.smithi052 (mon.0) 313 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:10:52.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:51 smithi148 bash[25697]: audit 2024-09-06T14:10:51.669571+0000 mon.smithi052 (mon.0) 313 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi052", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:10:52.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:51 smithi148 bash[25697]: audit 2024-09-06T14:10:51.671244+0000 mon.smithi052 (mon.0) 314 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:52.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:51 smithi148 bash[25697]: audit 2024-09-06T14:10:51.671244+0000 mon.smithi052 (mon.0) 314 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:53.139 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-06T14:10:53.139 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:10:53.139 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/etc/ceph/ceph.conf 2024-09-06T14:10:53.154 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:10:53.154 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:10:53.207 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:52 smithi052 bash[19834]: cephadm 2024-09-06T14:10:51.669028+0000 mgr.smithi052.grtqlq (mgr.14209) 44 : cephadm [INF] Reconfiguring crash.smithi052 (monmap changed)... 2024-09-06T14:10:53.208 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:52 smithi052 bash[19834]: cephadm 2024-09-06T14:10:51.669028+0000 mgr.smithi052.grtqlq (mgr.14209) 44 : cephadm [INF] Reconfiguring crash.smithi052 (monmap changed)... 2024-09-06T14:10:53.208 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:52 smithi052 bash[19834]: cephadm 2024-09-06T14:10:51.672903+0000 mgr.smithi052.grtqlq (mgr.14209) 45 : cephadm [INF] Reconfiguring daemon crash.smithi052 on smithi052 2024-09-06T14:10:53.208 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:52 smithi052 bash[19834]: cephadm 2024-09-06T14:10:51.672903+0000 mgr.smithi052.grtqlq (mgr.14209) 45 : cephadm [INF] Reconfiguring daemon crash.smithi052 on smithi052 2024-09-06T14:10:53.208 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:52 smithi052 bash[19834]: audit 2024-09-06T14:10:52.057157+0000 mon.smithi052 (mon.0) 315 : audit [DBG] from='client.? 172.21.15.52:0/671946850' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:53.208 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:52 smithi052 bash[19834]: audit 2024-09-06T14:10:52.057157+0000 mon.smithi052 (mon.0) 315 : audit [DBG] from='client.? 172.21.15.52:0/671946850' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:53.208 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:52 smithi052 bash[19834]: audit 2024-09-06T14:10:52.073711+0000 mon.smithi052 (mon.0) 316 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:53.208 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:52 smithi052 bash[19834]: audit 2024-09-06T14:10:52.073711+0000 mon.smithi052 (mon.0) 316 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:53.211 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T14:10:53.211 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd of=/etc/ceph/ceph.conf 2024-09-06T14:10:53.222 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:52 smithi148 bash[25697]: cephadm 2024-09-06T14:10:51.669028+0000 mgr.smithi052.grtqlq (mgr.14209) 44 : cephadm [INF] Reconfiguring crash.smithi052 (monmap changed)... 2024-09-06T14:10:53.222 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:52 smithi148 bash[25697]: cephadm 2024-09-06T14:10:51.669028+0000 mgr.smithi052.grtqlq (mgr.14209) 44 : cephadm [INF] Reconfiguring crash.smithi052 (monmap changed)... 2024-09-06T14:10:53.222 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:52 smithi148 bash[25697]: cephadm 2024-09-06T14:10:51.672903+0000 mgr.smithi052.grtqlq (mgr.14209) 45 : cephadm [INF] Reconfiguring daemon crash.smithi052 on smithi052 2024-09-06T14:10:53.222 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:52 smithi148 bash[25697]: cephadm 2024-09-06T14:10:51.672903+0000 mgr.smithi052.grtqlq (mgr.14209) 45 : cephadm [INF] Reconfiguring daemon crash.smithi052 on smithi052 2024-09-06T14:10:53.222 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:52 smithi148 bash[25697]: audit 2024-09-06T14:10:52.057157+0000 mon.smithi052 (mon.0) 315 : audit [DBG] from='client.? 172.21.15.52:0/671946850' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:53.222 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:52 smithi148 bash[25697]: audit 2024-09-06T14:10:52.057157+0000 mon.smithi052 (mon.0) 315 : audit [DBG] from='client.? 172.21.15.52:0/671946850' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:10:53.223 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:52 smithi148 bash[25697]: audit 2024-09-06T14:10:52.073711+0000 mon.smithi052 (mon.0) 316 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:53.223 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:52 smithi148 bash[25697]: audit 2024-09-06T14:10:52.073711+0000 mon.smithi052 (mon.0) 316 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:10:53.225 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T14:10:53.225 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:10:53.279 DEBUG:tasks.cephadm:set 0 configs 2024-09-06T14:10:53.280 INFO:tasks.cephadm:Deploying OSDs... 2024-09-06T14:10:53.280 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:10:53.280 DEBUG:teuthology.orchestra.run.smithi052:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T14:10:53.286 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-06T14:10:53.286 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/nvme1n1 2024-09-06T14:10:53.334 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/nvme1n1 2024-09-06T14:10:53.335 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T14:10:53.335 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 973 Links: 1 Device type: 103,2 2024-09-06T14:10:53.335 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T14:10:53.335 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-09-06 14:08:31.083037396 +0000 2024-09-06T14:10:53.335 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-09-06 14:05:26.017127279 +0000 2024-09-06T14:10:53.335 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-09-06 14:05:26.017127279 +0000 2024-09-06T14:10:53.335 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-09-06T14:10:53.335 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-06T14:10:53.389 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-09-06T14:10:53.389 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-09-06T14:10:53.390 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000379925 s, 1.3 MB/s 2024-09-06T14:10:53.391 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-06T14:10:53.440 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/nvme2n1 2024-09-06T14:10:53.490 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/nvme2n1 2024-09-06T14:10:53.490 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T14:10:53.490 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 982 Links: 1 Device type: 103,4 2024-09-06T14:10:53.490 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T14:10:53.490 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-09-06 14:08:31.091037325 +0000 2024-09-06T14:10:53.490 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-09-06 14:05:26.121074350 +0000 2024-09-06T14:10:53.490 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-09-06 14:05:26.121074350 +0000 2024-09-06T14:10:53.491 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-09-06T14:10:53.491 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-06T14:10:53.545 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-09-06T14:10:53.545 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-09-06T14:10:53.545 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000381028 s, 1.3 MB/s 2024-09-06T14:10:53.546 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-06T14:10:53.596 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/nvme3n1 2024-09-06T14:10:53.642 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/nvme3n1 2024-09-06T14:10:53.643 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T14:10:53.643 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 991 Links: 1 Device type: 103,6 2024-09-06T14:10:53.643 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T14:10:53.643 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-09-06 14:08:31.099037253 +0000 2024-09-06T14:10:53.643 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-09-06 14:05:26.221023458 +0000 2024-09-06T14:10:53.643 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-09-06 14:05:26.221023458 +0000 2024-09-06T14:10:53.643 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-09-06T14:10:53.643 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-06T14:10:53.694 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-09-06T14:10:53.695 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-09-06T14:10:53.695 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000179999 s, 2.8 MB/s 2024-09-06T14:10:53.696 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-06T14:10:53.742 DEBUG:teuthology.orchestra.run.smithi052:> stat /dev/nvme4n1 2024-09-06T14:10:53.794 INFO:teuthology.orchestra.run.smithi052.stdout: File: /dev/nvme4n1 2024-09-06T14:10:53.794 INFO:teuthology.orchestra.run.smithi052.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T14:10:53.794 INFO:teuthology.orchestra.run.smithi052.stdout:Device: 5h/5d Inode: 1000 Links: 1 Device type: 103,8 2024-09-06T14:10:53.794 INFO:teuthology.orchestra.run.smithi052.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T14:10:53.794 INFO:teuthology.orchestra.run.smithi052.stdout:Access: 2024-09-06 14:08:31.107037182 +0000 2024-09-06T14:10:53.794 INFO:teuthology.orchestra.run.smithi052.stdout:Modify: 2024-09-06 14:05:26.320972564 +0000 2024-09-06T14:10:53.794 INFO:teuthology.orchestra.run.smithi052.stdout:Change: 2024-09-06 14:05:26.320972564 +0000 2024-09-06T14:10:53.794 INFO:teuthology.orchestra.run.smithi052.stdout: Birth: - 2024-09-06T14:10:53.794 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-06T14:10:53.852 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records in 2024-09-06T14:10:53.852 INFO:teuthology.orchestra.run.smithi052.stderr:1+0 records out 2024-09-06T14:10:53.852 INFO:teuthology.orchestra.run.smithi052.stderr:512 bytes copied, 0.000189214 s, 2.7 MB/s 2024-09-06T14:10:53.853 DEBUG:teuthology.orchestra.run.smithi052:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-06T14:10:53.903 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T14:10:53.903 DEBUG:teuthology.orchestra.run.smithi148:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T14:10:53.910 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-06T14:10:53.910 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/nvme1n1 2024-09-06T14:10:53.956 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/nvme1n1 2024-09-06T14:10:53.956 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T14:10:53.956 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 5h/5d Inode: 973 Links: 1 Device type: 103,2 2024-09-06T14:10:53.957 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T14:10:53.957 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2024-09-06 14:10:16.238892757 +0000 2024-09-06T14:10:53.957 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2024-09-06 14:05:27.302296916 +0000 2024-09-06T14:10:53.957 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2024-09-06 14:05:27.302296916 +0000 2024-09-06T14:10:53.957 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2024-09-06T14:10:53.957 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-06T14:10:53.970 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:53 smithi052 bash[19834]: cluster 2024-09-06T14:10:52.592424+0000 mgr.smithi052.grtqlq (mgr.14209) 46 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:53.970 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:53 smithi052 bash[19834]: cluster 2024-09-06T14:10:52.592424+0000 mgr.smithi052.grtqlq (mgr.14209) 46 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:54.011 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2024-09-06T14:10:54.011 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2024-09-06T14:10:54.011 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000512414 s, 999 kB/s 2024-09-06T14:10:54.012 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-06T14:10:54.062 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/nvme2n1 2024-09-06T14:10:54.108 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/nvme2n1 2024-09-06T14:10:54.108 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T14:10:54.108 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 5h/5d Inode: 982 Links: 1 Device type: 103,4 2024-09-06T14:10:54.108 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T14:10:54.108 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2024-09-06 14:10:16.250892469 +0000 2024-09-06T14:10:54.108 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2024-09-06 14:05:27.398344058 +0000 2024-09-06T14:10:54.108 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2024-09-06 14:05:27.398344058 +0000 2024-09-06T14:10:54.109 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2024-09-06T14:10:54.109 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-06T14:10:54.162 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2024-09-06T14:10:54.162 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2024-09-06T14:10:54.162 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000519089 s, 986 kB/s 2024-09-06T14:10:54.163 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-06T14:10:54.213 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/nvme3n1 2024-09-06T14:10:54.260 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/nvme3n1 2024-09-06T14:10:54.260 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T14:10:54.260 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 5h/5d Inode: 991 Links: 1 Device type: 103,6 2024-09-06T14:10:54.260 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T14:10:54.261 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2024-09-06 14:10:16.266892087 +0000 2024-09-06T14:10:54.261 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2024-09-06 14:05:27.494391200 +0000 2024-09-06T14:10:54.261 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2024-09-06 14:05:27.494391200 +0000 2024-09-06T14:10:54.261 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2024-09-06T14:10:54.261 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-06T14:10:54.312 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:53 smithi148 bash[25697]: cluster 2024-09-06T14:10:52.592424+0000 mgr.smithi052.grtqlq (mgr.14209) 46 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:54.312 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:53 smithi148 bash[25697]: cluster 2024-09-06T14:10:52.592424+0000 mgr.smithi052.grtqlq (mgr.14209) 46 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:54.315 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2024-09-06T14:10:54.315 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2024-09-06T14:10:54.315 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000496078 s, 1.0 MB/s 2024-09-06T14:10:54.316 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-06T14:10:54.365 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/nvme4n1 2024-09-06T14:10:54.411 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/nvme4n1 2024-09-06T14:10:54.412 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T14:10:54.412 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 5h/5d Inode: 1000 Links: 1 Device type: 103,8 2024-09-06T14:10:54.412 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T14:10:54.412 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2024-09-06 14:10:16.278891800 +0000 2024-09-06T14:10:54.412 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2024-09-06 14:05:27.594440307 +0000 2024-09-06T14:10:54.412 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2024-09-06 14:05:27.594440307 +0000 2024-09-06T14:10:54.413 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2024-09-06T14:10:54.413 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-06T14:10:54.466 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2024-09-06T14:10:54.466 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2024-09-06T14:10:54.466 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000417496 s, 1.2 MB/s 2024-09-06T14:10:54.467 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-06T14:10:54.517 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-09-06T14:10:55.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:55 smithi052 bash[19834]: audit 2024-09-06T14:10:54.536470+0000 mon.smithi052 (mon.0) 317 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:55.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:55 smithi052 bash[19834]: audit 2024-09-06T14:10:54.536470+0000 mon.smithi052 (mon.0) 317 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:55.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:55 smithi052 bash[19834]: audit 2024-09-06T14:10:54.542788+0000 mon.smithi052 (mon.0) 318 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:55.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:55 smithi052 bash[19834]: audit 2024-09-06T14:10:54.542788+0000 mon.smithi052 (mon.0) 318 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:55.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:55 smithi052 bash[19834]: cephadm 2024-09-06T14:10:54.545335+0000 mgr.smithi052.grtqlq (mgr.14209) 47 : cephadm [INF] Reconfiguring alertmanager.smithi052 (dependencies changed)... 2024-09-06T14:10:55.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:55 smithi052 bash[19834]: cephadm 2024-09-06T14:10:54.545335+0000 mgr.smithi052.grtqlq (mgr.14209) 47 : cephadm [INF] Reconfiguring alertmanager.smithi052 (dependencies changed)... 2024-09-06T14:10:55.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:55 smithi052 bash[19834]: cephadm 2024-09-06T14:10:54.569318+0000 mgr.smithi052.grtqlq (mgr.14209) 48 : cephadm [INF] Reconfiguring daemon alertmanager.smithi052 on smithi052 2024-09-06T14:10:55.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:55 smithi052 bash[19834]: cephadm 2024-09-06T14:10:54.569318+0000 mgr.smithi052.grtqlq (mgr.14209) 48 : cephadm [INF] Reconfiguring daemon alertmanager.smithi052 on smithi052 2024-09-06T14:10:55.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:55 smithi052 bash[19834]: cluster 2024-09-06T14:10:54.592968+0000 mgr.smithi052.grtqlq (mgr.14209) 49 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:55.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:55 smithi052 bash[19834]: cluster 2024-09-06T14:10:54.592968+0000 mgr.smithi052.grtqlq (mgr.14209) 49 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:55.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:55 smithi148 bash[25697]: audit 2024-09-06T14:10:54.536470+0000 mon.smithi052 (mon.0) 317 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:55.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:55 smithi148 bash[25697]: audit 2024-09-06T14:10:54.536470+0000 mon.smithi052 (mon.0) 317 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:55.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:55 smithi148 bash[25697]: audit 2024-09-06T14:10:54.542788+0000 mon.smithi052 (mon.0) 318 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:55.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:55 smithi148 bash[25697]: audit 2024-09-06T14:10:54.542788+0000 mon.smithi052 (mon.0) 318 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:55.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:55 smithi148 bash[25697]: cephadm 2024-09-06T14:10:54.545335+0000 mgr.smithi052.grtqlq (mgr.14209) 47 : cephadm [INF] Reconfiguring alertmanager.smithi052 (dependencies changed)... 2024-09-06T14:10:55.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:55 smithi148 bash[25697]: cephadm 2024-09-06T14:10:54.545335+0000 mgr.smithi052.grtqlq (mgr.14209) 47 : cephadm [INF] Reconfiguring alertmanager.smithi052 (dependencies changed)... 2024-09-06T14:10:55.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:55 smithi148 bash[25697]: cephadm 2024-09-06T14:10:54.569318+0000 mgr.smithi052.grtqlq (mgr.14209) 48 : cephadm [INF] Reconfiguring daemon alertmanager.smithi052 on smithi052 2024-09-06T14:10:55.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:55 smithi148 bash[25697]: cephadm 2024-09-06T14:10:54.569318+0000 mgr.smithi052.grtqlq (mgr.14209) 48 : cephadm [INF] Reconfiguring daemon alertmanager.smithi052 on smithi052 2024-09-06T14:10:55.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:55 smithi148 bash[25697]: cluster 2024-09-06T14:10:54.592968+0000 mgr.smithi052.grtqlq (mgr.14209) 49 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:55.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:55 smithi148 bash[25697]: cluster 2024-09-06T14:10:54.592968+0000 mgr.smithi052.grtqlq (mgr.14209) 49 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:57.922 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:57 smithi052 bash[19834]: cluster 2024-09-06T14:10:56.593465+0000 mgr.smithi052.grtqlq (mgr.14209) 50 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:57.922 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:57 smithi052 bash[19834]: cluster 2024-09-06T14:10:56.593465+0000 mgr.smithi052.grtqlq (mgr.14209) 50 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:57.922 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:57 smithi052 bash[19834]: audit 2024-09-06T14:10:57.355958+0000 mon.smithi052 (mon.0) 319 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:57.923 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:57 smithi052 bash[19834]: audit 2024-09-06T14:10:57.355958+0000 mon.smithi052 (mon.0) 319 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:57.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:57 smithi148 bash[25697]: cluster 2024-09-06T14:10:56.593465+0000 mgr.smithi052.grtqlq (mgr.14209) 50 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:57.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:57 smithi148 bash[25697]: cluster 2024-09-06T14:10:56.593465+0000 mgr.smithi052.grtqlq (mgr.14209) 50 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:57.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:57 smithi148 bash[25697]: audit 2024-09-06T14:10:57.355958+0000 mon.smithi052 (mon.0) 319 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:57.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:57 smithi148 bash[25697]: audit 2024-09-06T14:10:57.355958+0000 mon.smithi052 (mon.0) 319 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:10:58.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:58 smithi148 bash[25697]: audit 2024-09-06T14:10:57.348768+0000 mgr.smithi052.grtqlq (mgr.14209) 51 : audit [DBG] from='client.24099 -' entity='client.crash.smithi148' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:10:58.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:58 smithi148 bash[25697]: audit 2024-09-06T14:10:57.348768+0000 mgr.smithi052.grtqlq (mgr.14209) 51 : audit [DBG] from='client.24099 -' entity='client.crash.smithi148' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:10:58.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:58 smithi148 bash[25697]: cluster 2024-09-06T14:10:57.357351+0000 mgr.smithi052.grtqlq (mgr.14209) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:58.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:58 smithi148 bash[25697]: cluster 2024-09-06T14:10:57.357351+0000 mgr.smithi052.grtqlq (mgr.14209) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:58.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:58 smithi148 bash[25697]: cluster 2024-09-06T14:10:58.351777+0000 mon.smithi052 (mon.0) 320 : cluster [WRN] Health check failed: 1 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T14:10:58.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:10:58 smithi148 bash[25697]: cluster 2024-09-06T14:10:58.351777+0000 mon.smithi052 (mon.0) 320 : cluster [WRN] Health check failed: 1 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T14:10:58.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:58 smithi052 bash[19834]: audit 2024-09-06T14:10:57.348768+0000 mgr.smithi052.grtqlq (mgr.14209) 51 : audit [DBG] from='client.24099 -' entity='client.crash.smithi148' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:10:58.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:58 smithi052 bash[19834]: audit 2024-09-06T14:10:57.348768+0000 mgr.smithi052.grtqlq (mgr.14209) 51 : audit [DBG] from='client.24099 -' entity='client.crash.smithi148' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:10:58.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:58 smithi052 bash[19834]: cluster 2024-09-06T14:10:57.357351+0000 mgr.smithi052.grtqlq (mgr.14209) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:58.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:58 smithi052 bash[19834]: cluster 2024-09-06T14:10:57.357351+0000 mgr.smithi052.grtqlq (mgr.14209) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:10:58.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:58 smithi052 bash[19834]: cluster 2024-09-06T14:10:58.351777+0000 mon.smithi052 (mon.0) 320 : cluster [WRN] Health check failed: 1 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T14:10:58.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:10:58 smithi052 bash[19834]: cluster 2024-09-06T14:10:58.351777+0000 mon.smithi052 (mon.0) 320 : cluster [WRN] Health check failed: 1 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T14:10:59.312 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi148/config 2024-09-06T14:11:00.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:00 smithi052 bash[19834]: audit 2024-09-06T14:10:59.240749+0000 mon.smithi052 (mon.0) 321 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:00.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:00 smithi052 bash[19834]: audit 2024-09-06T14:10:59.240749+0000 mon.smithi052 (mon.0) 321 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:00.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:00 smithi052 bash[19834]: audit 2024-09-06T14:10:59.245563+0000 mon.smithi052 (mon.0) 322 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:00.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:00 smithi052 bash[19834]: audit 2024-09-06T14:10:59.245563+0000 mon.smithi052 (mon.0) 322 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:00.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:00 smithi052 bash[19834]: cephadm 2024-09-06T14:10:59.246651+0000 mgr.smithi052.grtqlq (mgr.14209) 53 : cephadm [INF] Reconfiguring grafana.smithi052 (dependencies changed)... 2024-09-06T14:11:00.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:00 smithi052 bash[19834]: cephadm 2024-09-06T14:10:59.246651+0000 mgr.smithi052.grtqlq (mgr.14209) 53 : cephadm [INF] Reconfiguring grafana.smithi052 (dependencies changed)... 2024-09-06T14:11:00.659 INFO:teuthology.orchestra.run.smithi148.stdout:Scheduled osd.all-available-devices update... 2024-09-06T14:11:00.672 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:00 smithi148 bash[25697]: audit 2024-09-06T14:10:59.240749+0000 mon.smithi052 (mon.0) 321 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:00.673 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:00 smithi148 bash[25697]: audit 2024-09-06T14:10:59.240749+0000 mon.smithi052 (mon.0) 321 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:00.673 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:00 smithi148 bash[25697]: audit 2024-09-06T14:10:59.245563+0000 mon.smithi052 (mon.0) 322 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:00.673 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:00 smithi148 bash[25697]: audit 2024-09-06T14:10:59.245563+0000 mon.smithi052 (mon.0) 322 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:00.673 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:00 smithi148 bash[25697]: cephadm 2024-09-06T14:10:59.246651+0000 mgr.smithi052.grtqlq (mgr.14209) 53 : cephadm [INF] Reconfiguring grafana.smithi052 (dependencies changed)... 2024-09-06T14:11:00.673 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:00 smithi148 bash[25697]: cephadm 2024-09-06T14:10:59.246651+0000 mgr.smithi052.grtqlq (mgr.14209) 53 : cephadm [INF] Reconfiguring grafana.smithi052 (dependencies changed)... 2024-09-06T14:11:01.295 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-06T14:11:01.296 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:11:01.496 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:01 smithi052 bash[19834]: cluster 2024-09-06T14:10:59.357765+0000 mgr.smithi052.grtqlq (mgr.14209) 54 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:01.497 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:01 smithi052 bash[19834]: cluster 2024-09-06T14:10:59.357765+0000 mgr.smithi052.grtqlq (mgr.14209) 54 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:01.497 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:01 smithi052 bash[19834]: cephadm 2024-09-06T14:10:59.657716+0000 mgr.smithi052.grtqlq (mgr.14209) 55 : cephadm [INF] Reconfiguring daemon grafana.smithi052 on smithi052 2024-09-06T14:11:01.497 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:01 smithi052 bash[19834]: cephadm 2024-09-06T14:10:59.657716+0000 mgr.smithi052.grtqlq (mgr.14209) 55 : cephadm [INF] Reconfiguring daemon grafana.smithi052 on smithi052 2024-09-06T14:11:01.497 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:01 smithi052 bash[19834]: audit 2024-09-06T14:11:00.662200+0000 mon.smithi052 (mon.0) 323 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:01.497 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:01 smithi052 bash[19834]: audit 2024-09-06T14:11:00.662200+0000 mon.smithi052 (mon.0) 323 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:01.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:01 smithi148 bash[25697]: cluster 2024-09-06T14:10:59.357765+0000 mgr.smithi052.grtqlq (mgr.14209) 54 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:01.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:01 smithi148 bash[25697]: cluster 2024-09-06T14:10:59.357765+0000 mgr.smithi052.grtqlq (mgr.14209) 54 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:01.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:01 smithi148 bash[25697]: cephadm 2024-09-06T14:10:59.657716+0000 mgr.smithi052.grtqlq (mgr.14209) 55 : cephadm [INF] Reconfiguring daemon grafana.smithi052 on smithi052 2024-09-06T14:11:01.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:01 smithi148 bash[25697]: cephadm 2024-09-06T14:10:59.657716+0000 mgr.smithi052.grtqlq (mgr.14209) 55 : cephadm [INF] Reconfiguring daemon grafana.smithi052 on smithi052 2024-09-06T14:11:01.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:01 smithi148 bash[25697]: audit 2024-09-06T14:11:00.662200+0000 mon.smithi052 (mon.0) 323 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:01.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:01 smithi148 bash[25697]: audit 2024-09-06T14:11:00.662200+0000 mon.smithi052 (mon.0) 323 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:02.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:02 smithi148 bash[25697]: audit 2024-09-06T14:11:00.648950+0000 mgr.smithi052.grtqlq (mgr.14209) 56 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:11:02.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:02 smithi148 bash[25697]: audit 2024-09-06T14:11:00.648950+0000 mgr.smithi052.grtqlq (mgr.14209) 56 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:11:02.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:02 smithi148 bash[25697]: cephadm 2024-09-06T14:11:00.653700+0000 mgr.smithi052.grtqlq (mgr.14209) 57 : cephadm [INF] Marking host: smithi052 for OSDSpec preview refresh. 2024-09-06T14:11:02.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:02 smithi148 bash[25697]: cephadm 2024-09-06T14:11:00.653700+0000 mgr.smithi052.grtqlq (mgr.14209) 57 : cephadm [INF] Marking host: smithi052 for OSDSpec preview refresh. 2024-09-06T14:11:02.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:02 smithi148 bash[25697]: cephadm 2024-09-06T14:11:00.653851+0000 mgr.smithi052.grtqlq (mgr.14209) 58 : cephadm [INF] Marking host: smithi148 for OSDSpec preview refresh. 2024-09-06T14:11:02.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:02 smithi148 bash[25697]: cephadm 2024-09-06T14:11:00.653851+0000 mgr.smithi052.grtqlq (mgr.14209) 58 : cephadm [INF] Marking host: smithi148 for OSDSpec preview refresh. 2024-09-06T14:11:02.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:02 smithi148 bash[25697]: cephadm 2024-09-06T14:11:00.654675+0000 mgr.smithi052.grtqlq (mgr.14209) 59 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-06T14:11:02.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:02 smithi148 bash[25697]: cephadm 2024-09-06T14:11:00.654675+0000 mgr.smithi052.grtqlq (mgr.14209) 59 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-06T14:11:02.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:02 smithi052 bash[19834]: audit 2024-09-06T14:11:00.648950+0000 mgr.smithi052.grtqlq (mgr.14209) 56 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:11:02.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:02 smithi052 bash[19834]: audit 2024-09-06T14:11:00.648950+0000 mgr.smithi052.grtqlq (mgr.14209) 56 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:11:02.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:02 smithi052 bash[19834]: cephadm 2024-09-06T14:11:00.653700+0000 mgr.smithi052.grtqlq (mgr.14209) 57 : cephadm [INF] Marking host: smithi052 for OSDSpec preview refresh. 2024-09-06T14:11:02.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:02 smithi052 bash[19834]: cephadm 2024-09-06T14:11:00.653700+0000 mgr.smithi052.grtqlq (mgr.14209) 57 : cephadm [INF] Marking host: smithi052 for OSDSpec preview refresh. 2024-09-06T14:11:02.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:02 smithi052 bash[19834]: cephadm 2024-09-06T14:11:00.653851+0000 mgr.smithi052.grtqlq (mgr.14209) 58 : cephadm [INF] Marking host: smithi148 for OSDSpec preview refresh. 2024-09-06T14:11:02.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:02 smithi052 bash[19834]: cephadm 2024-09-06T14:11:00.653851+0000 mgr.smithi052.grtqlq (mgr.14209) 58 : cephadm [INF] Marking host: smithi148 for OSDSpec preview refresh. 2024-09-06T14:11:02.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:02 smithi052 bash[19834]: cephadm 2024-09-06T14:11:00.654675+0000 mgr.smithi052.grtqlq (mgr.14209) 59 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-06T14:11:02.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:02 smithi052 bash[19834]: cephadm 2024-09-06T14:11:00.654675+0000 mgr.smithi052.grtqlq (mgr.14209) 59 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-06T14:11:03.503 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:03 smithi052 bash[19834]: cluster 2024-09-06T14:11:01.358174+0000 mgr.smithi052.grtqlq (mgr.14209) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:03.504 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:03 smithi052 bash[19834]: cluster 2024-09-06T14:11:01.358174+0000 mgr.smithi052.grtqlq (mgr.14209) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:03.609 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:03 smithi148 bash[25697]: cluster 2024-09-06T14:11:01.358174+0000 mgr.smithi052.grtqlq (mgr.14209) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:03.609 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:03 smithi148 bash[25697]: cluster 2024-09-06T14:11:01.358174+0000 mgr.smithi052.grtqlq (mgr.14209) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:05.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:05 smithi148 bash[25697]: cluster 2024-09-06T14:11:03.358667+0000 mgr.smithi052.grtqlq (mgr.14209) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:05.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:05 smithi148 bash[25697]: cluster 2024-09-06T14:11:03.358667+0000 mgr.smithi052.grtqlq (mgr.14209) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:05.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:05 smithi148 bash[25697]: audit 2024-09-06T14:11:04.795005+0000 mon.smithi052 (mon.0) 324 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:05.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:05 smithi148 bash[25697]: audit 2024-09-06T14:11:04.795005+0000 mon.smithi052 (mon.0) 324 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:05.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:05 smithi148 bash[25697]: audit 2024-09-06T14:11:04.799563+0000 mon.smithi052 (mon.0) 325 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:05.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:05 smithi148 bash[25697]: audit 2024-09-06T14:11:04.799563+0000 mon.smithi052 (mon.0) 325 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:05.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:05 smithi052 bash[19834]: cluster 2024-09-06T14:11:03.358667+0000 mgr.smithi052.grtqlq (mgr.14209) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:05.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:05 smithi052 bash[19834]: cluster 2024-09-06T14:11:03.358667+0000 mgr.smithi052.grtqlq (mgr.14209) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:05.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:05 smithi052 bash[19834]: audit 2024-09-06T14:11:04.795005+0000 mon.smithi052 (mon.0) 324 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:05.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:05 smithi052 bash[19834]: audit 2024-09-06T14:11:04.795005+0000 mon.smithi052 (mon.0) 324 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:05.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:05 smithi052 bash[19834]: audit 2024-09-06T14:11:04.799563+0000 mon.smithi052 (mon.0) 325 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:05.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:05 smithi052 bash[19834]: audit 2024-09-06T14:11:04.799563+0000 mon.smithi052 (mon.0) 325 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:06.069 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:11:06.349 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:06 smithi052 bash[19834]: cephadm 2024-09-06T14:11:04.800570+0000 mgr.smithi052.grtqlq (mgr.14209) 62 : cephadm [INF] Reconfiguring prometheus.smithi052 (dependencies changed)... 2024-09-06T14:11:06.349 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:06 smithi052 bash[19834]: cephadm 2024-09-06T14:11:04.800570+0000 mgr.smithi052.grtqlq (mgr.14209) 62 : cephadm [INF] Reconfiguring prometheus.smithi052 (dependencies changed)... 2024-09-06T14:11:06.349 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:06 smithi052 bash[19834]: cephadm 2024-09-06T14:11:05.062352+0000 mgr.smithi052.grtqlq (mgr.14209) 63 : cephadm [INF] Reconfiguring daemon prometheus.smithi052 on smithi052 2024-09-06T14:11:06.349 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:06 smithi052 bash[19834]: cephadm 2024-09-06T14:11:05.062352+0000 mgr.smithi052.grtqlq (mgr.14209) 63 : cephadm [INF] Reconfiguring daemon prometheus.smithi052 on smithi052 2024-09-06T14:11:06.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:06 smithi148 bash[25697]: cephadm 2024-09-06T14:11:04.800570+0000 mgr.smithi052.grtqlq (mgr.14209) 62 : cephadm [INF] Reconfiguring prometheus.smithi052 (dependencies changed)... 2024-09-06T14:11:06.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:06 smithi148 bash[25697]: cephadm 2024-09-06T14:11:04.800570+0000 mgr.smithi052.grtqlq (mgr.14209) 62 : cephadm [INF] Reconfiguring prometheus.smithi052 (dependencies changed)... 2024-09-06T14:11:06.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:06 smithi148 bash[25697]: cephadm 2024-09-06T14:11:05.062352+0000 mgr.smithi052.grtqlq (mgr.14209) 63 : cephadm [INF] Reconfiguring daemon prometheus.smithi052 on smithi052 2024-09-06T14:11:06.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:06 smithi148 bash[25697]: cephadm 2024-09-06T14:11:05.062352+0000 mgr.smithi052.grtqlq (mgr.14209) 63 : cephadm [INF] Reconfiguring daemon prometheus.smithi052 on smithi052 2024-09-06T14:11:07.551 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:07 smithi052 bash[19834]: cluster 2024-09-06T14:11:05.359131+0000 mgr.smithi052.grtqlq (mgr.14209) 64 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:07.551 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:07 smithi052 bash[19834]: cluster 2024-09-06T14:11:05.359131+0000 mgr.smithi052.grtqlq (mgr.14209) 64 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:07.551 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:07 smithi052 bash[19834]: audit 2024-09-06T14:11:07.080609+0000 mon.smithi052 (mon.0) 326 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:07.551 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:07 smithi052 bash[19834]: audit 2024-09-06T14:11:07.080609+0000 mon.smithi052 (mon.0) 326 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:07.551 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:07 smithi052 bash[19834]: audit 2024-09-06T14:11:07.082227+0000 mon.smithi052 (mon.0) 327 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:07.552 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:07 smithi052 bash[19834]: audit 2024-09-06T14:11:07.082227+0000 mon.smithi052 (mon.0) 327 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:07.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:07 smithi148 bash[25697]: cluster 2024-09-06T14:11:05.359131+0000 mgr.smithi052.grtqlq (mgr.14209) 64 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:07.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:07 smithi148 bash[25697]: cluster 2024-09-06T14:11:05.359131+0000 mgr.smithi052.grtqlq (mgr.14209) 64 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:07.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:07 smithi148 bash[25697]: audit 2024-09-06T14:11:07.080609+0000 mon.smithi052 (mon.0) 326 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:07.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:07 smithi148 bash[25697]: audit 2024-09-06T14:11:07.080609+0000 mon.smithi052 (mon.0) 326 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:07.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:07 smithi148 bash[25697]: audit 2024-09-06T14:11:07.082227+0000 mon.smithi052 (mon.0) 327 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:07.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:07 smithi148 bash[25697]: audit 2024-09-06T14:11:07.082227+0000 mon.smithi052 (mon.0) 327 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:08.258 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:11:08.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:08 smithi052 bash[19834]: audit 2024-09-06T14:11:08.261992+0000 mon.smithi052 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.52:0/640232623' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:08.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:08 smithi052 bash[19834]: audit 2024-09-06T14:11:08.261992+0000 mon.smithi052 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.52:0/640232623' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:08.609 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:08 smithi148 bash[25697]: audit 2024-09-06T14:11:08.261992+0000 mon.smithi052 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.52:0/640232623' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:08.610 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:08 smithi148 bash[25697]: audit 2024-09-06T14:11:08.261992+0000 mon.smithi052 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.52:0/640232623' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:09.270 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:11:09.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:09 smithi052 bash[19834]: cluster 2024-09-06T14:11:07.359585+0000 mgr.smithi052.grtqlq (mgr.14209) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:09.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:09 smithi052 bash[19834]: cluster 2024-09-06T14:11:07.359585+0000 mgr.smithi052.grtqlq (mgr.14209) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:09.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:09 smithi148 bash[25697]: cluster 2024-09-06T14:11:07.359585+0000 mgr.smithi052.grtqlq (mgr.14209) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:09.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:09 smithi148 bash[25697]: cluster 2024-09-06T14:11:07.359585+0000 mgr.smithi052.grtqlq (mgr.14209) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:10.271 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:11:11.552 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:11 smithi052 bash[19834]: cluster 2024-09-06T14:11:09.360079+0000 mgr.smithi052.grtqlq (mgr.14209) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:11.553 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:11 smithi052 bash[19834]: cluster 2024-09-06T14:11:09.360079+0000 mgr.smithi052.grtqlq (mgr.14209) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:11.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:11 smithi148 bash[25697]: cluster 2024-09-06T14:11:09.360079+0000 mgr.smithi052.grtqlq (mgr.14209) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:11.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:11 smithi148 bash[25697]: cluster 2024-09-06T14:11:09.360079+0000 mgr.smithi052.grtqlq (mgr.14209) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:12.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: cluster 2024-09-06T14:11:11.360571+0000 mgr.smithi052.grtqlq (mgr.14209) 67 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:12.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: cluster 2024-09-06T14:11:11.360571+0000 mgr.smithi052.grtqlq (mgr.14209) 67 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:12.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: audit 2024-09-06T14:11:11.529264+0000 mon.smithi052 (mon.0) 329 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:12.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: audit 2024-09-06T14:11:11.529264+0000 mon.smithi052 (mon.0) 329 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:12.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: audit 2024-09-06T14:11:11.533835+0000 mon.smithi052 (mon.0) 330 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:12.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: audit 2024-09-06T14:11:11.533835+0000 mon.smithi052 (mon.0) 330 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:12.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: cephadm 2024-09-06T14:11:11.534720+0000 mgr.smithi052.grtqlq (mgr.14209) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi148 (monmap changed)... 2024-09-06T14:11:12.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: cephadm 2024-09-06T14:11:11.534720+0000 mgr.smithi052.grtqlq (mgr.14209) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi148 (monmap changed)... 2024-09-06T14:11:12.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: audit 2024-09-06T14:11:11.535065+0000 mon.smithi052 (mon.0) 331 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T14:11:12.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: audit 2024-09-06T14:11:11.535065+0000 mon.smithi052 (mon.0) 331 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T14:11:12.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: audit 2024-09-06T14:11:11.535934+0000 mon.smithi052 (mon.0) 332 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:12.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: audit 2024-09-06T14:11:11.535934+0000 mon.smithi052 (mon.0) 332 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:12.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: cephadm 2024-09-06T14:11:11.536766+0000 mgr.smithi052.grtqlq (mgr.14209) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi148 on smithi148 2024-09-06T14:11:12.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:12 smithi148 bash[25697]: cephadm 2024-09-06T14:11:11.536766+0000 mgr.smithi052.grtqlq (mgr.14209) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi148 on smithi148 2024-09-06T14:11:12.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: cluster 2024-09-06T14:11:11.360571+0000 mgr.smithi052.grtqlq (mgr.14209) 67 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:12.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: cluster 2024-09-06T14:11:11.360571+0000 mgr.smithi052.grtqlq (mgr.14209) 67 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:12.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: audit 2024-09-06T14:11:11.529264+0000 mon.smithi052 (mon.0) 329 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:12.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: audit 2024-09-06T14:11:11.529264+0000 mon.smithi052 (mon.0) 329 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:12.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: audit 2024-09-06T14:11:11.533835+0000 mon.smithi052 (mon.0) 330 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:12.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: audit 2024-09-06T14:11:11.533835+0000 mon.smithi052 (mon.0) 330 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:12.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: cephadm 2024-09-06T14:11:11.534720+0000 mgr.smithi052.grtqlq (mgr.14209) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi148 (monmap changed)... 2024-09-06T14:11:12.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: cephadm 2024-09-06T14:11:11.534720+0000 mgr.smithi052.grtqlq (mgr.14209) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi148 (monmap changed)... 2024-09-06T14:11:12.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: audit 2024-09-06T14:11:11.535065+0000 mon.smithi052 (mon.0) 331 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T14:11:12.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: audit 2024-09-06T14:11:11.535065+0000 mon.smithi052 (mon.0) 331 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi148", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T14:11:12.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: audit 2024-09-06T14:11:11.535934+0000 mon.smithi052 (mon.0) 332 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:12.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: audit 2024-09-06T14:11:11.535934+0000 mon.smithi052 (mon.0) 332 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:12.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: cephadm 2024-09-06T14:11:11.536766+0000 mgr.smithi052.grtqlq (mgr.14209) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi148 on smithi148 2024-09-06T14:11:12.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:12 smithi052 bash[19834]: cephadm 2024-09-06T14:11:11.536766+0000 mgr.smithi052.grtqlq (mgr.14209) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi148 on smithi148 2024-09-06T14:11:15.047 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: cluster 2024-09-06T14:11:13.361014+0000 mgr.smithi052.grtqlq (mgr.14209) 70 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: cluster 2024-09-06T14:11:13.361014+0000 mgr.smithi052.grtqlq (mgr.14209) 70 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: audit 2024-09-06T14:11:13.729087+0000 mon.smithi052 (mon.0) 333 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: audit 2024-09-06T14:11:13.729087+0000 mon.smithi052 (mon.0) 333 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: audit 2024-09-06T14:11:13.737782+0000 mon.smithi052 (mon.0) 334 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: audit 2024-09-06T14:11:13.737782+0000 mon.smithi052 (mon.0) 334 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: cephadm 2024-09-06T14:11:13.739396+0000 mgr.smithi052.grtqlq (mgr.14209) 71 : cephadm [INF] Reconfiguring crash.smithi148 (monmap changed)... 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: cephadm 2024-09-06T14:11:13.739396+0000 mgr.smithi052.grtqlq (mgr.14209) 71 : cephadm [INF] Reconfiguring crash.smithi148 (monmap changed)... 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: audit 2024-09-06T14:11:13.739973+0000 mon.smithi052 (mon.0) 335 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: audit 2024-09-06T14:11:13.739973+0000 mon.smithi052 (mon.0) 335 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:11:15.136 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: audit 2024-09-06T14:11:13.741875+0000 mon.smithi052 (mon.0) 336 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:15.137 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: audit 2024-09-06T14:11:13.741875+0000 mon.smithi052 (mon.0) 336 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:15.137 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: cephadm 2024-09-06T14:11:13.743531+0000 mgr.smithi052.grtqlq (mgr.14209) 72 : cephadm [INF] Reconfiguring daemon crash.smithi148 on smithi148 2024-09-06T14:11:15.137 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:14 smithi052 bash[19834]: cephadm 2024-09-06T14:11:13.743531+0000 mgr.smithi052.grtqlq (mgr.14209) 72 : cephadm [INF] Reconfiguring daemon crash.smithi148 on smithi148 2024-09-06T14:11:15.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: cluster 2024-09-06T14:11:13.361014+0000 mgr.smithi052.grtqlq (mgr.14209) 70 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: cluster 2024-09-06T14:11:13.361014+0000 mgr.smithi052.grtqlq (mgr.14209) 70 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: audit 2024-09-06T14:11:13.729087+0000 mon.smithi052 (mon.0) 333 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: audit 2024-09-06T14:11:13.729087+0000 mon.smithi052 (mon.0) 333 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: audit 2024-09-06T14:11:13.737782+0000 mon.smithi052 (mon.0) 334 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: audit 2024-09-06T14:11:13.737782+0000 mon.smithi052 (mon.0) 334 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: cephadm 2024-09-06T14:11:13.739396+0000 mgr.smithi052.grtqlq (mgr.14209) 71 : cephadm [INF] Reconfiguring crash.smithi148 (monmap changed)... 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: cephadm 2024-09-06T14:11:13.739396+0000 mgr.smithi052.grtqlq (mgr.14209) 71 : cephadm [INF] Reconfiguring crash.smithi148 (monmap changed)... 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: audit 2024-09-06T14:11:13.739973+0000 mon.smithi052 (mon.0) 335 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: audit 2024-09-06T14:11:13.739973+0000 mon.smithi052 (mon.0) 335 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi148", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: audit 2024-09-06T14:11:13.741875+0000 mon.smithi052 (mon.0) 336 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: audit 2024-09-06T14:11:13.741875+0000 mon.smithi052 (mon.0) 336 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:15.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: cephadm 2024-09-06T14:11:13.743531+0000 mgr.smithi052.grtqlq (mgr.14209) 72 : cephadm [INF] Reconfiguring daemon crash.smithi148 on smithi148 2024-09-06T14:11:15.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:14 smithi148 bash[25697]: cephadm 2024-09-06T14:11:13.743531+0000 mgr.smithi052.grtqlq (mgr.14209) 72 : cephadm [INF] Reconfiguring daemon crash.smithi148 on smithi148 2024-09-06T14:11:16.448 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:11:17.045 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:11:17.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: cluster 2024-09-06T14:11:15.361471+0000 mgr.smithi052.grtqlq (mgr.14209) 73 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:17.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: cluster 2024-09-06T14:11:15.361471+0000 mgr.smithi052.grtqlq (mgr.14209) 73 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:17.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.067127+0000 mon.smithi052 (mon.0) 337 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:17.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.067127+0000 mon.smithi052 (mon.0) 337 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.076055+0000 mon.smithi052 (mon.0) 338 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.076055+0000 mon.smithi052 (mon.0) 338 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: cephadm 2024-09-06T14:11:16.078229+0000 mgr.smithi052.grtqlq (mgr.14209) 74 : cephadm [INF] Reconfiguring mgr.smithi148.bctpwo (monmap changed)... 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: cephadm 2024-09-06T14:11:16.078229+0000 mgr.smithi052.grtqlq (mgr.14209) 74 : cephadm [INF] Reconfiguring mgr.smithi148.bctpwo (monmap changed)... 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.078979+0000 mon.smithi052 (mon.0) 339 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.078979+0000 mon.smithi052 (mon.0) 339 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.080991+0000 mon.smithi052 (mon.0) 340 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.080991+0000 mon.smithi052 (mon.0) 340 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.082633+0000 mon.smithi052 (mon.0) 341 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.082633+0000 mon.smithi052 (mon.0) 341 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:17.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: cephadm 2024-09-06T14:11:16.084581+0000 mgr.smithi052.grtqlq (mgr.14209) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi148.bctpwo on smithi148 2024-09-06T14:11:17.438 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: cephadm 2024-09-06T14:11:16.084581+0000 mgr.smithi052.grtqlq (mgr.14209) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi148.bctpwo on smithi148 2024-09-06T14:11:17.438 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.451941+0000 mon.smithi052 (mon.0) 342 : audit [DBG] from='client.? 172.21.15.52:0/3456912186' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:17.438 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:17 smithi148 bash[25697]: audit 2024-09-06T14:11:16.451941+0000 mon.smithi052 (mon.0) 342 : audit [DBG] from='client.? 172.21.15.52:0/3456912186' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:17.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: cluster 2024-09-06T14:11:15.361471+0000 mgr.smithi052.grtqlq (mgr.14209) 73 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:17.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: cluster 2024-09-06T14:11:15.361471+0000 mgr.smithi052.grtqlq (mgr.14209) 73 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.067127+0000 mon.smithi052 (mon.0) 337 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.067127+0000 mon.smithi052 (mon.0) 337 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.076055+0000 mon.smithi052 (mon.0) 338 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.076055+0000 mon.smithi052 (mon.0) 338 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: cephadm 2024-09-06T14:11:16.078229+0000 mgr.smithi052.grtqlq (mgr.14209) 74 : cephadm [INF] Reconfiguring mgr.smithi148.bctpwo (monmap changed)... 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: cephadm 2024-09-06T14:11:16.078229+0000 mgr.smithi052.grtqlq (mgr.14209) 74 : cephadm [INF] Reconfiguring mgr.smithi148.bctpwo (monmap changed)... 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.078979+0000 mon.smithi052 (mon.0) 339 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.078979+0000 mon.smithi052 (mon.0) 339 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi148.bctpwo", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.080991+0000 mon.smithi052 (mon.0) 340 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.080991+0000 mon.smithi052 (mon.0) 340 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.082633+0000 mon.smithi052 (mon.0) 341 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:17.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.082633+0000 mon.smithi052 (mon.0) 341 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:17.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: cephadm 2024-09-06T14:11:16.084581+0000 mgr.smithi052.grtqlq (mgr.14209) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi148.bctpwo on smithi148 2024-09-06T14:11:17.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: cephadm 2024-09-06T14:11:16.084581+0000 mgr.smithi052.grtqlq (mgr.14209) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi148.bctpwo on smithi148 2024-09-06T14:11:17.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.451941+0000 mon.smithi052 (mon.0) 342 : audit [DBG] from='client.? 172.21.15.52:0/3456912186' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:17.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:17 smithi052 bash[19834]: audit 2024-09-06T14:11:16.451941+0000 mon.smithi052 (mon.0) 342 : audit [DBG] from='client.? 172.21.15.52:0/3456912186' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:18.047 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:11:19.684 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: cluster 2024-09-06T14:11:17.361923+0000 mgr.smithi052.grtqlq (mgr.14209) 76 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: cluster 2024-09-06T14:11:17.361923+0000 mgr.smithi052.grtqlq (mgr.14209) 76 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: audit 2024-09-06T14:11:18.242715+0000 mon.smithi052 (mon.0) 343 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: audit 2024-09-06T14:11:18.242715+0000 mon.smithi052 (mon.0) 343 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: audit 2024-09-06T14:11:18.250920+0000 mon.smithi052 (mon.0) 344 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: audit 2024-09-06T14:11:18.250920+0000 mon.smithi052 (mon.0) 344 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: cephadm 2024-09-06T14:11:18.252326+0000 mgr.smithi052.grtqlq (mgr.14209) 77 : cephadm [INF] Reconfiguring mon.smithi148 (monmap changed)... 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: cephadm 2024-09-06T14:11:18.252326+0000 mgr.smithi052.grtqlq (mgr.14209) 77 : cephadm [INF] Reconfiguring mon.smithi148 (monmap changed)... 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: audit 2024-09-06T14:11:18.252985+0000 mon.smithi052 (mon.0) 345 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: audit 2024-09-06T14:11:18.252985+0000 mon.smithi052 (mon.0) 345 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: audit 2024-09-06T14:11:18.253924+0000 mon.smithi052 (mon.0) 346 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: audit 2024-09-06T14:11:18.253924+0000 mon.smithi052 (mon.0) 346 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T14:11:19.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: audit 2024-09-06T14:11:18.254700+0000 mon.smithi052 (mon.0) 347 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:19.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: audit 2024-09-06T14:11:18.254700+0000 mon.smithi052 (mon.0) 347 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:19.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: cephadm 2024-09-06T14:11:18.255696+0000 mgr.smithi052.grtqlq (mgr.14209) 78 : cephadm [INF] Reconfiguring daemon mon.smithi148 on smithi148 2024-09-06T14:11:19.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:19 smithi148 bash[25697]: cephadm 2024-09-06T14:11:18.255696+0000 mgr.smithi052.grtqlq (mgr.14209) 78 : cephadm [INF] Reconfiguring daemon mon.smithi148 on smithi148 2024-09-06T14:11:19.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: cluster 2024-09-06T14:11:17.361923+0000 mgr.smithi052.grtqlq (mgr.14209) 76 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:19.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: cluster 2024-09-06T14:11:17.361923+0000 mgr.smithi052.grtqlq (mgr.14209) 76 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:19.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: audit 2024-09-06T14:11:18.242715+0000 mon.smithi052 (mon.0) 343 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:19.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: audit 2024-09-06T14:11:18.242715+0000 mon.smithi052 (mon.0) 343 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: audit 2024-09-06T14:11:18.250920+0000 mon.smithi052 (mon.0) 344 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: audit 2024-09-06T14:11:18.250920+0000 mon.smithi052 (mon.0) 344 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: cephadm 2024-09-06T14:11:18.252326+0000 mgr.smithi052.grtqlq (mgr.14209) 77 : cephadm [INF] Reconfiguring mon.smithi148 (monmap changed)... 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: cephadm 2024-09-06T14:11:18.252326+0000 mgr.smithi052.grtqlq (mgr.14209) 77 : cephadm [INF] Reconfiguring mon.smithi148 (monmap changed)... 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: audit 2024-09-06T14:11:18.252985+0000 mon.smithi052 (mon.0) 345 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: audit 2024-09-06T14:11:18.252985+0000 mon.smithi052 (mon.0) 345 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: audit 2024-09-06T14:11:18.253924+0000 mon.smithi052 (mon.0) 346 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: audit 2024-09-06T14:11:18.253924+0000 mon.smithi052 (mon.0) 346 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: audit 2024-09-06T14:11:18.254700+0000 mon.smithi052 (mon.0) 347 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: audit 2024-09-06T14:11:18.254700+0000 mon.smithi052 (mon.0) 347 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: cephadm 2024-09-06T14:11:18.255696+0000 mgr.smithi052.grtqlq (mgr.14209) 78 : cephadm [INF] Reconfiguring daemon mon.smithi148 on smithi148 2024-09-06T14:11:19.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:19 smithi052 bash[19834]: cephadm 2024-09-06T14:11:18.255696+0000 mgr.smithi052.grtqlq (mgr.14209) 78 : cephadm [INF] Reconfiguring daemon mon.smithi148 on smithi148 2024-09-06T14:11:21.532 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: cluster 2024-09-06T14:11:19.362522+0000 mgr.smithi052.grtqlq (mgr.14209) 79 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:21.532 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: cluster 2024-09-06T14:11:19.362522+0000 mgr.smithi052.grtqlq (mgr.14209) 79 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:21.532 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.398742+0000 mon.smithi052 (mon.0) 348 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.532 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.398742+0000 mon.smithi052 (mon.0) 348 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.407288+0000 mon.smithi052 (mon.0) 349 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.407288+0000 mon.smithi052 (mon.0) 349 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.415922+0000 mon.smithi052 (mon.0) 350 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.415922+0000 mon.smithi052 (mon.0) 350 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.419346+0000 mon.smithi052 (mon.0) 351 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi052.front.sepia.ceph.com:9093"} : dispatch 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.419346+0000 mon.smithi052 (mon.0) 351 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi052.front.sepia.ceph.com:9093"} : dispatch 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.427169+0000 mon.smithi052 (mon.0) 352 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.427169+0000 mon.smithi052 (mon.0) 352 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.442004+0000 mon.smithi052 (mon.0) 353 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.442004+0000 mon.smithi052 (mon.0) 353 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-06T14:11:21.533 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.454182+0000 mon.smithi052 (mon.0) 354 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi052.front.sepia.ceph.com:3000"} : dispatch 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.454182+0000 mon.smithi052 (mon.0) 354 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi052.front.sepia.ceph.com:3000"} : dispatch 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.463344+0000 mon.smithi052 (mon.0) 355 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.463344+0000 mon.smithi052 (mon.0) 355 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.482629+0000 mon.smithi052 (mon.0) 356 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.482629+0000 mon.smithi052 (mon.0) 356 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.490287+0000 mon.smithi052 (mon.0) 357 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi052.front.sepia.ceph.com:9095"} : dispatch 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.490287+0000 mon.smithi052 (mon.0) 357 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi052.front.sepia.ceph.com:9095"} : dispatch 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.498903+0000 mon.smithi052 (mon.0) 358 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.498903+0000 mon.smithi052 (mon.0) 358 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.807612+0000 mon.smithi052 (mon.0) 359 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.807612+0000 mon.smithi052 (mon.0) 359 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.923493+0000 mon.smithi052 (mon.0) 360 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.923493+0000 mon.smithi052 (mon.0) 360 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:21.534 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.981358+0000 mon.smithi052 (mon.0) 361 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:11:21.535 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:21 smithi052 bash[19834]: audit 2024-09-06T14:11:20.981358+0000 mon.smithi052 (mon.0) 361 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:11:21.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: cluster 2024-09-06T14:11:19.362522+0000 mgr.smithi052.grtqlq (mgr.14209) 79 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:21.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: cluster 2024-09-06T14:11:19.362522+0000 mgr.smithi052.grtqlq (mgr.14209) 79 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:21.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.398742+0000 mon.smithi052 (mon.0) 348 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.398742+0000 mon.smithi052 (mon.0) 348 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.407288+0000 mon.smithi052 (mon.0) 349 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.407288+0000 mon.smithi052 (mon.0) 349 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.415922+0000 mon.smithi052 (mon.0) 350 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.415922+0000 mon.smithi052 (mon.0) 350 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.419346+0000 mon.smithi052 (mon.0) 351 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi052.front.sepia.ceph.com:9093"} : dispatch 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.419346+0000 mon.smithi052 (mon.0) 351 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi052.front.sepia.ceph.com:9093"} : dispatch 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.427169+0000 mon.smithi052 (mon.0) 352 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.427169+0000 mon.smithi052 (mon.0) 352 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.442004+0000 mon.smithi052 (mon.0) 353 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.442004+0000 mon.smithi052 (mon.0) 353 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.454182+0000 mon.smithi052 (mon.0) 354 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi052.front.sepia.ceph.com:3000"} : dispatch 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.454182+0000 mon.smithi052 (mon.0) 354 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi052.front.sepia.ceph.com:3000"} : dispatch 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.463344+0000 mon.smithi052 (mon.0) 355 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.463344+0000 mon.smithi052 (mon.0) 355 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.482629+0000 mon.smithi052 (mon.0) 356 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.482629+0000 mon.smithi052 (mon.0) 356 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.490287+0000 mon.smithi052 (mon.0) 357 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi052.front.sepia.ceph.com:9095"} : dispatch 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.490287+0000 mon.smithi052 (mon.0) 357 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi052.front.sepia.ceph.com:9095"} : dispatch 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.498903+0000 mon.smithi052 (mon.0) 358 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.498903+0000 mon.smithi052 (mon.0) 358 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.807612+0000 mon.smithi052 (mon.0) 359 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.807612+0000 mon.smithi052 (mon.0) 359 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.923493+0000 mon.smithi052 (mon.0) 360 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.923493+0000 mon.smithi052 (mon.0) 360 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.981358+0000 mon.smithi052 (mon.0) 361 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:11:21.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:21 smithi148 bash[25697]: audit 2024-09-06T14:11:20.981358+0000 mon.smithi052 (mon.0) 361 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:11:22.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.416830+0000 mgr.smithi052.grtqlq (mgr.14209) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-06T14:11:22.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.416830+0000 mgr.smithi052.grtqlq (mgr.14209) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-06T14:11:22.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.420194+0000 mgr.smithi052.grtqlq (mgr.14209) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi052.front.sepia.ceph.com:9093"}]: dispatch 2024-09-06T14:11:22.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.420194+0000 mgr.smithi052.grtqlq (mgr.14209) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi052.front.sepia.ceph.com:9093"}]: dispatch 2024-09-06T14:11:22.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.442850+0000 mgr.smithi052.grtqlq (mgr.14209) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.442850+0000 mgr.smithi052.grtqlq (mgr.14209) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.455059+0000 mgr.smithi052.grtqlq (mgr.14209) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi052.front.sepia.ceph.com:3000"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.455059+0000 mgr.smithi052.grtqlq (mgr.14209) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi052.front.sepia.ceph.com:3000"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.483656+0000 mgr.smithi052.grtqlq (mgr.14209) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.483656+0000 mgr.smithi052.grtqlq (mgr.14209) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.491478+0000 mgr.smithi052.grtqlq (mgr.14209) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi052.front.sepia.ceph.com:9095"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.491478+0000 mgr.smithi052.grtqlq (mgr.14209) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi052.front.sepia.ceph.com:9095"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.808306+0000 mgr.smithi052.grtqlq (mgr.14209) 86 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.808306+0000 mgr.smithi052.grtqlq (mgr.14209) 86 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.925115+0000 mgr.smithi052.grtqlq (mgr.14209) 87 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:20.925115+0000 mgr.smithi052.grtqlq (mgr.14209) 87 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:21.537101+0000 mon.smithi052 (mon.0) 362 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:21.537101+0000 mon.smithi052 (mon.0) 362 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:22.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:22.075158+0000 mon.smithi052 (mon.0) 363 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:22.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:22 smithi148 bash[25697]: audit 2024-09-06T14:11:22.075158+0000 mon.smithi052 (mon.0) 363 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:22.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.416830+0000 mgr.smithi052.grtqlq (mgr.14209) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-06T14:11:22.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.416830+0000 mgr.smithi052.grtqlq (mgr.14209) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.420194+0000 mgr.smithi052.grtqlq (mgr.14209) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi052.front.sepia.ceph.com:9093"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.420194+0000 mgr.smithi052.grtqlq (mgr.14209) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi052.front.sepia.ceph.com:9093"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.442850+0000 mgr.smithi052.grtqlq (mgr.14209) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.442850+0000 mgr.smithi052.grtqlq (mgr.14209) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.455059+0000 mgr.smithi052.grtqlq (mgr.14209) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi052.front.sepia.ceph.com:3000"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.455059+0000 mgr.smithi052.grtqlq (mgr.14209) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi052.front.sepia.ceph.com:3000"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.483656+0000 mgr.smithi052.grtqlq (mgr.14209) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.483656+0000 mgr.smithi052.grtqlq (mgr.14209) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.491478+0000 mgr.smithi052.grtqlq (mgr.14209) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi052.front.sepia.ceph.com:9095"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.491478+0000 mgr.smithi052.grtqlq (mgr.14209) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi052.front.sepia.ceph.com:9095"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.808306+0000 mgr.smithi052.grtqlq (mgr.14209) 86 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.808306+0000 mgr.smithi052.grtqlq (mgr.14209) 86 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:22.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.925115+0000 mgr.smithi052.grtqlq (mgr.14209) 87 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:22.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:20.925115+0000 mgr.smithi052.grtqlq (mgr.14209) 87 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:22.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:21.537101+0000 mon.smithi052 (mon.0) 362 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:22.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:21.537101+0000 mon.smithi052 (mon.0) 362 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:11:22.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:22.075158+0000 mon.smithi052 (mon.0) 363 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:22.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:22 smithi052 bash[19834]: audit 2024-09-06T14:11:22.075158+0000 mon.smithi052 (mon.0) 363 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:22.839 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:11:23.610 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:23 smithi148 bash[25697]: cluster 2024-09-06T14:11:21.363021+0000 mgr.smithi052.grtqlq (mgr.14209) 88 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:23.611 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:23 smithi148 bash[25697]: cluster 2024-09-06T14:11:21.363021+0000 mgr.smithi052.grtqlq (mgr.14209) 88 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:23.611 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:23 smithi148 bash[25697]: audit 2024-09-06T14:11:21.537817+0000 mgr.smithi052.grtqlq (mgr.14209) 89 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:23.611 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:23 smithi148 bash[25697]: audit 2024-09-06T14:11:21.537817+0000 mgr.smithi052.grtqlq (mgr.14209) 89 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:23.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:23 smithi052 bash[19834]: cluster 2024-09-06T14:11:21.363021+0000 mgr.smithi052.grtqlq (mgr.14209) 88 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:23.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:23 smithi052 bash[19834]: cluster 2024-09-06T14:11:21.363021+0000 mgr.smithi052.grtqlq (mgr.14209) 88 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:23.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:23 smithi052 bash[19834]: audit 2024-09-06T14:11:21.537817+0000 mgr.smithi052.grtqlq (mgr.14209) 89 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:23.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:23 smithi052 bash[19834]: audit 2024-09-06T14:11:21.537817+0000 mgr.smithi052.grtqlq (mgr.14209) 89 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T14:11:24.327 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:11:24.962 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:11:25.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:25 smithi148 bash[25697]: cluster 2024-09-06T14:11:23.363515+0000 mgr.smithi052.grtqlq (mgr.14209) 90 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:25.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:25 smithi148 bash[25697]: cluster 2024-09-06T14:11:23.363515+0000 mgr.smithi052.grtqlq (mgr.14209) 90 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:25.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:25 smithi148 bash[25697]: audit 2024-09-06T14:11:24.331284+0000 mon.smithi052 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.52:0/4100089126' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:25.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:25 smithi148 bash[25697]: audit 2024-09-06T14:11:24.331284+0000 mon.smithi052 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.52:0/4100089126' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:25.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:25 smithi052 bash[19834]: cluster 2024-09-06T14:11:23.363515+0000 mgr.smithi052.grtqlq (mgr.14209) 90 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:25.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:25 smithi052 bash[19834]: cluster 2024-09-06T14:11:23.363515+0000 mgr.smithi052.grtqlq (mgr.14209) 90 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:25.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:25 smithi052 bash[19834]: audit 2024-09-06T14:11:24.331284+0000 mon.smithi052 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.52:0/4100089126' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:25.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:25 smithi052 bash[19834]: audit 2024-09-06T14:11:24.331284+0000 mon.smithi052 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.52:0/4100089126' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:25.964 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:11:27.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:27 smithi148 bash[25697]: cluster 2024-09-06T14:11:25.363970+0000 mgr.smithi052.grtqlq (mgr.14209) 91 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:27.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:27 smithi148 bash[25697]: cluster 2024-09-06T14:11:25.363970+0000 mgr.smithi052.grtqlq (mgr.14209) 91 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:27.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:27 smithi148 bash[25697]: audit 2024-09-06T14:11:26.391742+0000 mon.smithi052 (mon.0) 365 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:27 smithi148 bash[25697]: audit 2024-09-06T14:11:26.391742+0000 mon.smithi052 (mon.0) 365 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:27 smithi148 bash[25697]: audit 2024-09-06T14:11:26.399956+0000 mon.smithi052 (mon.0) 366 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:27 smithi148 bash[25697]: audit 2024-09-06T14:11:26.399956+0000 mon.smithi052 (mon.0) 366 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:27 smithi148 bash[25697]: audit 2024-09-06T14:11:27.033311+0000 mon.smithi052 (mon.0) 367 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:27 smithi148 bash[25697]: audit 2024-09-06T14:11:27.033311+0000 mon.smithi052 (mon.0) 367 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:27 smithi148 bash[25697]: audit 2024-09-06T14:11:27.039677+0000 mon.smithi052 (mon.0) 368 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:27 smithi148 bash[25697]: audit 2024-09-06T14:11:27.039677+0000 mon.smithi052 (mon.0) 368 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:27 smithi052 bash[19834]: cluster 2024-09-06T14:11:25.363970+0000 mgr.smithi052.grtqlq (mgr.14209) 91 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:27.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:27 smithi052 bash[19834]: cluster 2024-09-06T14:11:25.363970+0000 mgr.smithi052.grtqlq (mgr.14209) 91 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:27.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:27 smithi052 bash[19834]: audit 2024-09-06T14:11:26.391742+0000 mon.smithi052 (mon.0) 365 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:27 smithi052 bash[19834]: audit 2024-09-06T14:11:26.391742+0000 mon.smithi052 (mon.0) 365 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:27 smithi052 bash[19834]: audit 2024-09-06T14:11:26.399956+0000 mon.smithi052 (mon.0) 366 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:27 smithi052 bash[19834]: audit 2024-09-06T14:11:26.399956+0000 mon.smithi052 (mon.0) 366 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:27 smithi052 bash[19834]: audit 2024-09-06T14:11:27.033311+0000 mon.smithi052 (mon.0) 367 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:27 smithi052 bash[19834]: audit 2024-09-06T14:11:27.033311+0000 mon.smithi052 (mon.0) 367 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:27 smithi052 bash[19834]: audit 2024-09-06T14:11:27.039677+0000 mon.smithi052 (mon.0) 368 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:27.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:27 smithi052 bash[19834]: audit 2024-09-06T14:11:27.039677+0000 mon.smithi052 (mon.0) 368 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.611 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.264150+0000 mon.smithi052 (mon.0) 369 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.264150+0000 mon.smithi052 (mon.0) 369 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.278066+0000 mon.smithi052 (mon.0) 370 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.278066+0000 mon.smithi052 (mon.0) 370 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.901077+0000 mon.smithi052 (mon.0) 371 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.901077+0000 mon.smithi052 (mon.0) 371 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.909327+0000 mon.smithi052 (mon.0) 372 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.909327+0000 mon.smithi052 (mon.0) 372 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.911245+0000 mon.smithi052 (mon.0) 373 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.911245+0000 mon.smithi052 (mon.0) 373 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.912293+0000 mon.smithi052 (mon.0) 374 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.912293+0000 mon.smithi052 (mon.0) 374 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.919869+0000 mon.smithi052 (mon.0) 375 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.919869+0000 mon.smithi052 (mon.0) 375 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.924385+0000 mon.smithi052 (mon.0) 376 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.924385+0000 mon.smithi052 (mon.0) 376 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.929435+0000 mon.smithi052 (mon.0) 377 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.929435+0000 mon.smithi052 (mon.0) 377 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.930510+0000 mon.smithi052 (mon.0) 378 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.930510+0000 mon.smithi052 (mon.0) 378 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.934360+0000 mon.smithi052 (mon.0) 379 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.934360+0000 mon.smithi052 (mon.0) 379 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:11:28.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.935408+0000 mon.smithi052 (mon.0) 380 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.614 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:28 smithi148 bash[25697]: audit 2024-09-06T14:11:27.935408+0000 mon.smithi052 (mon.0) 380 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.264150+0000 mon.smithi052 (mon.0) 369 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.264150+0000 mon.smithi052 (mon.0) 369 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.278066+0000 mon.smithi052 (mon.0) 370 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.278066+0000 mon.smithi052 (mon.0) 370 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.901077+0000 mon.smithi052 (mon.0) 371 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.901077+0000 mon.smithi052 (mon.0) 371 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.909327+0000 mon.smithi052 (mon.0) 372 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.909327+0000 mon.smithi052 (mon.0) 372 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.911245+0000 mon.smithi052 (mon.0) 373 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.911245+0000 mon.smithi052 (mon.0) 373 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.912293+0000 mon.smithi052 (mon.0) 374 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:11:28.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.912293+0000 mon.smithi052 (mon.0) 374 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.919869+0000 mon.smithi052 (mon.0) 375 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.919869+0000 mon.smithi052 (mon.0) 375 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.924385+0000 mon.smithi052 (mon.0) 376 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.924385+0000 mon.smithi052 (mon.0) 376 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.929435+0000 mon.smithi052 (mon.0) 377 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.929435+0000 mon.smithi052 (mon.0) 377 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.930510+0000 mon.smithi052 (mon.0) 378 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.930510+0000 mon.smithi052 (mon.0) 378 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.934360+0000 mon.smithi052 (mon.0) 379 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.934360+0000 mon.smithi052 (mon.0) 379 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.935408+0000 mon.smithi052 (mon.0) 380 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:28.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:28 smithi052 bash[19834]: audit 2024-09-06T14:11:27.935408+0000 mon.smithi052 (mon.0) 380 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:11:29.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:29 smithi148 bash[25697]: cluster 2024-09-06T14:11:27.364502+0000 mgr.smithi052.grtqlq (mgr.14209) 92 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:29.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:29 smithi148 bash[25697]: cluster 2024-09-06T14:11:27.364502+0000 mgr.smithi052.grtqlq (mgr.14209) 92 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:29.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:29 smithi052 bash[19834]: cluster 2024-09-06T14:11:27.364502+0000 mgr.smithi052.grtqlq (mgr.14209) 92 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:29.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:29 smithi052 bash[19834]: cluster 2024-09-06T14:11:27.364502+0000 mgr.smithi052.grtqlq (mgr.14209) 92 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:30.499 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:11:31.551 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:31 smithi052 bash[19834]: cluster 2024-09-06T14:11:29.365015+0000 mgr.smithi052.grtqlq (mgr.14209) 93 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:31.551 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:31 smithi052 bash[19834]: cluster 2024-09-06T14:11:29.365015+0000 mgr.smithi052.grtqlq (mgr.14209) 93 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:31 smithi148 bash[25697]: cluster 2024-09-06T14:11:29.365015+0000 mgr.smithi052.grtqlq (mgr.14209) 93 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:31 smithi148 bash[25697]: cluster 2024-09-06T14:11:29.365015+0000 mgr.smithi052.grtqlq (mgr.14209) 93 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:31.892 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:11:32.508 INFO:teuthology.orchestra.run.smithi052.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-09-06T14:11:32.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:32 smithi148 bash[25697]: audit 2024-09-06T14:11:31.895698+0000 mon.smithi052 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.52:0/2576196755' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:32.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:32 smithi148 bash[25697]: audit 2024-09-06T14:11:31.895698+0000 mon.smithi052 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.52:0/2576196755' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:32.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:32 smithi052 bash[19834]: audit 2024-09-06T14:11:31.895698+0000 mon.smithi052 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.52:0/2576196755' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:32.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:32 smithi052 bash[19834]: audit 2024-09-06T14:11:31.895698+0000 mon.smithi052 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.52:0/2576196755' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:33.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:33 smithi148 bash[25697]: cluster 2024-09-06T14:11:31.365574+0000 mgr.smithi052.grtqlq (mgr.14209) 94 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:33.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:33 smithi148 bash[25697]: cluster 2024-09-06T14:11:31.365574+0000 mgr.smithi052.grtqlq (mgr.14209) 94 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:33.509 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:11:33.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:33 smithi052 bash[19834]: cluster 2024-09-06T14:11:31.365574+0000 mgr.smithi052.grtqlq (mgr.14209) 94 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:33.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:33 smithi052 bash[19834]: cluster 2024-09-06T14:11:31.365574+0000 mgr.smithi052.grtqlq (mgr.14209) 94 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:35.591 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:35 smithi148 bash[25697]: cluster 2024-09-06T14:11:33.366084+0000 mgr.smithi052.grtqlq (mgr.14209) 95 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:35.591 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:35 smithi148 bash[25697]: cluster 2024-09-06T14:11:33.366084+0000 mgr.smithi052.grtqlq (mgr.14209) 95 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:35.640 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:35 smithi052 bash[19834]: cluster 2024-09-06T14:11:33.366084+0000 mgr.smithi052.grtqlq (mgr.14209) 95 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:35.641 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:35 smithi052 bash[19834]: cluster 2024-09-06T14:11:33.366084+0000 mgr.smithi052.grtqlq (mgr.14209) 95 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:37.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: cluster 2024-09-06T14:11:35.366485+0000 mgr.smithi052.grtqlq (mgr.14209) 96 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:37.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: cluster 2024-09-06T14:11:35.366485+0000 mgr.smithi052.grtqlq (mgr.14209) 96 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:37.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.017647+0000 mon.smithi052 (mon.0) 382 : audit [INF] from='client.? 172.21.15.52:0/2489403738' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0b03d858-24d5-46cc-9bb6-dcc97da9cb23"} : dispatch 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.017647+0000 mon.smithi052 (mon.0) 382 : audit [INF] from='client.? 172.21.15.52:0/2489403738' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0b03d858-24d5-46cc-9bb6-dcc97da9cb23"} : dispatch 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.020616+0000 mon.smithi052 (mon.0) 383 : audit [INF] from='client.? 172.21.15.52:0/2489403738' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0b03d858-24d5-46cc-9bb6-dcc97da9cb23"}]': finished 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.020616+0000 mon.smithi052 (mon.0) 383 : audit [INF] from='client.? 172.21.15.52:0/2489403738' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0b03d858-24d5-46cc-9bb6-dcc97da9cb23"}]': finished 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: cluster 2024-09-06T14:11:37.024118+0000 mon.smithi052 (mon.0) 384 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: cluster 2024-09-06T14:11:37.024118+0000 mon.smithi052 (mon.0) 384 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.024398+0000 mon.smithi052 (mon.0) 385 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.024398+0000 mon.smithi052 (mon.0) 385 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.044081+0000 mon.smithi052 (mon.0) 386 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"} : dispatch 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.044081+0000 mon.smithi052 (mon.0) 386 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"} : dispatch 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.044825+0000 mon.smithi148 (mon.1) 2 : audit [INF] from='client.? 172.21.15.148:0/68439273' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"} : dispatch 2024-09-06T14:11:37.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.044825+0000 mon.smithi148 (mon.1) 2 : audit [INF] from='client.? 172.21.15.148:0/68439273' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"} : dispatch 2024-09-06T14:11:37.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.045965+0000 mon.smithi052 (mon.0) 387 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"}]': finished 2024-09-06T14:11:37.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.045965+0000 mon.smithi052 (mon.0) 387 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"}]': finished 2024-09-06T14:11:37.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: cluster 2024-09-06T14:11:37.048228+0000 mon.smithi052 (mon.0) 388 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-06T14:11:37.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: cluster 2024-09-06T14:11:37.048228+0000 mon.smithi052 (mon.0) 388 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-06T14:11:37.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.048383+0000 mon.smithi052 (mon.0) 389 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:37.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.048383+0000 mon.smithi052 (mon.0) 389 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:37.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.048514+0000 mon.smithi052 (mon.0) 390 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:37.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.048514+0000 mon.smithi052 (mon.0) 390 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:37.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.075034+0000 mon.smithi052 (mon.0) 391 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:37.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:37 smithi052 bash[19834]: audit 2024-09-06T14:11:37.075034+0000 mon.smithi052 (mon.0) 391 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:37.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: cluster 2024-09-06T14:11:35.366485+0000 mgr.smithi052.grtqlq (mgr.14209) 96 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:37.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: cluster 2024-09-06T14:11:35.366485+0000 mgr.smithi052.grtqlq (mgr.14209) 96 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:37.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.017647+0000 mon.smithi052 (mon.0) 382 : audit [INF] from='client.? 172.21.15.52:0/2489403738' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0b03d858-24d5-46cc-9bb6-dcc97da9cb23"} : dispatch 2024-09-06T14:11:37.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.017647+0000 mon.smithi052 (mon.0) 382 : audit [INF] from='client.? 172.21.15.52:0/2489403738' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0b03d858-24d5-46cc-9bb6-dcc97da9cb23"} : dispatch 2024-09-06T14:11:37.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.020616+0000 mon.smithi052 (mon.0) 383 : audit [INF] from='client.? 172.21.15.52:0/2489403738' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0b03d858-24d5-46cc-9bb6-dcc97da9cb23"}]': finished 2024-09-06T14:11:37.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.020616+0000 mon.smithi052 (mon.0) 383 : audit [INF] from='client.? 172.21.15.52:0/2489403738' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0b03d858-24d5-46cc-9bb6-dcc97da9cb23"}]': finished 2024-09-06T14:11:37.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: cluster 2024-09-06T14:11:37.024118+0000 mon.smithi052 (mon.0) 384 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: cluster 2024-09-06T14:11:37.024118+0000 mon.smithi052 (mon.0) 384 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.024398+0000 mon.smithi052 (mon.0) 385 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.024398+0000 mon.smithi052 (mon.0) 385 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.044081+0000 mon.smithi052 (mon.0) 386 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"} : dispatch 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.044081+0000 mon.smithi052 (mon.0) 386 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"} : dispatch 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.044825+0000 mon.smithi148 (mon.1) 2 : audit [INF] from='client.? 172.21.15.148:0/68439273' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"} : dispatch 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.044825+0000 mon.smithi148 (mon.1) 2 : audit [INF] from='client.? 172.21.15.148:0/68439273' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"} : dispatch 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.045965+0000 mon.smithi052 (mon.0) 387 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"}]': finished 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.045965+0000 mon.smithi052 (mon.0) 387 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "621a97f9-90db-4d75-9ee2-f7a66d4df631"}]': finished 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: cluster 2024-09-06T14:11:37.048228+0000 mon.smithi052 (mon.0) 388 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: cluster 2024-09-06T14:11:37.048228+0000 mon.smithi052 (mon.0) 388 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.048383+0000 mon.smithi052 (mon.0) 389 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.048383+0000 mon.smithi052 (mon.0) 389 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:37.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.048514+0000 mon.smithi052 (mon.0) 390 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:37.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.048514+0000 mon.smithi052 (mon.0) 390 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:37.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.075034+0000 mon.smithi052 (mon.0) 391 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:37.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:37 smithi148 bash[25697]: audit 2024-09-06T14:11:37.075034+0000 mon.smithi052 (mon.0) 391 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:38.280 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:11:39.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:39 smithi148 bash[25697]: cluster 2024-09-06T14:11:37.366873+0000 mgr.smithi052.grtqlq (mgr.14209) 97 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:39 smithi148 bash[25697]: cluster 2024-09-06T14:11:37.366873+0000 mgr.smithi052.grtqlq (mgr.14209) 97 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:39 smithi148 bash[25697]: audit 2024-09-06T14:11:38.485728+0000 mon.smithi052 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.52:0/270220664' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:39 smithi148 bash[25697]: audit 2024-09-06T14:11:38.485728+0000 mon.smithi052 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.52:0/270220664' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:39 smithi148 bash[25697]: audit 2024-09-06T14:11:38.520967+0000 mon.smithi148 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.148:0/2444195867' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:39 smithi148 bash[25697]: audit 2024-09-06T14:11:38.520967+0000 mon.smithi148 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.148:0/2444195867' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:39.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:39 smithi052 bash[19834]: cluster 2024-09-06T14:11:37.366873+0000 mgr.smithi052.grtqlq (mgr.14209) 97 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:39.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:39 smithi052 bash[19834]: cluster 2024-09-06T14:11:37.366873+0000 mgr.smithi052.grtqlq (mgr.14209) 97 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:39.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:39 smithi052 bash[19834]: audit 2024-09-06T14:11:38.485728+0000 mon.smithi052 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.52:0/270220664' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:39.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:39 smithi052 bash[19834]: audit 2024-09-06T14:11:38.485728+0000 mon.smithi052 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.52:0/270220664' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:39.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:39 smithi052 bash[19834]: audit 2024-09-06T14:11:38.520967+0000 mon.smithi148 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.148:0/2444195867' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:39.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:39 smithi052 bash[19834]: audit 2024-09-06T14:11:38.520967+0000 mon.smithi148 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.148:0/2444195867' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:39.729 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:11:40.344 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1725631897,"num_remapped_pgs":0} 2024-09-06T14:11:40.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:40 smithi148 bash[25697]: audit 2024-09-06T14:11:39.733338+0000 mon.smithi052 (mon.0) 393 : audit [DBG] from='client.? 172.21.15.52:0/2098682316' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:40.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:40 smithi148 bash[25697]: audit 2024-09-06T14:11:39.733338+0000 mon.smithi052 (mon.0) 393 : audit [DBG] from='client.? 172.21.15.52:0/2098682316' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:40.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:40 smithi052 bash[19834]: audit 2024-09-06T14:11:39.733338+0000 mon.smithi052 (mon.0) 393 : audit [DBG] from='client.? 172.21.15.52:0/2098682316' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:40.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:40 smithi052 bash[19834]: audit 2024-09-06T14:11:39.733338+0000 mon.smithi052 (mon.0) 393 : audit [DBG] from='client.? 172.21.15.52:0/2098682316' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:41.345 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:11:41.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:41 smithi148 bash[25697]: cluster 2024-09-06T14:11:39.367347+0000 mgr.smithi052.grtqlq (mgr.14209) 98 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:41.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:41 smithi148 bash[25697]: cluster 2024-09-06T14:11:39.367347+0000 mgr.smithi052.grtqlq (mgr.14209) 98 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:41.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:41 smithi052 bash[19834]: cluster 2024-09-06T14:11:39.367347+0000 mgr.smithi052.grtqlq (mgr.14209) 98 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:41.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:41 smithi052 bash[19834]: cluster 2024-09-06T14:11:39.367347+0000 mgr.smithi052.grtqlq (mgr.14209) 98 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:42.598 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: cluster 2024-09-06T14:11:41.367791+0000 mgr.smithi052.grtqlq (mgr.14209) 99 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: cluster 2024-09-06T14:11:41.367791+0000 mgr.smithi052.grtqlq (mgr.14209) 99 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.056541+0000 mon.smithi052 (mon.0) 394 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"} : dispatch 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.056541+0000 mon.smithi052 (mon.0) 394 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"} : dispatch 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.056933+0000 mon.smithi148 (mon.1) 4 : audit [INF] from='client.? 172.21.15.148:0/3062011183' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"} : dispatch 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.056933+0000 mon.smithi148 (mon.1) 4 : audit [INF] from='client.? 172.21.15.148:0/3062011183' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"} : dispatch 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.059500+0000 mon.smithi052 (mon.0) 395 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"}]': finished 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.059500+0000 mon.smithi052 (mon.0) 395 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"}]': finished 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: cluster 2024-09-06T14:11:42.062846+0000 mon.smithi052 (mon.0) 396 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: cluster 2024-09-06T14:11:42.062846+0000 mon.smithi052 (mon.0) 396 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.063284+0000 mon.smithi052 (mon.0) 397 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:42.599 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.063284+0000 mon.smithi052 (mon.0) 397 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:42.600 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.063711+0000 mon.smithi052 (mon.0) 398 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:42.600 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.063711+0000 mon.smithi052 (mon.0) 398 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:42.600 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.064097+0000 mon.smithi052 (mon.0) 399 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:42.600 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:42 smithi052 bash[19834]: audit 2024-09-06T14:11:42.064097+0000 mon.smithi052 (mon.0) 399 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:42.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: cluster 2024-09-06T14:11:41.367791+0000 mgr.smithi052.grtqlq (mgr.14209) 99 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: cluster 2024-09-06T14:11:41.367791+0000 mgr.smithi052.grtqlq (mgr.14209) 99 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.056541+0000 mon.smithi052 (mon.0) 394 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"} : dispatch 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.056541+0000 mon.smithi052 (mon.0) 394 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"} : dispatch 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.056933+0000 mon.smithi148 (mon.1) 4 : audit [INF] from='client.? 172.21.15.148:0/3062011183' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"} : dispatch 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.056933+0000 mon.smithi148 (mon.1) 4 : audit [INF] from='client.? 172.21.15.148:0/3062011183' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"} : dispatch 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.059500+0000 mon.smithi052 (mon.0) 395 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"}]': finished 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.059500+0000 mon.smithi052 (mon.0) 395 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cbe9e918-6fb4-4346-a621-cf4e5dd35da4"}]': finished 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: cluster 2024-09-06T14:11:42.062846+0000 mon.smithi052 (mon.0) 396 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: cluster 2024-09-06T14:11:42.062846+0000 mon.smithi052 (mon.0) 396 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.063284+0000 mon.smithi052 (mon.0) 397 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.063284+0000 mon.smithi052 (mon.0) 397 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:42.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.063711+0000 mon.smithi052 (mon.0) 398 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:42.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.063711+0000 mon.smithi052 (mon.0) 398 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:42.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.064097+0000 mon.smithi052 (mon.0) 399 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:42.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:42 smithi148 bash[25697]: audit 2024-09-06T14:11:42.064097+0000 mon.smithi052 (mon.0) 399 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:43.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.457126+0000 mon.smithi052 (mon.0) 400 : audit [INF] from='client.? 172.21.15.52:0/3246968481' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "d85722cb-20fc-4a8d-aff1-3ed6a385b56e"} : dispatch 2024-09-06T14:11:43.612 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.457126+0000 mon.smithi052 (mon.0) 400 : audit [INF] from='client.? 172.21.15.52:0/3246968481' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "d85722cb-20fc-4a8d-aff1-3ed6a385b56e"} : dispatch 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.460858+0000 mon.smithi052 (mon.0) 401 : audit [INF] from='client.? 172.21.15.52:0/3246968481' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d85722cb-20fc-4a8d-aff1-3ed6a385b56e"}]': finished 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.460858+0000 mon.smithi052 (mon.0) 401 : audit [INF] from='client.? 172.21.15.52:0/3246968481' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d85722cb-20fc-4a8d-aff1-3ed6a385b56e"}]': finished 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: cluster 2024-09-06T14:11:42.465574+0000 mon.smithi052 (mon.0) 402 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: cluster 2024-09-06T14:11:42.465574+0000 mon.smithi052 (mon.0) 402 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.465864+0000 mon.smithi052 (mon.0) 403 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.465864+0000 mon.smithi052 (mon.0) 403 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.466106+0000 mon.smithi052 (mon.0) 404 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.466106+0000 mon.smithi052 (mon.0) 404 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.466382+0000 mon.smithi052 (mon.0) 405 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.466382+0000 mon.smithi052 (mon.0) 405 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.466628+0000 mon.smithi052 (mon.0) 406 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:43.613 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:43 smithi148 bash[25697]: audit 2024-09-06T14:11:42.466628+0000 mon.smithi052 (mon.0) 406 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:43.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.457126+0000 mon.smithi052 (mon.0) 400 : audit [INF] from='client.? 172.21.15.52:0/3246968481' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "d85722cb-20fc-4a8d-aff1-3ed6a385b56e"} : dispatch 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.457126+0000 mon.smithi052 (mon.0) 400 : audit [INF] from='client.? 172.21.15.52:0/3246968481' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "d85722cb-20fc-4a8d-aff1-3ed6a385b56e"} : dispatch 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.460858+0000 mon.smithi052 (mon.0) 401 : audit [INF] from='client.? 172.21.15.52:0/3246968481' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d85722cb-20fc-4a8d-aff1-3ed6a385b56e"}]': finished 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.460858+0000 mon.smithi052 (mon.0) 401 : audit [INF] from='client.? 172.21.15.52:0/3246968481' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d85722cb-20fc-4a8d-aff1-3ed6a385b56e"}]': finished 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: cluster 2024-09-06T14:11:42.465574+0000 mon.smithi052 (mon.0) 402 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: cluster 2024-09-06T14:11:42.465574+0000 mon.smithi052 (mon.0) 402 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.465864+0000 mon.smithi052 (mon.0) 403 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.465864+0000 mon.smithi052 (mon.0) 403 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.466106+0000 mon.smithi052 (mon.0) 404 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.466106+0000 mon.smithi052 (mon.0) 404 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.466382+0000 mon.smithi052 (mon.0) 405 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:43.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.466382+0000 mon.smithi052 (mon.0) 405 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:43.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.466628+0000 mon.smithi052 (mon.0) 406 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:43.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:43 smithi052 bash[19834]: audit 2024-09-06T14:11:42.466628+0000 mon.smithi052 (mon.0) 406 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:44.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:44 smithi148 bash[25697]: cluster 2024-09-06T14:11:43.368248+0000 mgr.smithi052.grtqlq (mgr.14209) 100 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:44.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:44 smithi148 bash[25697]: cluster 2024-09-06T14:11:43.368248+0000 mgr.smithi052.grtqlq (mgr.14209) 100 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:44.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:44 smithi148 bash[25697]: audit 2024-09-06T14:11:43.459430+0000 mon.smithi148 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.148:0/2190165829' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:44.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:44 smithi148 bash[25697]: audit 2024-09-06T14:11:43.459430+0000 mon.smithi148 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.148:0/2190165829' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:44.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:44 smithi148 bash[25697]: audit 2024-09-06T14:11:43.926766+0000 mon.smithi052 (mon.0) 407 : audit [DBG] from='client.? 172.21.15.52:0/3971649781' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:44.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:44 smithi148 bash[25697]: audit 2024-09-06T14:11:43.926766+0000 mon.smithi052 (mon.0) 407 : audit [DBG] from='client.? 172.21.15.52:0/3971649781' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:44 smithi052 bash[19834]: cluster 2024-09-06T14:11:43.368248+0000 mgr.smithi052.grtqlq (mgr.14209) 100 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:44 smithi052 bash[19834]: cluster 2024-09-06T14:11:43.368248+0000 mgr.smithi052.grtqlq (mgr.14209) 100 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:44 smithi052 bash[19834]: audit 2024-09-06T14:11:43.459430+0000 mon.smithi148 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.148:0/2190165829' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:44 smithi052 bash[19834]: audit 2024-09-06T14:11:43.459430+0000 mon.smithi148 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.148:0/2190165829' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:44 smithi052 bash[19834]: audit 2024-09-06T14:11:43.926766+0000 mon.smithi052 (mon.0) 407 : audit [DBG] from='client.? 172.21.15.52:0/3971649781' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:44 smithi052 bash[19834]: audit 2024-09-06T14:11:43.926766+0000 mon.smithi052 (mon.0) 407 : audit [DBG] from='client.? 172.21.15.52:0/3971649781' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:46.139 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:11:46.548 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:46 smithi052 bash[19834]: cluster 2024-09-06T14:11:45.368725+0000 mgr.smithi052.grtqlq (mgr.14209) 101 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:46.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:46 smithi148 bash[25697]: cluster 2024-09-06T14:11:45.368725+0000 mgr.smithi052.grtqlq (mgr.14209) 101 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:46.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:46 smithi148 bash[25697]: cluster 2024-09-06T14:11:45.368725+0000 mgr.smithi052.grtqlq (mgr.14209) 101 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:46.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:46 smithi052 bash[19834]: cluster 2024-09-06T14:11:45.368725+0000 mgr.smithi052.grtqlq (mgr.14209) 101 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:47.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.946548+0000 mon.smithi052 (mon.0) 408 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"} : dispatch 2024-09-06T14:11:47.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.946548+0000 mon.smithi052 (mon.0) 408 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"} : dispatch 2024-09-06T14:11:47.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.947128+0000 mon.smithi148 (mon.1) 6 : audit [INF] from='client.? 172.21.15.148:0/2048282603' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"} : dispatch 2024-09-06T14:11:47.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.947128+0000 mon.smithi148 (mon.1) 6 : audit [INF] from='client.? 172.21.15.148:0/2048282603' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"} : dispatch 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.948851+0000 mon.smithi052 (mon.0) 409 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"}]': finished 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.948851+0000 mon.smithi052 (mon.0) 409 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"}]': finished 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: cluster 2024-09-06T14:11:46.952351+0000 mon.smithi052 (mon.0) 410 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: cluster 2024-09-06T14:11:46.952351+0000 mon.smithi052 (mon.0) 410 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.952556+0000 mon.smithi052 (mon.0) 411 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.952556+0000 mon.smithi052 (mon.0) 411 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.952747+0000 mon.smithi052 (mon.0) 412 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.952747+0000 mon.smithi052 (mon.0) 412 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.952912+0000 mon.smithi052 (mon.0) 413 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.952912+0000 mon.smithi052 (mon.0) 413 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.953097+0000 mon.smithi052 (mon.0) 414 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.953097+0000 mon.smithi052 (mon.0) 414 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:47.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.953267+0000 mon.smithi052 (mon.0) 415 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:47.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:47 smithi148 bash[25697]: audit 2024-09-06T14:11:46.953267+0000 mon.smithi052 (mon.0) 415 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:47.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.946548+0000 mon.smithi052 (mon.0) 408 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"} : dispatch 2024-09-06T14:11:47.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.946548+0000 mon.smithi052 (mon.0) 408 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"} : dispatch 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.947128+0000 mon.smithi148 (mon.1) 6 : audit [INF] from='client.? 172.21.15.148:0/2048282603' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"} : dispatch 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.947128+0000 mon.smithi148 (mon.1) 6 : audit [INF] from='client.? 172.21.15.148:0/2048282603' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"} : dispatch 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.948851+0000 mon.smithi052 (mon.0) 409 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"}]': finished 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.948851+0000 mon.smithi052 (mon.0) 409 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ae37ad5c-ef09-402d-a4e8-016f4641caab"}]': finished 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: cluster 2024-09-06T14:11:46.952351+0000 mon.smithi052 (mon.0) 410 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: cluster 2024-09-06T14:11:46.952351+0000 mon.smithi052 (mon.0) 410 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.952556+0000 mon.smithi052 (mon.0) 411 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.952556+0000 mon.smithi052 (mon.0) 411 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.952747+0000 mon.smithi052 (mon.0) 412 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.952747+0000 mon.smithi052 (mon.0) 412 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.952912+0000 mon.smithi052 (mon.0) 413 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.952912+0000 mon.smithi052 (mon.0) 413 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:47.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.953097+0000 mon.smithi052 (mon.0) 414 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:47.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.953097+0000 mon.smithi052 (mon.0) 414 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:47.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.953267+0000 mon.smithi052 (mon.0) 415 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:47.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:47 smithi052 bash[19834]: audit 2024-09-06T14:11:46.953267+0000 mon.smithi052 (mon.0) 415 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:47.696 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:11:48.588 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1725631907,"num_remapped_pgs":0} 2024-09-06T14:11:48.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: cluster 2024-09-06T14:11:47.369119+0000 mgr.smithi052.grtqlq (mgr.14209) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:48.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: cluster 2024-09-06T14:11:47.369119+0000 mgr.smithi052.grtqlq (mgr.14209) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:48.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.664459+0000 mon.smithi052 (mon.0) 416 : audit [INF] from='client.? 172.21.15.52:0/853549810' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ef81b324-878c-49e1-8d5f-952c25272d5d"} : dispatch 2024-09-06T14:11:48.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.664459+0000 mon.smithi052 (mon.0) 416 : audit [INF] from='client.? 172.21.15.52:0/853549810' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ef81b324-878c-49e1-8d5f-952c25272d5d"} : dispatch 2024-09-06T14:11:48.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.666717+0000 mon.smithi052 (mon.0) 417 : audit [INF] from='client.? 172.21.15.52:0/853549810' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef81b324-878c-49e1-8d5f-952c25272d5d"}]': finished 2024-09-06T14:11:48.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.666717+0000 mon.smithi052 (mon.0) 417 : audit [INF] from='client.? 172.21.15.52:0/853549810' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef81b324-878c-49e1-8d5f-952c25272d5d"}]': finished 2024-09-06T14:11:48.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: cluster 2024-09-06T14:11:47.669907+0000 mon.smithi052 (mon.0) 418 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-06T14:11:48.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: cluster 2024-09-06T14:11:47.669907+0000 mon.smithi052 (mon.0) 418 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.670133+0000 mon.smithi052 (mon.0) 419 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.670133+0000 mon.smithi052 (mon.0) 419 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.670324+0000 mon.smithi052 (mon.0) 420 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.670324+0000 mon.smithi052 (mon.0) 420 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.670520+0000 mon.smithi052 (mon.0) 421 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.670520+0000 mon.smithi052 (mon.0) 421 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.670696+0000 mon.smithi052 (mon.0) 422 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.670696+0000 mon.smithi052 (mon.0) 422 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.670871+0000 mon.smithi052 (mon.0) 423 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.670871+0000 mon.smithi052 (mon.0) 423 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.671070+0000 mon.smithi052 (mon.0) 424 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.671070+0000 mon.smithi052 (mon.0) 424 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:48.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.701192+0000 mon.smithi052 (mon.0) 425 : audit [DBG] from='client.? 172.21.15.52:0/3922793424' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:48.688 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:48 smithi148 bash[25697]: audit 2024-09-06T14:11:47.701192+0000 mon.smithi052 (mon.0) 425 : audit [DBG] from='client.? 172.21.15.52:0/3922793424' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: cluster 2024-09-06T14:11:47.369119+0000 mgr.smithi052.grtqlq (mgr.14209) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: cluster 2024-09-06T14:11:47.369119+0000 mgr.smithi052.grtqlq (mgr.14209) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.664459+0000 mon.smithi052 (mon.0) 416 : audit [INF] from='client.? 172.21.15.52:0/853549810' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ef81b324-878c-49e1-8d5f-952c25272d5d"} : dispatch 2024-09-06T14:11:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.664459+0000 mon.smithi052 (mon.0) 416 : audit [INF] from='client.? 172.21.15.52:0/853549810' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ef81b324-878c-49e1-8d5f-952c25272d5d"} : dispatch 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.666717+0000 mon.smithi052 (mon.0) 417 : audit [INF] from='client.? 172.21.15.52:0/853549810' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef81b324-878c-49e1-8d5f-952c25272d5d"}]': finished 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.666717+0000 mon.smithi052 (mon.0) 417 : audit [INF] from='client.? 172.21.15.52:0/853549810' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef81b324-878c-49e1-8d5f-952c25272d5d"}]': finished 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: cluster 2024-09-06T14:11:47.669907+0000 mon.smithi052 (mon.0) 418 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: cluster 2024-09-06T14:11:47.669907+0000 mon.smithi052 (mon.0) 418 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.670133+0000 mon.smithi052 (mon.0) 419 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.670133+0000 mon.smithi052 (mon.0) 419 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.670324+0000 mon.smithi052 (mon.0) 420 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.670324+0000 mon.smithi052 (mon.0) 420 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.670520+0000 mon.smithi052 (mon.0) 421 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.670520+0000 mon.smithi052 (mon.0) 421 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.670696+0000 mon.smithi052 (mon.0) 422 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.670696+0000 mon.smithi052 (mon.0) 422 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.670871+0000 mon.smithi052 (mon.0) 423 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.670871+0000 mon.smithi052 (mon.0) 423 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:48.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.671070+0000 mon.smithi052 (mon.0) 424 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:48.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.671070+0000 mon.smithi052 (mon.0) 424 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:48.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.701192+0000 mon.smithi052 (mon.0) 425 : audit [DBG] from='client.? 172.21.15.52:0/3922793424' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:48.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:48 smithi052 bash[19834]: audit 2024-09-06T14:11:47.701192+0000 mon.smithi052 (mon.0) 425 : audit [DBG] from='client.? 172.21.15.52:0/3922793424' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:49.590 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:11:49.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:49 smithi148 bash[25697]: audit 2024-09-06T14:11:48.507528+0000 mon.smithi148 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.148:0/1601069611' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:49.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:49 smithi148 bash[25697]: audit 2024-09-06T14:11:48.507528+0000 mon.smithi148 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.148:0/1601069611' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:49.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:49 smithi148 bash[25697]: audit 2024-09-06T14:11:49.398671+0000 mon.smithi052 (mon.0) 426 : audit [DBG] from='client.? 172.21.15.52:0/3830634197' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:49.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:49 smithi148 bash[25697]: audit 2024-09-06T14:11:49.398671+0000 mon.smithi052 (mon.0) 426 : audit [DBG] from='client.? 172.21.15.52:0/3830634197' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:49.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:49 smithi052 bash[19834]: audit 2024-09-06T14:11:48.507528+0000 mon.smithi148 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.148:0/1601069611' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:49.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:49 smithi052 bash[19834]: audit 2024-09-06T14:11:48.507528+0000 mon.smithi148 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.148:0/1601069611' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:49.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:49 smithi052 bash[19834]: audit 2024-09-06T14:11:49.398671+0000 mon.smithi052 (mon.0) 426 : audit [DBG] from='client.? 172.21.15.52:0/3830634197' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:49.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:49 smithi052 bash[19834]: audit 2024-09-06T14:11:49.398671+0000 mon.smithi052 (mon.0) 426 : audit [DBG] from='client.? 172.21.15.52:0/3830634197' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:50.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:50 smithi148 bash[25697]: cluster 2024-09-06T14:11:49.369418+0000 mgr.smithi052.grtqlq (mgr.14209) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:50.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:50 smithi148 bash[25697]: cluster 2024-09-06T14:11:49.369418+0000 mgr.smithi052.grtqlq (mgr.14209) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:50.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:50 smithi052 bash[19834]: cluster 2024-09-06T14:11:49.369418+0000 mgr.smithi052.grtqlq (mgr.14209) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:50 smithi052 bash[19834]: cluster 2024-09-06T14:11:49.369418+0000 mgr.smithi052.grtqlq (mgr.14209) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:52.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: cluster 2024-09-06T14:11:51.369834+0000 mgr.smithi052.grtqlq (mgr.14209) 104 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: cluster 2024-09-06T14:11:51.369834+0000 mgr.smithi052.grtqlq (mgr.14209) 104 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.075367+0000 mon.smithi052 (mon.0) 427 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"} : dispatch 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.075367+0000 mon.smithi052 (mon.0) 427 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"} : dispatch 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.075908+0000 mon.smithi148 (mon.1) 8 : audit [INF] from='client.? 172.21.15.148:0/268525108' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"} : dispatch 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.075908+0000 mon.smithi148 (mon.1) 8 : audit [INF] from='client.? 172.21.15.148:0/268525108' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"} : dispatch 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.077850+0000 mon.smithi052 (mon.0) 428 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.077850+0000 mon.smithi052 (mon.0) 428 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.079138+0000 mon.smithi052 (mon.0) 429 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"}]': finished 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.079138+0000 mon.smithi052 (mon.0) 429 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"}]': finished 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: cluster 2024-09-06T14:11:52.087668+0000 mon.smithi052 (mon.0) 430 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: cluster 2024-09-06T14:11:52.087668+0000 mon.smithi052 (mon.0) 430 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-06T14:11:52.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.088231+0000 mon.smithi052 (mon.0) 431 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.088231+0000 mon.smithi052 (mon.0) 431 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.088666+0000 mon.smithi052 (mon.0) 432 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.088666+0000 mon.smithi052 (mon.0) 432 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.089064+0000 mon.smithi052 (mon.0) 433 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.089064+0000 mon.smithi052 (mon.0) 433 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.089496+0000 mon.smithi052 (mon.0) 434 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.089496+0000 mon.smithi052 (mon.0) 434 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.089898+0000 mon.smithi052 (mon.0) 435 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.089898+0000 mon.smithi052 (mon.0) 435 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.090290+0000 mon.smithi052 (mon.0) 436 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.090290+0000 mon.smithi052 (mon.0) 436 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.090719+0000 mon.smithi052 (mon.0) 437 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:11:52.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:52 smithi148 bash[25697]: audit 2024-09-06T14:11:52.090719+0000 mon.smithi052 (mon.0) 437 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: cluster 2024-09-06T14:11:51.369834+0000 mgr.smithi052.grtqlq (mgr.14209) 104 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: cluster 2024-09-06T14:11:51.369834+0000 mgr.smithi052.grtqlq (mgr.14209) 104 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.075367+0000 mon.smithi052 (mon.0) 427 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"} : dispatch 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.075367+0000 mon.smithi052 (mon.0) 427 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"} : dispatch 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.075908+0000 mon.smithi148 (mon.1) 8 : audit [INF] from='client.? 172.21.15.148:0/268525108' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"} : dispatch 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.075908+0000 mon.smithi148 (mon.1) 8 : audit [INF] from='client.? 172.21.15.148:0/268525108' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"} : dispatch 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.077850+0000 mon.smithi052 (mon.0) 428 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.077850+0000 mon.smithi052 (mon.0) 428 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.079138+0000 mon.smithi052 (mon.0) 429 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"}]': finished 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.079138+0000 mon.smithi052 (mon.0) 429 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "74eabb68-bbb8-4a68-817f-5181bb516a13"}]': finished 2024-09-06T14:11:52.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: cluster 2024-09-06T14:11:52.087668+0000 mon.smithi052 (mon.0) 430 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: cluster 2024-09-06T14:11:52.087668+0000 mon.smithi052 (mon.0) 430 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.088231+0000 mon.smithi052 (mon.0) 431 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.088231+0000 mon.smithi052 (mon.0) 431 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.088666+0000 mon.smithi052 (mon.0) 432 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.088666+0000 mon.smithi052 (mon.0) 432 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.089064+0000 mon.smithi052 (mon.0) 433 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.089064+0000 mon.smithi052 (mon.0) 433 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.089496+0000 mon.smithi052 (mon.0) 434 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.089496+0000 mon.smithi052 (mon.0) 434 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.089898+0000 mon.smithi052 (mon.0) 435 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.089898+0000 mon.smithi052 (mon.0) 435 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.090290+0000 mon.smithi052 (mon.0) 436 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:52.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.090290+0000 mon.smithi052 (mon.0) 436 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:52.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.090719+0000 mon.smithi052 (mon.0) 437 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:11:52.691 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:52 smithi052 bash[19834]: audit 2024-09-06T14:11:52.090719+0000 mon.smithi052 (mon.0) 437 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.926415+0000 mon.smithi052 (mon.0) 438 : audit [INF] from='client.? 172.21.15.52:0/590971176' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a1025655-46a4-4f83-a404-7bd765ce1838"} : dispatch 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.926415+0000 mon.smithi052 (mon.0) 438 : audit [INF] from='client.? 172.21.15.52:0/590971176' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a1025655-46a4-4f83-a404-7bd765ce1838"} : dispatch 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.929384+0000 mon.smithi052 (mon.0) 439 : audit [INF] from='client.? 172.21.15.52:0/590971176' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a1025655-46a4-4f83-a404-7bd765ce1838"}]': finished 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.929384+0000 mon.smithi052 (mon.0) 439 : audit [INF] from='client.? 172.21.15.52:0/590971176' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a1025655-46a4-4f83-a404-7bd765ce1838"}]': finished 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: cluster 2024-09-06T14:11:52.934354+0000 mon.smithi052 (mon.0) 440 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: cluster 2024-09-06T14:11:52.934354+0000 mon.smithi052 (mon.0) 440 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.934811+0000 mon.smithi052 (mon.0) 441 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.934811+0000 mon.smithi052 (mon.0) 441 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.935304+0000 mon.smithi052 (mon.0) 442 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.935304+0000 mon.smithi052 (mon.0) 442 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:53.693 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.935767+0000 mon.smithi052 (mon.0) 443 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.935767+0000 mon.smithi052 (mon.0) 443 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.936214+0000 mon.smithi052 (mon.0) 444 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.936214+0000 mon.smithi052 (mon.0) 444 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.936663+0000 mon.smithi052 (mon.0) 445 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.936663+0000 mon.smithi052 (mon.0) 445 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.937142+0000 mon.smithi052 (mon.0) 446 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.937142+0000 mon.smithi052 (mon.0) 446 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.937583+0000 mon.smithi052 (mon.0) 447 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.937583+0000 mon.smithi052 (mon.0) 447 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.938013+0000 mon.smithi052 (mon.0) 448 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:11:53.694 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:53 smithi052 bash[19834]: audit 2024-09-06T14:11:52.938013+0000 mon.smithi052 (mon.0) 448 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:11:53.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.926415+0000 mon.smithi052 (mon.0) 438 : audit [INF] from='client.? 172.21.15.52:0/590971176' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a1025655-46a4-4f83-a404-7bd765ce1838"} : dispatch 2024-09-06T14:11:53.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.926415+0000 mon.smithi052 (mon.0) 438 : audit [INF] from='client.? 172.21.15.52:0/590971176' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a1025655-46a4-4f83-a404-7bd765ce1838"} : dispatch 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.929384+0000 mon.smithi052 (mon.0) 439 : audit [INF] from='client.? 172.21.15.52:0/590971176' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a1025655-46a4-4f83-a404-7bd765ce1838"}]': finished 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.929384+0000 mon.smithi052 (mon.0) 439 : audit [INF] from='client.? 172.21.15.52:0/590971176' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a1025655-46a4-4f83-a404-7bd765ce1838"}]': finished 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: cluster 2024-09-06T14:11:52.934354+0000 mon.smithi052 (mon.0) 440 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: cluster 2024-09-06T14:11:52.934354+0000 mon.smithi052 (mon.0) 440 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.934811+0000 mon.smithi052 (mon.0) 441 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.934811+0000 mon.smithi052 (mon.0) 441 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.935304+0000 mon.smithi052 (mon.0) 442 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.935304+0000 mon.smithi052 (mon.0) 442 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.935767+0000 mon.smithi052 (mon.0) 443 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.935767+0000 mon.smithi052 (mon.0) 443 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.936214+0000 mon.smithi052 (mon.0) 444 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:53.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.936214+0000 mon.smithi052 (mon.0) 444 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:11:53.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.936663+0000 mon.smithi052 (mon.0) 445 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:53.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.936663+0000 mon.smithi052 (mon.0) 445 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:11:53.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.937142+0000 mon.smithi052 (mon.0) 446 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:53.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.937142+0000 mon.smithi052 (mon.0) 446 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:11:53.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.937583+0000 mon.smithi052 (mon.0) 447 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:11:53.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.937583+0000 mon.smithi052 (mon.0) 447 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:11:53.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.938013+0000 mon.smithi052 (mon.0) 448 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:11:53.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:53 smithi148 bash[25697]: audit 2024-09-06T14:11:52.938013+0000 mon.smithi052 (mon.0) 448 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:11:54.379 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:11:54.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:54 smithi052 bash[19834]: cluster 2024-09-06T14:11:53.370277+0000 mgr.smithi052.grtqlq (mgr.14209) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:54.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:54 smithi052 bash[19834]: cluster 2024-09-06T14:11:53.370277+0000 mgr.smithi052.grtqlq (mgr.14209) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:54.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:54 smithi052 bash[19834]: audit 2024-09-06T14:11:53.581279+0000 mon.smithi148 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.148:0/1251386862' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:54.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:54 smithi052 bash[19834]: audit 2024-09-06T14:11:53.581279+0000 mon.smithi148 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.148:0/1251386862' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:54.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:54 smithi148 bash[25697]: cluster 2024-09-06T14:11:53.370277+0000 mgr.smithi052.grtqlq (mgr.14209) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:54.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:54 smithi148 bash[25697]: cluster 2024-09-06T14:11:53.370277+0000 mgr.smithi052.grtqlq (mgr.14209) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:54.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:54 smithi148 bash[25697]: audit 2024-09-06T14:11:53.581279+0000 mon.smithi148 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.148:0/1251386862' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:54.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:54 smithi148 bash[25697]: audit 2024-09-06T14:11:53.581279+0000 mon.smithi148 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.148:0/1251386862' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:55.637 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:55 smithi052 bash[19834]: audit 2024-09-06T14:11:54.446284+0000 mon.smithi052 (mon.0) 449 : audit [DBG] from='client.? 172.21.15.52:0/2907048333' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:55.637 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:55 smithi052 bash[19834]: audit 2024-09-06T14:11:54.446284+0000 mon.smithi052 (mon.0) 449 : audit [DBG] from='client.? 172.21.15.52:0/2907048333' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:55.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:55 smithi148 bash[25697]: audit 2024-09-06T14:11:54.446284+0000 mon.smithi052 (mon.0) 449 : audit [DBG] from='client.? 172.21.15.52:0/2907048333' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:55.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:55 smithi148 bash[25697]: audit 2024-09-06T14:11:54.446284+0000 mon.smithi052 (mon.0) 449 : audit [DBG] from='client.? 172.21.15.52:0/2907048333' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T14:11:55.952 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:11:56.673 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725631912,"num_remapped_pgs":0} 2024-09-06T14:11:56.817 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:56 smithi052 bash[19834]: cluster 2024-09-06T14:11:55.370732+0000 mgr.smithi052.grtqlq (mgr.14209) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:56.818 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:56 smithi052 bash[19834]: cluster 2024-09-06T14:11:55.370732+0000 mgr.smithi052.grtqlq (mgr.14209) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:56.818 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:56 smithi052 bash[19834]: audit 2024-09-06T14:11:55.957147+0000 mon.smithi052 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.52:0/50220399' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:56.818 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:56 smithi052 bash[19834]: audit 2024-09-06T14:11:55.957147+0000 mon.smithi052 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.52:0/50220399' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:56.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:56 smithi148 bash[25697]: cluster 2024-09-06T14:11:55.370732+0000 mgr.smithi052.grtqlq (mgr.14209) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:56.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:56 smithi148 bash[25697]: cluster 2024-09-06T14:11:55.370732+0000 mgr.smithi052.grtqlq (mgr.14209) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:56.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:56 smithi148 bash[25697]: audit 2024-09-06T14:11:55.957147+0000 mon.smithi052 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.52:0/50220399' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:56.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:56 smithi148 bash[25697]: audit 2024-09-06T14:11:55.957147+0000 mon.smithi052 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.52:0/50220399' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:11:57.674 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:11:58.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:58 smithi052 bash[19834]: cluster 2024-09-06T14:11:57.371176+0000 mgr.smithi052.grtqlq (mgr.14209) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:58.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:11:58 smithi052 bash[19834]: cluster 2024-09-06T14:11:57.371176+0000 mgr.smithi052.grtqlq (mgr.14209) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:58.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:58 smithi148 bash[25697]: cluster 2024-09-06T14:11:57.371176+0000 mgr.smithi052.grtqlq (mgr.14209) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:11:58.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:11:58 smithi148 bash[25697]: cluster 2024-09-06T14:11:57.371176+0000 mgr.smithi052.grtqlq (mgr.14209) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:00.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:00 smithi148 bash[25697]: cluster 2024-09-06T14:11:59.371530+0000 mgr.smithi052.grtqlq (mgr.14209) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:00.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:00 smithi148 bash[25697]: cluster 2024-09-06T14:11:59.371530+0000 mgr.smithi052.grtqlq (mgr.14209) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:00.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:00 smithi052 bash[19834]: cluster 2024-09-06T14:11:59.371530+0000 mgr.smithi052.grtqlq (mgr.14209) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:00.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:00 smithi052 bash[19834]: cluster 2024-09-06T14:11:59.371530+0000 mgr.smithi052.grtqlq (mgr.14209) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:02.468 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:12:02.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:02 smithi148 bash[25697]: cluster 2024-09-06T14:12:01.371956+0000 mgr.smithi052.grtqlq (mgr.14209) 109 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:02.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:02 smithi148 bash[25697]: cluster 2024-09-06T14:12:01.371956+0000 mgr.smithi052.grtqlq (mgr.14209) 109 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:02.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:02 smithi052 bash[19834]: cluster 2024-09-06T14:12:01.371956+0000 mgr.smithi052.grtqlq (mgr.14209) 109 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:02.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:02 smithi052 bash[19834]: cluster 2024-09-06T14:12:01.371956+0000 mgr.smithi052.grtqlq (mgr.14209) 109 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:03.811 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:12:04.567 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:04 smithi148 bash[25697]: cluster 2024-09-06T14:12:03.372418+0000 mgr.smithi052.grtqlq (mgr.14209) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:04.567 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:04 smithi148 bash[25697]: cluster 2024-09-06T14:12:03.372418+0000 mgr.smithi052.grtqlq (mgr.14209) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:04.567 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:04 smithi148 bash[25697]: audit 2024-09-06T14:12:03.815799+0000 mon.smithi052 (mon.0) 451 : audit [DBG] from='client.? 172.21.15.52:0/413497341' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:04.567 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:04 smithi148 bash[25697]: audit 2024-09-06T14:12:03.815799+0000 mon.smithi052 (mon.0) 451 : audit [DBG] from='client.? 172.21.15.52:0/413497341' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:04.727 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:04 smithi052 bash[19834]: cluster 2024-09-06T14:12:03.372418+0000 mgr.smithi052.grtqlq (mgr.14209) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:04.727 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:04 smithi052 bash[19834]: cluster 2024-09-06T14:12:03.372418+0000 mgr.smithi052.grtqlq (mgr.14209) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:04.727 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:04 smithi052 bash[19834]: audit 2024-09-06T14:12:03.815799+0000 mon.smithi052 (mon.0) 451 : audit [DBG] from='client.? 172.21.15.52:0/413497341' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:04.728 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:04 smithi052 bash[19834]: audit 2024-09-06T14:12:03.815799+0000 mon.smithi052 (mon.0) 451 : audit [DBG] from='client.? 172.21.15.52:0/413497341' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:04.729 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725631912,"num_remapped_pgs":0} 2024-09-06T14:12:05.731 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:12:06.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:06 smithi148 bash[25697]: cluster 2024-09-06T14:12:05.372874+0000 mgr.smithi052.grtqlq (mgr.14209) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:06.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:06 smithi148 bash[25697]: cluster 2024-09-06T14:12:05.372874+0000 mgr.smithi052.grtqlq (mgr.14209) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:06.738 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:06 smithi052 bash[19834]: cluster 2024-09-06T14:12:05.372874+0000 mgr.smithi052.grtqlq (mgr.14209) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:06.738 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:06 smithi052 bash[19834]: cluster 2024-09-06T14:12:05.372874+0000 mgr.smithi052.grtqlq (mgr.14209) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:07.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:07 smithi148 bash[25697]: audit 2024-09-06T14:12:06.905672+0000 mon.smithi052 (mon.0) 452 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-06T14:12:07.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:07 smithi148 bash[25697]: audit 2024-09-06T14:12:06.905672+0000 mon.smithi052 (mon.0) 452 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-06T14:12:07.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:07 smithi148 bash[25697]: audit 2024-09-06T14:12:06.907339+0000 mon.smithi052 (mon.0) 453 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:07.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:07 smithi148 bash[25697]: audit 2024-09-06T14:12:06.907339+0000 mon.smithi052 (mon.0) 453 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:07.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:07 smithi148 bash[25697]: cephadm 2024-09-06T14:12:06.908679+0000 mgr.smithi052.grtqlq (mgr.14209) 112 : cephadm [INF] Deploying daemon osd.1 on smithi148 2024-09-06T14:12:07.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:07 smithi148 bash[25697]: cephadm 2024-09-06T14:12:06.908679+0000 mgr.smithi052.grtqlq (mgr.14209) 112 : cephadm [INF] Deploying daemon osd.1 on smithi148 2024-09-06T14:12:07.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:07 smithi148 bash[25697]: audit 2024-09-06T14:12:07.075940+0000 mon.smithi052 (mon.0) 454 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:07.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:07 smithi148 bash[25697]: audit 2024-09-06T14:12:07.075940+0000 mon.smithi052 (mon.0) 454 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:07.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:07 smithi052 bash[19834]: audit 2024-09-06T14:12:06.905672+0000 mon.smithi052 (mon.0) 452 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-06T14:12:07.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:07 smithi052 bash[19834]: audit 2024-09-06T14:12:06.905672+0000 mon.smithi052 (mon.0) 452 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-06T14:12:07.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:07 smithi052 bash[19834]: audit 2024-09-06T14:12:06.907339+0000 mon.smithi052 (mon.0) 453 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:07.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:07 smithi052 bash[19834]: audit 2024-09-06T14:12:06.907339+0000 mon.smithi052 (mon.0) 453 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:07.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:07 smithi052 bash[19834]: cephadm 2024-09-06T14:12:06.908679+0000 mgr.smithi052.grtqlq (mgr.14209) 112 : cephadm [INF] Deploying daemon osd.1 on smithi148 2024-09-06T14:12:07.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:07 smithi052 bash[19834]: cephadm 2024-09-06T14:12:06.908679+0000 mgr.smithi052.grtqlq (mgr.14209) 112 : cephadm [INF] Deploying daemon osd.1 on smithi148 2024-09-06T14:12:07.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:07 smithi052 bash[19834]: audit 2024-09-06T14:12:07.075940+0000 mon.smithi052 (mon.0) 454 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:07.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:07 smithi052 bash[19834]: audit 2024-09-06T14:12:07.075940+0000 mon.smithi052 (mon.0) 454 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:08.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:08 smithi052 bash[19834]: cluster 2024-09-06T14:12:07.373457+0000 mgr.smithi052.grtqlq (mgr.14209) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:08.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:08 smithi052 bash[19834]: cluster 2024-09-06T14:12:07.373457+0000 mgr.smithi052.grtqlq (mgr.14209) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:08.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:08 smithi052 bash[19834]: audit 2024-09-06T14:12:07.798219+0000 mon.smithi052 (mon.0) 455 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-06T14:12:08.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:08 smithi052 bash[19834]: audit 2024-09-06T14:12:07.798219+0000 mon.smithi052 (mon.0) 455 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-06T14:12:08.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:08 smithi052 bash[19834]: audit 2024-09-06T14:12:07.799709+0000 mon.smithi052 (mon.0) 456 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:08.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:08 smithi052 bash[19834]: audit 2024-09-06T14:12:07.799709+0000 mon.smithi052 (mon.0) 456 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:08.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:08 smithi052 bash[19834]: cephadm 2024-09-06T14:12:07.801108+0000 mgr.smithi052.grtqlq (mgr.14209) 114 : cephadm [INF] Deploying daemon osd.0 on smithi052 2024-09-06T14:12:08.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:08 smithi052 bash[19834]: cephadm 2024-09-06T14:12:07.801108+0000 mgr.smithi052.grtqlq (mgr.14209) 114 : cephadm [INF] Deploying daemon osd.0 on smithi052 2024-09-06T14:12:08.832 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:08 smithi148 bash[25697]: cluster 2024-09-06T14:12:07.373457+0000 mgr.smithi052.grtqlq (mgr.14209) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:08.832 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:08 smithi148 bash[25697]: cluster 2024-09-06T14:12:07.373457+0000 mgr.smithi052.grtqlq (mgr.14209) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:08.832 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:08 smithi148 bash[25697]: audit 2024-09-06T14:12:07.798219+0000 mon.smithi052 (mon.0) 455 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-06T14:12:08.832 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:08 smithi148 bash[25697]: audit 2024-09-06T14:12:07.798219+0000 mon.smithi052 (mon.0) 455 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-06T14:12:08.833 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:08 smithi148 bash[25697]: audit 2024-09-06T14:12:07.799709+0000 mon.smithi052 (mon.0) 456 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:08.833 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:08 smithi148 bash[25697]: audit 2024-09-06T14:12:07.799709+0000 mon.smithi052 (mon.0) 456 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:08.833 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:08 smithi148 bash[25697]: cephadm 2024-09-06T14:12:07.801108+0000 mgr.smithi052.grtqlq (mgr.14209) 114 : cephadm [INF] Deploying daemon osd.0 on smithi052 2024-09-06T14:12:08.833 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:08 smithi148 bash[25697]: cephadm 2024-09-06T14:12:07.801108+0000 mgr.smithi052.grtqlq (mgr.14209) 114 : cephadm [INF] Deploying daemon osd.0 on smithi052 2024-09-06T14:12:10.518 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:12:10.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:10 smithi148 bash[25697]: cluster 2024-09-06T14:12:09.373971+0000 mgr.smithi052.grtqlq (mgr.14209) 115 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:10.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:10 smithi148 bash[25697]: cluster 2024-09-06T14:12:09.373971+0000 mgr.smithi052.grtqlq (mgr.14209) 115 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:10.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:10 smithi052 bash[19834]: cluster 2024-09-06T14:12:09.373971+0000 mgr.smithi052.grtqlq (mgr.14209) 115 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:10.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:10 smithi052 bash[19834]: cluster 2024-09-06T14:12:09.373971+0000 mgr.smithi052.grtqlq (mgr.14209) 115 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:11.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:11 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:11.690 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:11 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:12.163 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:12:13.034 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: cluster 2024-09-06T14:12:11.374458+0000 mgr.smithi052.grtqlq (mgr.14209) 116 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:13.034 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: cluster 2024-09-06T14:12:11.374458+0000 mgr.smithi052.grtqlq (mgr.14209) 116 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:13.034 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: audit 2024-09-06T14:12:11.745772+0000 mon.smithi052 (mon.0) 457 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:13.034 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: audit 2024-09-06T14:12:11.745772+0000 mon.smithi052 (mon.0) 457 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:13.034 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: audit 2024-09-06T14:12:11.751041+0000 mon.smithi052 (mon.0) 458 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:13.034 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: audit 2024-09-06T14:12:11.751041+0000 mon.smithi052 (mon.0) 458 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:13.034 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: audit 2024-09-06T14:12:11.751954+0000 mon.smithi052 (mon.0) 459 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-06T14:12:13.034 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: audit 2024-09-06T14:12:11.751954+0000 mon.smithi052 (mon.0) 459 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-06T14:12:13.035 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: audit 2024-09-06T14:12:11.752826+0000 mon.smithi052 (mon.0) 460 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:13.035 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: audit 2024-09-06T14:12:11.752826+0000 mon.smithi052 (mon.0) 460 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:13.035 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: cephadm 2024-09-06T14:12:11.753440+0000 mgr.smithi052.grtqlq (mgr.14209) 117 : cephadm [INF] Deploying daemon osd.2 on smithi148 2024-09-06T14:12:13.035 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: cephadm 2024-09-06T14:12:11.753440+0000 mgr.smithi052.grtqlq (mgr.14209) 117 : cephadm [INF] Deploying daemon osd.2 on smithi148 2024-09-06T14:12:13.035 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: audit 2024-09-06T14:12:12.168269+0000 mon.smithi052 (mon.0) 461 : audit [DBG] from='client.? 172.21.15.52:0/3249876579' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:13.035 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:12 smithi052 bash[19834]: audit 2024-09-06T14:12:12.168269+0000 mon.smithi052 (mon.0) 461 : audit [DBG] from='client.? 172.21.15.52:0/3249876579' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:13.036 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725631912,"num_remapped_pgs":0} 2024-09-06T14:12:13.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: cluster 2024-09-06T14:12:11.374458+0000 mgr.smithi052.grtqlq (mgr.14209) 116 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:13.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: cluster 2024-09-06T14:12:11.374458+0000 mgr.smithi052.grtqlq (mgr.14209) 116 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:13.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: audit 2024-09-06T14:12:11.745772+0000 mon.smithi052 (mon.0) 457 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:13.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: audit 2024-09-06T14:12:11.745772+0000 mon.smithi052 (mon.0) 457 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:13.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: audit 2024-09-06T14:12:11.751041+0000 mon.smithi052 (mon.0) 458 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:13.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: audit 2024-09-06T14:12:11.751041+0000 mon.smithi052 (mon.0) 458 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:13.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: audit 2024-09-06T14:12:11.751954+0000 mon.smithi052 (mon.0) 459 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-06T14:12:13.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: audit 2024-09-06T14:12:11.751954+0000 mon.smithi052 (mon.0) 459 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-06T14:12:13.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: audit 2024-09-06T14:12:11.752826+0000 mon.smithi052 (mon.0) 460 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:13.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: audit 2024-09-06T14:12:11.752826+0000 mon.smithi052 (mon.0) 460 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:13.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: cephadm 2024-09-06T14:12:11.753440+0000 mgr.smithi052.grtqlq (mgr.14209) 117 : cephadm [INF] Deploying daemon osd.2 on smithi148 2024-09-06T14:12:13.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: cephadm 2024-09-06T14:12:11.753440+0000 mgr.smithi052.grtqlq (mgr.14209) 117 : cephadm [INF] Deploying daemon osd.2 on smithi148 2024-09-06T14:12:13.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: audit 2024-09-06T14:12:12.168269+0000 mon.smithi052 (mon.0) 461 : audit [DBG] from='client.? 172.21.15.52:0/3249876579' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:13.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:12 smithi148 bash[25697]: audit 2024-09-06T14:12:12.168269+0000 mon.smithi052 (mon.0) 461 : audit [DBG] from='client.? 172.21.15.52:0/3249876579' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:13.350 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:13 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:13.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:13 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:14.040 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:12:14.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: cluster 2024-09-06T14:12:13.374758+0000 mgr.smithi052.grtqlq (mgr.14209) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:14.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: cluster 2024-09-06T14:12:13.374758+0000 mgr.smithi052.grtqlq (mgr.14209) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:14.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:13.524054+0000 mon.smithi052 (mon.0) 462 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:13.524054+0000 mon.smithi052 (mon.0) 462 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:13.528392+0000 mon.smithi052 (mon.0) 463 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:13.528392+0000 mon.smithi052 (mon.0) 463 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:13.529147+0000 mon.smithi052 (mon.0) 464 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:13.529147+0000 mon.smithi052 (mon.0) 464 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:13.529849+0000 mon.smithi052 (mon.0) 465 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:13.529849+0000 mon.smithi052 (mon.0) 465 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: cephadm 2024-09-06T14:12:13.530437+0000 mgr.smithi052.grtqlq (mgr.14209) 119 : cephadm [INF] Deploying daemon osd.3 on smithi052 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: cephadm 2024-09-06T14:12:13.530437+0000 mgr.smithi052.grtqlq (mgr.14209) 119 : cephadm [INF] Deploying daemon osd.3 on smithi052 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:14.018804+0000 mgr.smithi052.grtqlq (mgr.14209) 120 : audit [DBG] from='client.14348 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:14.018804+0000 mgr.smithi052.grtqlq (mgr.14209) 120 : audit [DBG] from='client.14348 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:14.024144+0000 mon.smithi052 (mon.0) 466 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:14.024144+0000 mon.smithi052 (mon.0) 466 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: cluster 2024-09-06T14:12:14.024866+0000 mgr.smithi052.grtqlq (mgr.14209) 121 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:14.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: cluster 2024-09-06T14:12:14.024866+0000 mgr.smithi052.grtqlq (mgr.14209) 121 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:14.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:14.467959+0000 mon.smithi052 (mon.0) 467 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:14 smithi148 bash[25697]: audit 2024-09-06T14:12:14.467959+0000 mon.smithi052 (mon.0) 467 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: cluster 2024-09-06T14:12:13.374758+0000 mgr.smithi052.grtqlq (mgr.14209) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: cluster 2024-09-06T14:12:13.374758+0000 mgr.smithi052.grtqlq (mgr.14209) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:13.524054+0000 mon.smithi052 (mon.0) 462 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:13.524054+0000 mon.smithi052 (mon.0) 462 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:13.528392+0000 mon.smithi052 (mon.0) 463 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:13.528392+0000 mon.smithi052 (mon.0) 463 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:13.529147+0000 mon.smithi052 (mon.0) 464 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:13.529147+0000 mon.smithi052 (mon.0) 464 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:13.529849+0000 mon.smithi052 (mon.0) 465 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:13.529849+0000 mon.smithi052 (mon.0) 465 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: cephadm 2024-09-06T14:12:13.530437+0000 mgr.smithi052.grtqlq (mgr.14209) 119 : cephadm [INF] Deploying daemon osd.3 on smithi052 2024-09-06T14:12:14.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: cephadm 2024-09-06T14:12:13.530437+0000 mgr.smithi052.grtqlq (mgr.14209) 119 : cephadm [INF] Deploying daemon osd.3 on smithi052 2024-09-06T14:12:14.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:14.018804+0000 mgr.smithi052.grtqlq (mgr.14209) 120 : audit [DBG] from='client.14348 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:14.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:14.018804+0000 mgr.smithi052.grtqlq (mgr.14209) 120 : audit [DBG] from='client.14348 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:14.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:14.024144+0000 mon.smithi052 (mon.0) 466 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:14.024144+0000 mon.smithi052 (mon.0) 466 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: cluster 2024-09-06T14:12:14.024866+0000 mgr.smithi052.grtqlq (mgr.14209) 121 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:14.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: cluster 2024-09-06T14:12:14.024866+0000 mgr.smithi052.grtqlq (mgr.14209) 121 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:14.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:14.467959+0000 mon.smithi052 (mon.0) 467 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:14.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:14 smithi052 bash[19834]: audit 2024-09-06T14:12:14.467959+0000 mon.smithi052 (mon.0) 467 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:16.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: audit 2024-09-06T14:12:14.462791+0000 mgr.smithi052.grtqlq (mgr.14209) 122 : audit [DBG] from='client.14352 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:16.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: audit 2024-09-06T14:12:14.462791+0000 mgr.smithi052.grtqlq (mgr.14209) 122 : audit [DBG] from='client.14352 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:16.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: cluster 2024-09-06T14:12:14.469171+0000 mgr.smithi052.grtqlq (mgr.14209) 123 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:16.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: cluster 2024-09-06T14:12:14.469171+0000 mgr.smithi052.grtqlq (mgr.14209) 123 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:16.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: audit 2024-09-06T14:12:14.924260+0000 mgr.smithi052.grtqlq (mgr.14209) 124 : audit [DBG] from='client.14356 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:16.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: audit 2024-09-06T14:12:14.924260+0000 mgr.smithi052.grtqlq (mgr.14209) 124 : audit [DBG] from='client.14356 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:16.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: audit 2024-09-06T14:12:14.929389+0000 mon.smithi052 (mon.0) 468 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:16.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: audit 2024-09-06T14:12:14.929389+0000 mon.smithi052 (mon.0) 468 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:16.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: cluster 2024-09-06T14:12:14.930694+0000 mgr.smithi052.grtqlq (mgr.14209) 125 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:16.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: cluster 2024-09-06T14:12:14.930694+0000 mgr.smithi052.grtqlq (mgr.14209) 125 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:16.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: cluster 2024-09-06T14:12:15.021205+0000 mon.smithi052 (mon.0) 469 : cluster [WRN] Health check update: 4 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T14:12:16.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:15 smithi148 bash[25697]: cluster 2024-09-06T14:12:15.021205+0000 mon.smithi052 (mon.0) 469 : cluster [WRN] Health check update: 4 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T14:12:16.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: audit 2024-09-06T14:12:14.462791+0000 mgr.smithi052.grtqlq (mgr.14209) 122 : audit [DBG] from='client.14352 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:16.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: audit 2024-09-06T14:12:14.462791+0000 mgr.smithi052.grtqlq (mgr.14209) 122 : audit [DBG] from='client.14352 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:16.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: cluster 2024-09-06T14:12:14.469171+0000 mgr.smithi052.grtqlq (mgr.14209) 123 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:16.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: cluster 2024-09-06T14:12:14.469171+0000 mgr.smithi052.grtqlq (mgr.14209) 123 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:16.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: audit 2024-09-06T14:12:14.924260+0000 mgr.smithi052.grtqlq (mgr.14209) 124 : audit [DBG] from='client.14356 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:16.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: audit 2024-09-06T14:12:14.924260+0000 mgr.smithi052.grtqlq (mgr.14209) 124 : audit [DBG] from='client.14356 -' entity='client.crash.smithi052' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:12:16.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: audit 2024-09-06T14:12:14.929389+0000 mon.smithi052 (mon.0) 468 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:16.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: audit 2024-09-06T14:12:14.929389+0000 mon.smithi052 (mon.0) 468 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:16.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: cluster 2024-09-06T14:12:14.930694+0000 mgr.smithi052.grtqlq (mgr.14209) 125 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:16.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: cluster 2024-09-06T14:12:14.930694+0000 mgr.smithi052.grtqlq (mgr.14209) 125 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:16.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: cluster 2024-09-06T14:12:15.021205+0000 mon.smithi052 (mon.0) 469 : cluster [WRN] Health check update: 4 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T14:12:16.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:15 smithi052 bash[19834]: cluster 2024-09-06T14:12:15.021205+0000 mon.smithi052 (mon.0) 469 : cluster [WRN] Health check update: 4 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T14:12:16.960 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:16 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:16.961 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:16 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:18.427 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: cluster 2024-09-06T14:12:16.931181+0000 mgr.smithi052.grtqlq (mgr.14209) 126 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:18.427 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: cluster 2024-09-06T14:12:16.931181+0000 mgr.smithi052.grtqlq (mgr.14209) 126 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: audit 2024-09-06T14:12:17.137477+0000 mon.smithi052 (mon.0) 470 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: audit 2024-09-06T14:12:17.137477+0000 mon.smithi052 (mon.0) 470 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: audit 2024-09-06T14:12:17.146128+0000 mon.smithi052 (mon.0) 471 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: audit 2024-09-06T14:12:17.146128+0000 mon.smithi052 (mon.0) 471 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: audit 2024-09-06T14:12:17.148086+0000 mon.smithi052 (mon.0) 472 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: audit 2024-09-06T14:12:17.148086+0000 mon.smithi052 (mon.0) 472 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: audit 2024-09-06T14:12:17.149991+0000 mon.smithi052 (mon.0) 473 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: audit 2024-09-06T14:12:17.149991+0000 mon.smithi052 (mon.0) 473 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: cephadm 2024-09-06T14:12:17.151803+0000 mgr.smithi052.grtqlq (mgr.14209) 127 : cephadm [INF] Deploying daemon osd.4 on smithi148 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 bash[19834]: cephadm 2024-09-06T14:12:17.151803+0000 mgr.smithi052.grtqlq (mgr.14209) 127 : cephadm [INF] Deploying daemon osd.4 on smithi148 2024-09-06T14:12:18.428 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:18.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: cluster 2024-09-06T14:12:16.931181+0000 mgr.smithi052.grtqlq (mgr.14209) 126 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:18.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: cluster 2024-09-06T14:12:16.931181+0000 mgr.smithi052.grtqlq (mgr.14209) 126 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:18.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: audit 2024-09-06T14:12:17.137477+0000 mon.smithi052 (mon.0) 470 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:18.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: audit 2024-09-06T14:12:17.137477+0000 mon.smithi052 (mon.0) 470 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:18.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: audit 2024-09-06T14:12:17.146128+0000 mon.smithi052 (mon.0) 471 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:18.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: audit 2024-09-06T14:12:17.146128+0000 mon.smithi052 (mon.0) 471 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:18.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: audit 2024-09-06T14:12:17.148086+0000 mon.smithi052 (mon.0) 472 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-06T14:12:18.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: audit 2024-09-06T14:12:17.148086+0000 mon.smithi052 (mon.0) 472 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-06T14:12:18.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: audit 2024-09-06T14:12:17.149991+0000 mon.smithi052 (mon.0) 473 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:18.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: audit 2024-09-06T14:12:17.149991+0000 mon.smithi052 (mon.0) 473 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:18.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: cephadm 2024-09-06T14:12:17.151803+0000 mgr.smithi052.grtqlq (mgr.14209) 127 : cephadm [INF] Deploying daemon osd.4 on smithi148 2024-09-06T14:12:18.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:18 smithi148 bash[25697]: cephadm 2024-09-06T14:12:17.151803+0000 mgr.smithi052.grtqlq (mgr.14209) 127 : cephadm [INF] Deploying daemon osd.4 on smithi148 2024-09-06T14:12:18.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:18 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:19.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: audit 2024-09-06T14:12:18.789447+0000 mon.smithi052 (mon.0) 474 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:19.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: audit 2024-09-06T14:12:18.789447+0000 mon.smithi052 (mon.0) 474 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:19.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: audit 2024-09-06T14:12:18.794831+0000 mon.smithi052 (mon.0) 475 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:19.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: audit 2024-09-06T14:12:18.794831+0000 mon.smithi052 (mon.0) 475 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:19.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: audit 2024-09-06T14:12:18.795678+0000 mon.smithi052 (mon.0) 476 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-06T14:12:19.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: audit 2024-09-06T14:12:18.795678+0000 mon.smithi052 (mon.0) 476 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-06T14:12:19.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: audit 2024-09-06T14:12:18.796335+0000 mon.smithi052 (mon.0) 477 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:19.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: audit 2024-09-06T14:12:18.796335+0000 mon.smithi052 (mon.0) 477 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:19.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: cephadm 2024-09-06T14:12:18.796884+0000 mgr.smithi052.grtqlq (mgr.14209) 128 : cephadm [INF] Deploying daemon osd.5 on smithi052 2024-09-06T14:12:19.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: cephadm 2024-09-06T14:12:18.796884+0000 mgr.smithi052.grtqlq (mgr.14209) 128 : cephadm [INF] Deploying daemon osd.5 on smithi052 2024-09-06T14:12:19.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: cluster 2024-09-06T14:12:18.931494+0000 mgr.smithi052.grtqlq (mgr.14209) 129 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:19.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:19 smithi148 bash[25697]: cluster 2024-09-06T14:12:18.931494+0000 mgr.smithi052.grtqlq (mgr.14209) 129 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:19.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: audit 2024-09-06T14:12:18.789447+0000 mon.smithi052 (mon.0) 474 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: audit 2024-09-06T14:12:18.789447+0000 mon.smithi052 (mon.0) 474 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: audit 2024-09-06T14:12:18.794831+0000 mon.smithi052 (mon.0) 475 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: audit 2024-09-06T14:12:18.794831+0000 mon.smithi052 (mon.0) 475 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: audit 2024-09-06T14:12:18.795678+0000 mon.smithi052 (mon.0) 476 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: audit 2024-09-06T14:12:18.795678+0000 mon.smithi052 (mon.0) 476 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: audit 2024-09-06T14:12:18.796335+0000 mon.smithi052 (mon.0) 477 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: audit 2024-09-06T14:12:18.796335+0000 mon.smithi052 (mon.0) 477 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: cephadm 2024-09-06T14:12:18.796884+0000 mgr.smithi052.grtqlq (mgr.14209) 128 : cephadm [INF] Deploying daemon osd.5 on smithi052 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: cephadm 2024-09-06T14:12:18.796884+0000 mgr.smithi052.grtqlq (mgr.14209) 128 : cephadm [INF] Deploying daemon osd.5 on smithi052 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: cluster 2024-09-06T14:12:18.931494+0000 mgr.smithi052.grtqlq (mgr.14209) 129 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:19.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:19 smithi052 bash[19834]: cluster 2024-09-06T14:12:18.931494+0000 mgr.smithi052.grtqlq (mgr.14209) 129 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:20.609 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:12:22.129 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:21 smithi148 bash[25697]: cluster 2024-09-06T14:12:20.932016+0000 mgr.smithi052.grtqlq (mgr.14209) 130 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:22.129 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:21 smithi148 bash[25697]: cluster 2024-09-06T14:12:20.932016+0000 mgr.smithi052.grtqlq (mgr.14209) 130 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:22.183 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:22 smithi052 bash[19834]: cluster 2024-09-06T14:12:20.932016+0000 mgr.smithi052.grtqlq (mgr.14209) 130 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:22.183 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:22 smithi052 bash[19834]: cluster 2024-09-06T14:12:20.932016+0000 mgr.smithi052.grtqlq (mgr.14209) 130 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:22.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:22 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:22.993 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:22 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:23.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:22 smithi052 bash[19834]: audit 2024-09-06T14:12:22.076725+0000 mon.smithi052 (mon.0) 478 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:23.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:22 smithi052 bash[19834]: audit 2024-09-06T14:12:22.076725+0000 mon.smithi052 (mon.0) 478 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:23.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:22 smithi052 bash[19834]: audit 2024-09-06T14:12:22.982270+0000 mon.smithi052 (mon.0) 479 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:23.267 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:22 smithi052 bash[19834]: audit 2024-09-06T14:12:22.982270+0000 mon.smithi052 (mon.0) 479 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:23.288 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:22 smithi148 bash[25697]: audit 2024-09-06T14:12:22.076725+0000 mon.smithi052 (mon.0) 478 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:23.288 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:22 smithi148 bash[25697]: audit 2024-09-06T14:12:22.076725+0000 mon.smithi052 (mon.0) 478 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:23.288 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:22 smithi148 bash[25697]: audit 2024-09-06T14:12:22.982270+0000 mon.smithi052 (mon.0) 479 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:23.288 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:22 smithi148 bash[25697]: audit 2024-09-06T14:12:22.982270+0000 mon.smithi052 (mon.0) 479 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:23.564 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:12:24.265 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:23 smithi052 bash[19834]: cluster 2024-09-06T14:12:22.932577+0000 mgr.smithi052.grtqlq (mgr.14209) 131 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:23 smithi052 bash[19834]: cluster 2024-09-06T14:12:22.932577+0000 mgr.smithi052.grtqlq (mgr.14209) 131 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:24 smithi052 bash[19834]: audit 2024-09-06T14:12:22.988365+0000 mon.smithi052 (mon.0) 480 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:24 smithi052 bash[19834]: audit 2024-09-06T14:12:22.988365+0000 mon.smithi052 (mon.0) 480 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:24 smithi052 bash[19834]: audit 2024-09-06T14:12:22.989426+0000 mon.smithi052 (mon.0) 481 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:24 smithi052 bash[19834]: audit 2024-09-06T14:12:22.989426+0000 mon.smithi052 (mon.0) 481 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:24 smithi052 bash[19834]: audit 2024-09-06T14:12:22.990297+0000 mon.smithi052 (mon.0) 482 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:24 smithi052 bash[19834]: audit 2024-09-06T14:12:22.990297+0000 mon.smithi052 (mon.0) 482 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:24 smithi052 bash[19834]: cephadm 2024-09-06T14:12:22.991059+0000 mgr.smithi052.grtqlq (mgr.14209) 132 : cephadm [INF] Deploying daemon osd.6 on smithi148 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:24 smithi052 bash[19834]: cephadm 2024-09-06T14:12:22.991059+0000 mgr.smithi052.grtqlq (mgr.14209) 132 : cephadm [INF] Deploying daemon osd.6 on smithi148 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:24 smithi052 bash[19834]: audit 2024-09-06T14:12:23.569495+0000 mon.smithi052 (mon.0) 483 : audit [DBG] from='client.? 172.21.15.52:0/4160523192' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:24.266 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:24 smithi052 bash[19834]: audit 2024-09-06T14:12:23.569495+0000 mon.smithi052 (mon.0) 483 : audit [DBG] from='client.? 172.21.15.52:0/4160523192' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:24.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: cluster 2024-09-06T14:12:22.932577+0000 mgr.smithi052.grtqlq (mgr.14209) 131 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:24.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: cluster 2024-09-06T14:12:22.932577+0000 mgr.smithi052.grtqlq (mgr.14209) 131 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:24.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: audit 2024-09-06T14:12:22.988365+0000 mon.smithi052 (mon.0) 480 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:24.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: audit 2024-09-06T14:12:22.988365+0000 mon.smithi052 (mon.0) 480 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:24.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: audit 2024-09-06T14:12:22.989426+0000 mon.smithi052 (mon.0) 481 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-06T14:12:24.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: audit 2024-09-06T14:12:22.989426+0000 mon.smithi052 (mon.0) 481 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-06T14:12:24.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: audit 2024-09-06T14:12:22.990297+0000 mon.smithi052 (mon.0) 482 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:24.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: audit 2024-09-06T14:12:22.990297+0000 mon.smithi052 (mon.0) 482 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:24.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: cephadm 2024-09-06T14:12:22.991059+0000 mgr.smithi052.grtqlq (mgr.14209) 132 : cephadm [INF] Deploying daemon osd.6 on smithi148 2024-09-06T14:12:24.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: cephadm 2024-09-06T14:12:22.991059+0000 mgr.smithi052.grtqlq (mgr.14209) 132 : cephadm [INF] Deploying daemon osd.6 on smithi148 2024-09-06T14:12:24.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: audit 2024-09-06T14:12:23.569495+0000 mon.smithi052 (mon.0) 483 : audit [DBG] from='client.? 172.21.15.52:0/4160523192' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:24.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:24 smithi148 bash[25697]: audit 2024-09-06T14:12:23.569495+0000 mon.smithi052 (mon.0) 483 : audit [DBG] from='client.? 172.21.15.52:0/4160523192' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:24.653 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725631912,"num_remapped_pgs":0} 2024-09-06T14:12:25.034 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:25 smithi052 bash[19834]: audit 2024-09-06T14:12:24.860272+0000 mon.smithi052 (mon.0) 484 : audit [INF] from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T14:12:25.035 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:25 smithi052 bash[19834]: audit 2024-09-06T14:12:24.860272+0000 mon.smithi052 (mon.0) 484 : audit [INF] from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T14:12:25.035 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:25 smithi052 bash[19834]: audit 2024-09-06T14:12:24.860959+0000 mon.smithi148 (mon.1) 10 : audit [INF] from='osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T14:12:25.035 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:25 smithi052 bash[19834]: audit 2024-09-06T14:12:24.860959+0000 mon.smithi148 (mon.1) 10 : audit [INF] from='osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T14:12:25.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:25 smithi148 bash[25697]: audit 2024-09-06T14:12:24.860272+0000 mon.smithi052 (mon.0) 484 : audit [INF] from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T14:12:25.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:25 smithi148 bash[25697]: audit 2024-09-06T14:12:24.860272+0000 mon.smithi052 (mon.0) 484 : audit [INF] from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T14:12:25.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:25 smithi148 bash[25697]: audit 2024-09-06T14:12:24.860959+0000 mon.smithi148 (mon.1) 10 : audit [INF] from='osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T14:12:25.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:25 smithi148 bash[25697]: audit 2024-09-06T14:12:24.860959+0000 mon.smithi148 (mon.1) 10 : audit [INF] from='osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T14:12:25.654 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:12:26.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: cluster 2024-09-06T14:12:24.932902+0000 mgr.smithi052.grtqlq (mgr.14209) 133 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:26.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: cluster 2024-09-06T14:12:24.932902+0000 mgr.smithi052.grtqlq (mgr.14209) 133 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.007043+0000 mon.smithi052 (mon.0) 485 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.007043+0000 mon.smithi052 (mon.0) 485 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: cluster 2024-09-06T14:12:25.011674+0000 mon.smithi052 (mon.0) 486 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: cluster 2024-09-06T14:12:25.011674+0000 mon.smithi052 (mon.0) 486 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.012191+0000 mon.smithi052 (mon.0) 487 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.012191+0000 mon.smithi052 (mon.0) 487 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.012681+0000 mon.smithi052 (mon.0) 488 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.012681+0000 mon.smithi052 (mon.0) 488 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.013204+0000 mon.smithi052 (mon.0) 489 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.013204+0000 mon.smithi052 (mon.0) 489 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:26.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.013432+0000 mon.smithi148 (mon.1) 11 : audit [INF] from='osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.013432+0000 mon.smithi148 (mon.1) 11 : audit [INF] from='osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.013921+0000 mon.smithi052 (mon.0) 490 : audit [INF] from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.013921+0000 mon.smithi052 (mon.0) 490 : audit [INF] from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.014679+0000 mon.smithi052 (mon.0) 491 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.014679+0000 mon.smithi052 (mon.0) 491 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.015261+0000 mon.smithi052 (mon.0) 492 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.015261+0000 mon.smithi052 (mon.0) 492 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.015822+0000 mon.smithi052 (mon.0) 493 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.015822+0000 mon.smithi052 (mon.0) 493 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.016369+0000 mon.smithi052 (mon.0) 494 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.016369+0000 mon.smithi052 (mon.0) 494 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.016912+0000 mon.smithi052 (mon.0) 495 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:26.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:26 smithi148 bash[25697]: audit 2024-09-06T14:12:25.016912+0000 mon.smithi052 (mon.0) 495 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:26.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: cluster 2024-09-06T14:12:24.932902+0000 mgr.smithi052.grtqlq (mgr.14209) 133 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: cluster 2024-09-06T14:12:24.932902+0000 mgr.smithi052.grtqlq (mgr.14209) 133 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.007043+0000 mon.smithi052 (mon.0) 485 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.007043+0000 mon.smithi052 (mon.0) 485 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: cluster 2024-09-06T14:12:25.011674+0000 mon.smithi052 (mon.0) 486 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: cluster 2024-09-06T14:12:25.011674+0000 mon.smithi052 (mon.0) 486 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.012191+0000 mon.smithi052 (mon.0) 487 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.012191+0000 mon.smithi052 (mon.0) 487 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.012681+0000 mon.smithi052 (mon.0) 488 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.012681+0000 mon.smithi052 (mon.0) 488 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.013204+0000 mon.smithi052 (mon.0) 489 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.013204+0000 mon.smithi052 (mon.0) 489 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.013432+0000 mon.smithi148 (mon.1) 11 : audit [INF] from='osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:26.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.013432+0000 mon.smithi148 (mon.1) 11 : audit [INF] from='osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.013921+0000 mon.smithi052 (mon.0) 490 : audit [INF] from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.013921+0000 mon.smithi052 (mon.0) 490 : audit [INF] from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.014679+0000 mon.smithi052 (mon.0) 491 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.014679+0000 mon.smithi052 (mon.0) 491 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.015261+0000 mon.smithi052 (mon.0) 492 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.015261+0000 mon.smithi052 (mon.0) 492 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.015822+0000 mon.smithi052 (mon.0) 493 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.015822+0000 mon.smithi052 (mon.0) 493 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.016369+0000 mon.smithi052 (mon.0) 494 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.016369+0000 mon.smithi052 (mon.0) 494 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.016912+0000 mon.smithi052 (mon.0) 495 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:26.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 bash[19834]: audit 2024-09-06T14:12:25.016912+0000 mon.smithi052 (mon.0) 495 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:27.009 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:26 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:27.289 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.009390+0000 mon.smithi052 (mon.0) 496 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:27.289 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.009390+0000 mon.smithi052 (mon.0) 496 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:27.289 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: cluster 2024-09-06T14:12:26.014678+0000 mon.smithi052 (mon.0) 497 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: cluster 2024-09-06T14:12:26.014678+0000 mon.smithi052 (mon.0) 497 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.015760+0000 mon.smithi052 (mon.0) 498 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.015760+0000 mon.smithi052 (mon.0) 498 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.016265+0000 mon.smithi052 (mon.0) 499 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.016265+0000 mon.smithi052 (mon.0) 499 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.016990+0000 mon.smithi052 (mon.0) 500 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.016990+0000 mon.smithi052 (mon.0) 500 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.028229+0000 mon.smithi052 (mon.0) 501 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.028229+0000 mon.smithi052 (mon.0) 501 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.028681+0000 mon.smithi052 (mon.0) 502 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.028681+0000 mon.smithi052 (mon.0) 502 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.029085+0000 mon.smithi052 (mon.0) 503 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:27.290 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.029085+0000 mon.smithi052 (mon.0) 503 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:27.291 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.029474+0000 mon.smithi052 (mon.0) 504 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:27.291 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.029474+0000 mon.smithi052 (mon.0) 504 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:27.291 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.029824+0000 mon.smithi052 (mon.0) 505 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:27.291 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.029824+0000 mon.smithi052 (mon.0) 505 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:27.291 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.030097+0000 mon.smithi052 (mon.0) 506 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:27.291 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.030097+0000 mon.smithi052 (mon.0) 506 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:27.291 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.514372+0000 mon.smithi052 (mon.0) 507 : audit [INF] from='osd.1 ' entity='osd.1' 2024-09-06T14:12:27.291 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 bash[19834]: audit 2024-09-06T14:12:26.514372+0000 mon.smithi052 (mon.0) 507 : audit [INF] from='osd.1 ' entity='osd.1' 2024-09-06T14:12:27.291 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:27 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:27.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.009390+0000 mon.smithi052 (mon.0) 496 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:27.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.009390+0000 mon.smithi052 (mon.0) 496 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:27.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: cluster 2024-09-06T14:12:26.014678+0000 mon.smithi052 (mon.0) 497 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: cluster 2024-09-06T14:12:26.014678+0000 mon.smithi052 (mon.0) 497 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.015760+0000 mon.smithi052 (mon.0) 498 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.015760+0000 mon.smithi052 (mon.0) 498 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.016265+0000 mon.smithi052 (mon.0) 499 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.016265+0000 mon.smithi052 (mon.0) 499 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.016990+0000 mon.smithi052 (mon.0) 500 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.016990+0000 mon.smithi052 (mon.0) 500 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.028229+0000 mon.smithi052 (mon.0) 501 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.028229+0000 mon.smithi052 (mon.0) 501 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.028681+0000 mon.smithi052 (mon.0) 502 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.028681+0000 mon.smithi052 (mon.0) 502 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:27.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.029085+0000 mon.smithi052 (mon.0) 503 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:27.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.029085+0000 mon.smithi052 (mon.0) 503 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:27.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.029474+0000 mon.smithi052 (mon.0) 504 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:27.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.029474+0000 mon.smithi052 (mon.0) 504 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:27.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.029824+0000 mon.smithi052 (mon.0) 505 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:27.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.029824+0000 mon.smithi052 (mon.0) 505 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:27.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.030097+0000 mon.smithi052 (mon.0) 506 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:27.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.030097+0000 mon.smithi052 (mon.0) 506 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:27.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.514372+0000 mon.smithi052 (mon.0) 507 : audit [INF] from='osd.1 ' entity='osd.1' 2024-09-06T14:12:27.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:27 smithi148 bash[25697]: audit 2024-09-06T14:12:26.514372+0000 mon.smithi052 (mon.0) 507 : audit [INF] from='osd.1 ' entity='osd.1' 2024-09-06T14:12:28.017 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: cluster 2024-09-06T14:12:25.831917+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:28.017 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: cluster 2024-09-06T14:12:25.831917+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:28.017 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: cluster 2024-09-06T14:12:25.831974+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:28.017 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: cluster 2024-09-06T14:12:25.831974+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:28.017 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: cluster 2024-09-06T14:12:26.933176+0000 mgr.smithi052.grtqlq (mgr.14209) 134 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:28.017 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: cluster 2024-09-06T14:12:26.933176+0000 mgr.smithi052.grtqlq (mgr.14209) 134 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:28.292 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.026739+0000 mon.smithi052 (mon.0) 508 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.026739+0000 mon.smithi052 (mon.0) 508 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.342164+0000 mon.smithi052 (mon.0) 509 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.342164+0000 mon.smithi052 (mon.0) 509 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.349262+0000 mon.smithi052 (mon.0) 510 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.349262+0000 mon.smithi052 (mon.0) 510 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.350105+0000 mon.smithi052 (mon.0) 511 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.350105+0000 mon.smithi052 (mon.0) 511 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.351015+0000 mon.smithi052 (mon.0) 512 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.351015+0000 mon.smithi052 (mon.0) 512 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: cluster 2024-09-06T14:12:27.525063+0000 mon.smithi052 (mon.0) 513 : cluster [INF] osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136] boot 2024-09-06T14:12:28.293 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: cluster 2024-09-06T14:12:27.525063+0000 mon.smithi052 (mon.0) 513 : cluster [INF] osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136] boot 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: cluster 2024-09-06T14:12:27.525134+0000 mon.smithi052 (mon.0) 514 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: cluster 2024-09-06T14:12:27.525134+0000 mon.smithi052 (mon.0) 514 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.525356+0000 mon.smithi052 (mon.0) 515 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.525356+0000 mon.smithi052 (mon.0) 515 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.525824+0000 mon.smithi052 (mon.0) 516 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.525824+0000 mon.smithi052 (mon.0) 516 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.526217+0000 mon.smithi052 (mon.0) 517 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.526217+0000 mon.smithi052 (mon.0) 517 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.526754+0000 mon.smithi052 (mon.0) 518 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.526754+0000 mon.smithi052 (mon.0) 518 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.527102+0000 mon.smithi052 (mon.0) 519 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.527102+0000 mon.smithi052 (mon.0) 519 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.527395+0000 mon.smithi052 (mon.0) 520 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:28.294 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.527395+0000 mon.smithi052 (mon.0) 520 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:28.295 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.527727+0000 mon.smithi052 (mon.0) 521 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:28.295 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.527727+0000 mon.smithi052 (mon.0) 521 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:28.295 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.528064+0000 mon.smithi052 (mon.0) 522 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:28.295 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:28 smithi148 bash[25697]: audit 2024-09-06T14:12:27.528064+0000 mon.smithi052 (mon.0) 522 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:28.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: cluster 2024-09-06T14:12:25.831917+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:28.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: cluster 2024-09-06T14:12:25.831917+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:28.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: cluster 2024-09-06T14:12:25.831974+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:28.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: cluster 2024-09-06T14:12:25.831974+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: cluster 2024-09-06T14:12:26.933176+0000 mgr.smithi052.grtqlq (mgr.14209) 134 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: cluster 2024-09-06T14:12:26.933176+0000 mgr.smithi052.grtqlq (mgr.14209) 134 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.026739+0000 mon.smithi052 (mon.0) 508 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.026739+0000 mon.smithi052 (mon.0) 508 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.342164+0000 mon.smithi052 (mon.0) 509 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.342164+0000 mon.smithi052 (mon.0) 509 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.349262+0000 mon.smithi052 (mon.0) 510 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.349262+0000 mon.smithi052 (mon.0) 510 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.350105+0000 mon.smithi052 (mon.0) 511 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.350105+0000 mon.smithi052 (mon.0) 511 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.351015+0000 mon.smithi052 (mon.0) 512 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:28.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.351015+0000 mon.smithi052 (mon.0) 512 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: cluster 2024-09-06T14:12:27.525063+0000 mon.smithi052 (mon.0) 513 : cluster [INF] osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136] boot 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: cluster 2024-09-06T14:12:27.525063+0000 mon.smithi052 (mon.0) 513 : cluster [INF] osd.1 [v2:172.21.15.148:6800/2730797136,v1:172.21.15.148:6801/2730797136] boot 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: cluster 2024-09-06T14:12:27.525134+0000 mon.smithi052 (mon.0) 514 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: cluster 2024-09-06T14:12:27.525134+0000 mon.smithi052 (mon.0) 514 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.525356+0000 mon.smithi052 (mon.0) 515 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.525356+0000 mon.smithi052 (mon.0) 515 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.525824+0000 mon.smithi052 (mon.0) 516 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.525824+0000 mon.smithi052 (mon.0) 516 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.526217+0000 mon.smithi052 (mon.0) 517 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.526217+0000 mon.smithi052 (mon.0) 517 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.526754+0000 mon.smithi052 (mon.0) 518 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.526754+0000 mon.smithi052 (mon.0) 518 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:28.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.527102+0000 mon.smithi052 (mon.0) 519 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:28.442 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.527102+0000 mon.smithi052 (mon.0) 519 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:28.442 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.527395+0000 mon.smithi052 (mon.0) 520 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:28.442 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.527395+0000 mon.smithi052 (mon.0) 520 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:28.442 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.527727+0000 mon.smithi052 (mon.0) 521 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:28.442 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.527727+0000 mon.smithi052 (mon.0) 521 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:28.442 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.528064+0000 mon.smithi052 (mon.0) 522 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:28.442 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:28 smithi052 bash[19834]: audit 2024-09-06T14:12:27.528064+0000 mon.smithi052 (mon.0) 522 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:29.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: cephadm 2024-09-06T14:12:27.352955+0000 mgr.smithi052.grtqlq (mgr.14209) 135 : cephadm [INF] Deploying daemon osd.7 on smithi052 2024-09-06T14:12:29.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: cephadm 2024-09-06T14:12:27.352955+0000 mgr.smithi052.grtqlq (mgr.14209) 135 : cephadm [INF] Deploying daemon osd.7 on smithi052 2024-09-06T14:12:29.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: cluster 2024-09-06T14:12:28.531795+0000 mon.smithi052 (mon.0) 523 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-06T14:12:29.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: cluster 2024-09-06T14:12:28.531795+0000 mon.smithi052 (mon.0) 523 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-06T14:12:29.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.532145+0000 mon.smithi052 (mon.0) 524 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:29.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.532145+0000 mon.smithi052 (mon.0) 524 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.532956+0000 mon.smithi052 (mon.0) 525 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.532956+0000 mon.smithi052 (mon.0) 525 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.533515+0000 mon.smithi052 (mon.0) 526 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.533515+0000 mon.smithi052 (mon.0) 526 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.534055+0000 mon.smithi052 (mon.0) 527 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.534055+0000 mon.smithi052 (mon.0) 527 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.534645+0000 mon.smithi052 (mon.0) 528 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.534645+0000 mon.smithi052 (mon.0) 528 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.535199+0000 mon.smithi052 (mon.0) 529 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.535199+0000 mon.smithi052 (mon.0) 529 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.535747+0000 mon.smithi052 (mon.0) 530 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.535747+0000 mon.smithi052 (mon.0) 530 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.585709+0000 mon.smithi052 (mon.0) 531 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T14:12:29.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:29 smithi052 bash[19834]: audit 2024-09-06T14:12:28.585709+0000 mon.smithi052 (mon.0) 531 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T14:12:29.339 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: cephadm 2024-09-06T14:12:27.352955+0000 mgr.smithi052.grtqlq (mgr.14209) 135 : cephadm [INF] Deploying daemon osd.7 on smithi052 2024-09-06T14:12:29.339 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: cephadm 2024-09-06T14:12:27.352955+0000 mgr.smithi052.grtqlq (mgr.14209) 135 : cephadm [INF] Deploying daemon osd.7 on smithi052 2024-09-06T14:12:29.339 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: cluster 2024-09-06T14:12:28.531795+0000 mon.smithi052 (mon.0) 523 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-06T14:12:29.339 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: cluster 2024-09-06T14:12:28.531795+0000 mon.smithi052 (mon.0) 523 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.532145+0000 mon.smithi052 (mon.0) 524 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.532145+0000 mon.smithi052 (mon.0) 524 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.532956+0000 mon.smithi052 (mon.0) 525 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.532956+0000 mon.smithi052 (mon.0) 525 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.533515+0000 mon.smithi052 (mon.0) 526 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.533515+0000 mon.smithi052 (mon.0) 526 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.534055+0000 mon.smithi052 (mon.0) 527 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.534055+0000 mon.smithi052 (mon.0) 527 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.534645+0000 mon.smithi052 (mon.0) 528 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.534645+0000 mon.smithi052 (mon.0) 528 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.535199+0000 mon.smithi052 (mon.0) 529 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.535199+0000 mon.smithi052 (mon.0) 529 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:29.340 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.535747+0000 mon.smithi052 (mon.0) 530 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:29.341 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.535747+0000 mon.smithi052 (mon.0) 530 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:29.341 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.585709+0000 mon.smithi052 (mon.0) 531 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T14:12:29.341 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 bash[25697]: audit 2024-09-06T14:12:28.585709+0000 mon.smithi052 (mon.0) 531 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T14:12:29.341 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:29.603 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:29 smithi148 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:30.310 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: cluster 2024-09-06T14:12:28.933601+0000 mgr.smithi052.grtqlq (mgr.14209) 136 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-06T14:12:30.310 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: cluster 2024-09-06T14:12:28.933601+0000 mgr.smithi052.grtqlq (mgr.14209) 136 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.530138+0000 mon.smithi052 (mon.0) 532 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.530138+0000 mon.smithi052 (mon.0) 532 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: cluster 2024-09-06T14:12:29.532247+0000 mon.smithi052 (mon.0) 533 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: cluster 2024-09-06T14:12:29.532247+0000 mon.smithi052 (mon.0) 533 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.532427+0000 mon.smithi052 (mon.0) 534 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.532427+0000 mon.smithi052 (mon.0) 534 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.532616+0000 mon.smithi052 (mon.0) 535 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.532616+0000 mon.smithi052 (mon.0) 535 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.532800+0000 mon.smithi052 (mon.0) 536 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.532800+0000 mon.smithi052 (mon.0) 536 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.532985+0000 mon.smithi052 (mon.0) 537 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:30.311 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.532985+0000 mon.smithi052 (mon.0) 537 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.533173+0000 mon.smithi052 (mon.0) 538 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.533173+0000 mon.smithi052 (mon.0) 538 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.533357+0000 mon.smithi052 (mon.0) 539 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.533357+0000 mon.smithi052 (mon.0) 539 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.533538+0000 mon.smithi052 (mon.0) 540 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.533538+0000 mon.smithi052 (mon.0) 540 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.533718+0000 mon.smithi052 (mon.0) 541 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.533718+0000 mon.smithi052 (mon.0) 541 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.658956+0000 mon.smithi052 (mon.0) 542 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.658956+0000 mon.smithi052 (mon.0) 542 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:30.312 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.667051+0000 mon.smithi052 (mon.0) 543 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:30.313 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:30 smithi052 bash[19834]: audit 2024-09-06T14:12:29.667051+0000 mon.smithi052 (mon.0) 543 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:30.463 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: cluster 2024-09-06T14:12:28.933601+0000 mgr.smithi052.grtqlq (mgr.14209) 136 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-06T14:12:30.463 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: cluster 2024-09-06T14:12:28.933601+0000 mgr.smithi052.grtqlq (mgr.14209) 136 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-06T14:12:30.463 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.530138+0000 mon.smithi052 (mon.0) 532 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-06T14:12:30.463 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.530138+0000 mon.smithi052 (mon.0) 532 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-06T14:12:30.463 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: cluster 2024-09-06T14:12:29.532247+0000 mon.smithi052 (mon.0) 533 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-06T14:12:30.463 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: cluster 2024-09-06T14:12:29.532247+0000 mon.smithi052 (mon.0) 533 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-06T14:12:30.463 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.532427+0000 mon.smithi052 (mon.0) 534 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:30.463 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.532427+0000 mon.smithi052 (mon.0) 534 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.532616+0000 mon.smithi052 (mon.0) 535 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.532616+0000 mon.smithi052 (mon.0) 535 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.532800+0000 mon.smithi052 (mon.0) 536 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.532800+0000 mon.smithi052 (mon.0) 536 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.532985+0000 mon.smithi052 (mon.0) 537 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.532985+0000 mon.smithi052 (mon.0) 537 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.533173+0000 mon.smithi052 (mon.0) 538 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.533173+0000 mon.smithi052 (mon.0) 538 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.533357+0000 mon.smithi052 (mon.0) 539 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.533357+0000 mon.smithi052 (mon.0) 539 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:30.464 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.533538+0000 mon.smithi052 (mon.0) 540 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:30.465 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.533538+0000 mon.smithi052 (mon.0) 540 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:30.465 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.533718+0000 mon.smithi052 (mon.0) 541 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:30.465 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.533718+0000 mon.smithi052 (mon.0) 541 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:30.465 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.658956+0000 mon.smithi052 (mon.0) 542 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:30.465 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.658956+0000 mon.smithi052 (mon.0) 542 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:30.465 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.667051+0000 mon.smithi052 (mon.0) 543 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:30.465 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:30 smithi148 bash[25697]: audit 2024-09-06T14:12:29.667051+0000 mon.smithi052 (mon.0) 543 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:31.412 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:12:31.566 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.532603+0000 mon.smithi052 (mon.0) 544 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:31.566 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.532603+0000 mon.smithi052 (mon.0) 544 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:31.566 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: cluster 2024-09-06T14:12:30.537479+0000 mon.smithi052 (mon.0) 545 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-06T14:12:31.566 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: cluster 2024-09-06T14:12:30.537479+0000 mon.smithi052 (mon.0) 545 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-06T14:12:31.566 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.538360+0000 mon.smithi052 (mon.0) 546 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.538360+0000 mon.smithi052 (mon.0) 546 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.538594+0000 mon.smithi052 (mon.0) 547 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.538594+0000 mon.smithi052 (mon.0) 547 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.538860+0000 mon.smithi052 (mon.0) 548 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.538860+0000 mon.smithi052 (mon.0) 548 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.539129+0000 mon.smithi052 (mon.0) 549 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.539129+0000 mon.smithi052 (mon.0) 549 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.539365+0000 mon.smithi052 (mon.0) 550 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.539365+0000 mon.smithi052 (mon.0) 550 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.539607+0000 mon.smithi052 (mon.0) 551 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.539607+0000 mon.smithi052 (mon.0) 551 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.539813+0000 mon.smithi052 (mon.0) 552 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.539813+0000 mon.smithi052 (mon.0) 552 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:31.567 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.544040+0000 mon.smithi052 (mon.0) 553 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:31.568 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.544040+0000 mon.smithi052 (mon.0) 553 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:31.568 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.867780+0000 mon.smithi052 (mon.0) 554 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' 2024-09-06T14:12:31.568 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: audit 2024-09-06T14:12:30.867780+0000 mon.smithi052 (mon.0) 554 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' 2024-09-06T14:12:31.568 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: cluster 2024-09-06T14:12:30.933992+0000 mgr.smithi052.grtqlq (mgr.14209) 137 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-06T14:12:31.568 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:31 smithi052 bash[19834]: cluster 2024-09-06T14:12:30.933992+0000 mgr.smithi052.grtqlq (mgr.14209) 137 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-06T14:12:31.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.532603+0000 mon.smithi052 (mon.0) 544 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:31.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.532603+0000 mon.smithi052 (mon.0) 544 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:31.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: cluster 2024-09-06T14:12:30.537479+0000 mon.smithi052 (mon.0) 545 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-06T14:12:31.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: cluster 2024-09-06T14:12:30.537479+0000 mon.smithi052 (mon.0) 545 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-06T14:12:31.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.538360+0000 mon.smithi052 (mon.0) 546 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:31.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.538360+0000 mon.smithi052 (mon.0) 546 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:31.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.538594+0000 mon.smithi052 (mon.0) 547 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.538594+0000 mon.smithi052 (mon.0) 547 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.538860+0000 mon.smithi052 (mon.0) 548 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.538860+0000 mon.smithi052 (mon.0) 548 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.539129+0000 mon.smithi052 (mon.0) 549 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.539129+0000 mon.smithi052 (mon.0) 549 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.539365+0000 mon.smithi052 (mon.0) 550 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.539365+0000 mon.smithi052 (mon.0) 550 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.539607+0000 mon.smithi052 (mon.0) 551 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.539607+0000 mon.smithi052 (mon.0) 551 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.539813+0000 mon.smithi052 (mon.0) 552 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.539813+0000 mon.smithi052 (mon.0) 552 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.544040+0000 mon.smithi052 (mon.0) 553 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:31.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.544040+0000 mon.smithi052 (mon.0) 553 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:31.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.867780+0000 mon.smithi052 (mon.0) 554 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' 2024-09-06T14:12:31.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: audit 2024-09-06T14:12:30.867780+0000 mon.smithi052 (mon.0) 554 : audit [INF] from='osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964]' entity='osd.0' 2024-09-06T14:12:31.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: cluster 2024-09-06T14:12:30.933992+0000 mgr.smithi052.grtqlq (mgr.14209) 137 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-06T14:12:31.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:31 smithi148 bash[25697]: cluster 2024-09-06T14:12:30.933992+0000 mgr.smithi052.grtqlq (mgr.14209) 137 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-06T14:12:32.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: cluster 2024-09-06T14:12:29.593455+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:32.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: cluster 2024-09-06T14:12:29.593455+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:32.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: cluster 2024-09-06T14:12:29.593559+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:32.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: cluster 2024-09-06T14:12:29.593559+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:32.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.543035+0000 mon.smithi052 (mon.0) 555 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:32.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.543035+0000 mon.smithi052 (mon.0) 555 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:32.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.748310+0000 mon.smithi052 (mon.0) 556 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T14:12:32.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.748310+0000 mon.smithi052 (mon.0) 556 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T14:12:32.768 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.748789+0000 mon.smithi148 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T14:12:32.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.748789+0000 mon.smithi148 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T14:12:32.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.867504+0000 mon.smithi052 (mon.0) 557 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-06T14:12:32.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.867504+0000 mon.smithi052 (mon.0) 557 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-06T14:12:32.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.872521+0000 mon.smithi148 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:32.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.872521+0000 mon.smithi148 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:32.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: cluster 2024-09-06T14:12:31.873674+0000 mon.smithi052 (mon.0) 558 : cluster [INF] osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964] boot 2024-09-06T14:12:32.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: cluster 2024-09-06T14:12:31.873674+0000 mon.smithi052 (mon.0) 558 : cluster [INF] osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964] boot 2024-09-06T14:12:32.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: cluster 2024-09-06T14:12:31.873772+0000 mon.smithi052 (mon.0) 559 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-06T14:12:32.769 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: cluster 2024-09-06T14:12:31.873772+0000 mon.smithi052 (mon.0) 559 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.875553+0000 mon.smithi052 (mon.0) 560 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.875553+0000 mon.smithi052 (mon.0) 560 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.880381+0000 mon.smithi052 (mon.0) 561 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.880381+0000 mon.smithi052 (mon.0) 561 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.880990+0000 mon.smithi052 (mon.0) 562 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.880990+0000 mon.smithi052 (mon.0) 562 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.881433+0000 mon.smithi052 (mon.0) 563 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.881433+0000 mon.smithi052 (mon.0) 563 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.881947+0000 mon.smithi052 (mon.0) 564 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.881947+0000 mon.smithi052 (mon.0) 564 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:32.770 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.882516+0000 mon.smithi052 (mon.0) 565 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:32.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.882516+0000 mon.smithi052 (mon.0) 565 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:32.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.883087+0000 mon.smithi052 (mon.0) 566 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:32.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.883087+0000 mon.smithi052 (mon.0) 566 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:32.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.883713+0000 mon.smithi052 (mon.0) 567 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:32.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:31.883713+0000 mon.smithi052 (mon.0) 567 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:32.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:32.489748+0000 mon.smithi052 (mon.0) 568 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-06T14:12:32.771 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:32 smithi052 bash[19834]: audit 2024-09-06T14:12:32.489748+0000 mon.smithi052 (mon.0) 568 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-06T14:12:32.874 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: cluster 2024-09-06T14:12:29.593455+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:32.874 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: cluster 2024-09-06T14:12:29.593455+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:32.874 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: cluster 2024-09-06T14:12:29.593559+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:32.874 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: cluster 2024-09-06T14:12:29.593559+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:32.874 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.543035+0000 mon.smithi052 (mon.0) 555 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:32.874 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.543035+0000 mon.smithi052 (mon.0) 555 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:32.874 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.748310+0000 mon.smithi052 (mon.0) 556 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T14:12:32.874 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.748310+0000 mon.smithi052 (mon.0) 556 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T14:12:32.874 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.748789+0000 mon.smithi148 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T14:12:32.874 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.748789+0000 mon.smithi148 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T14:12:32.875 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.867504+0000 mon.smithi052 (mon.0) 557 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-06T14:12:32.875 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.867504+0000 mon.smithi052 (mon.0) 557 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-06T14:12:32.875 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.872521+0000 mon.smithi148 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:32.875 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.872521+0000 mon.smithi148 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:32.875 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: cluster 2024-09-06T14:12:31.873674+0000 mon.smithi052 (mon.0) 558 : cluster [INF] osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964] boot 2024-09-06T14:12:32.875 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: cluster 2024-09-06T14:12:31.873674+0000 mon.smithi052 (mon.0) 558 : cluster [INF] osd.0 [v2:172.21.15.52:6802/2272927964,v1:172.21.15.52:6803/2272927964] boot 2024-09-06T14:12:32.875 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: cluster 2024-09-06T14:12:31.873772+0000 mon.smithi052 (mon.0) 559 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-06T14:12:32.875 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: cluster 2024-09-06T14:12:31.873772+0000 mon.smithi052 (mon.0) 559 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.875553+0000 mon.smithi052 (mon.0) 560 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.875553+0000 mon.smithi052 (mon.0) 560 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.880381+0000 mon.smithi052 (mon.0) 561 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.880381+0000 mon.smithi052 (mon.0) 561 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.880990+0000 mon.smithi052 (mon.0) 562 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.880990+0000 mon.smithi052 (mon.0) 562 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.881433+0000 mon.smithi052 (mon.0) 563 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.881433+0000 mon.smithi052 (mon.0) 563 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.881947+0000 mon.smithi052 (mon.0) 564 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.881947+0000 mon.smithi052 (mon.0) 564 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.882516+0000 mon.smithi052 (mon.0) 565 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:32.876 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.882516+0000 mon.smithi052 (mon.0) 565 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:32.877 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.883087+0000 mon.smithi052 (mon.0) 566 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:32.877 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.883087+0000 mon.smithi052 (mon.0) 566 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:32.877 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.883713+0000 mon.smithi052 (mon.0) 567 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:32.877 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:31.883713+0000 mon.smithi052 (mon.0) 567 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:32.877 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:32.489748+0000 mon.smithi052 (mon.0) 568 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-06T14:12:32.877 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:32 smithi148 bash[25697]: audit 2024-09-06T14:12:32.489748+0000 mon.smithi052 (mon.0) 568 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-06T14:12:33.759 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:34.023 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.878267+0000 mon.smithi052 (mon.0) 569 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:34.024 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.878267+0000 mon.smithi052 (mon.0) 569 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:34.024 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.878464+0000 mon.smithi052 (mon.0) 570 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-06T14:12:34.024 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.878464+0000 mon.smithi052 (mon.0) 570 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-06T14:12:34.024 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: cluster 2024-09-06T14:12:32.883240+0000 mon.smithi052 (mon.0) 571 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-09-06T14:12:34.024 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: cluster 2024-09-06T14:12:32.883240+0000 mon.smithi052 (mon.0) 571 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-09-06T14:12:34.024 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.883802+0000 mon.smithi052 (mon.0) 572 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:34.024 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.883802+0000 mon.smithi052 (mon.0) 572 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:34.024 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.884326+0000 mon.smithi052 (mon.0) 573 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:34.024 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.884326+0000 mon.smithi052 (mon.0) 573 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.884732+0000 mon.smithi052 (mon.0) 574 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.884732+0000 mon.smithi052 (mon.0) 574 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.885222+0000 mon.smithi052 (mon.0) 575 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.885222+0000 mon.smithi052 (mon.0) 575 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.885617+0000 mon.smithi052 (mon.0) 576 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.885617+0000 mon.smithi052 (mon.0) 576 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.885993+0000 mon.smithi052 (mon.0) 577 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.885993+0000 mon.smithi052 (mon.0) 577 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.886417+0000 mon.smithi052 (mon.0) 578 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.886417+0000 mon.smithi052 (mon.0) 578 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.888878+0000 mon.smithi052 (mon.0) 579 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:34.025 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:32.888878+0000 mon.smithi052 (mon.0) 579 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:34.026 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: cluster 2024-09-06T14:12:32.934508+0000 mgr.smithi052.grtqlq (mgr.14209) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-06T14:12:34.026 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: cluster 2024-09-06T14:12:32.934508+0000 mgr.smithi052.grtqlq (mgr.14209) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-06T14:12:34.026 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:33.401618+0000 mon.smithi052 (mon.0) 580 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-06T14:12:34.026 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 bash[19834]: audit 2024-09-06T14:12:33.401618+0000 mon.smithi052 (mon.0) 580 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-06T14:12:34.026 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:33 smithi052 systemd[1]: /etc/systemd/system/ceph-11d261e0-6c59-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:12:34.059 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:12:34.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.878267+0000 mon.smithi052 (mon.0) 569 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.878267+0000 mon.smithi052 (mon.0) 569 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.878464+0000 mon.smithi052 (mon.0) 570 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.878464+0000 mon.smithi052 (mon.0) 570 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: cluster 2024-09-06T14:12:32.883240+0000 mon.smithi052 (mon.0) 571 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: cluster 2024-09-06T14:12:32.883240+0000 mon.smithi052 (mon.0) 571 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.883802+0000 mon.smithi052 (mon.0) 572 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.883802+0000 mon.smithi052 (mon.0) 572 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.884326+0000 mon.smithi052 (mon.0) 573 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.884326+0000 mon.smithi052 (mon.0) 573 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.884732+0000 mon.smithi052 (mon.0) 574 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.884732+0000 mon.smithi052 (mon.0) 574 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:34.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.885222+0000 mon.smithi052 (mon.0) 575 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.885222+0000 mon.smithi052 (mon.0) 575 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.885617+0000 mon.smithi052 (mon.0) 576 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.885617+0000 mon.smithi052 (mon.0) 576 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.885993+0000 mon.smithi052 (mon.0) 577 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.885993+0000 mon.smithi052 (mon.0) 577 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.886417+0000 mon.smithi052 (mon.0) 578 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.886417+0000 mon.smithi052 (mon.0) 578 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.888878+0000 mon.smithi052 (mon.0) 579 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:32.888878+0000 mon.smithi052 (mon.0) 579 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: cluster 2024-09-06T14:12:32.934508+0000 mgr.smithi052.grtqlq (mgr.14209) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: cluster 2024-09-06T14:12:32.934508+0000 mgr.smithi052.grtqlq (mgr.14209) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:33.401618+0000 mon.smithi052 (mon.0) 580 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-06T14:12:34.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:33 smithi148 bash[25697]: audit 2024-09-06T14:12:33.401618+0000 mon.smithi052 (mon.0) 580 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-06T14:12:35.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: cluster 2024-09-06T14:12:32.773946+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:35.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: cluster 2024-09-06T14:12:32.773946+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:35.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: cluster 2024-09-06T14:12:32.774091+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: cluster 2024-09-06T14:12:32.774091+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.888522+0000 mon.smithi052 (mon.0) 581 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.888522+0000 mon.smithi052 (mon.0) 581 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.890507+0000 mon.smithi052 (mon.0) 582 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.890507+0000 mon.smithi052 (mon.0) 582 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: cluster 2024-09-06T14:12:33.895286+0000 mon.smithi052 (mon.0) 583 : cluster [INF] osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311] boot 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: cluster 2024-09-06T14:12:33.895286+0000 mon.smithi052 (mon.0) 583 : cluster [INF] osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311] boot 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: cluster 2024-09-06T14:12:33.895328+0000 mon.smithi052 (mon.0) 584 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: cluster 2024-09-06T14:12:33.895328+0000 mon.smithi052 (mon.0) 584 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896063+0000 mon.smithi052 (mon.0) 585 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896063+0000 mon.smithi052 (mon.0) 585 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:35.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896288+0000 mon.smithi052 (mon.0) 586 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896288+0000 mon.smithi052 (mon.0) 586 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896462+0000 mon.smithi052 (mon.0) 587 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896462+0000 mon.smithi052 (mon.0) 587 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896679+0000 mon.smithi052 (mon.0) 588 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896679+0000 mon.smithi052 (mon.0) 588 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896830+0000 mon.smithi052 (mon.0) 589 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896830+0000 mon.smithi052 (mon.0) 589 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896971+0000 mon.smithi052 (mon.0) 590 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.896971+0000 mon.smithi052 (mon.0) 590 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.900489+0000 mon.smithi052 (mon.0) 591 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:35.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:33.900489+0000 mon.smithi052 (mon.0) 591 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:35.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:34.064465+0000 mon.smithi052 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.52:0/3927973635' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:35.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:34.064465+0000 mon.smithi052 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.52:0/3927973635' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:35.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:34.084654+0000 mon.smithi052 (mon.0) 593 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:35.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:34.084654+0000 mon.smithi052 (mon.0) 593 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:35.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:34.090393+0000 mon.smithi052 (mon.0) 594 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:35.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:34.090393+0000 mon.smithi052 (mon.0) 594 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:35.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:34.218035+0000 mon.smithi052 (mon.0) 595 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' 2024-09-06T14:12:35.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:34 smithi148 bash[25697]: audit 2024-09-06T14:12:34.218035+0000 mon.smithi052 (mon.0) 595 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' 2024-09-06T14:12:35.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: cluster 2024-09-06T14:12:32.773946+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:35.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: cluster 2024-09-06T14:12:32.773946+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:35.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: cluster 2024-09-06T14:12:32.774091+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:35.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: cluster 2024-09-06T14:12:32.774091+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:35.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.888522+0000 mon.smithi052 (mon.0) 581 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:35.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.888522+0000 mon.smithi052 (mon.0) 581 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:35.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.890507+0000 mon.smithi052 (mon.0) 582 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:35.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.890507+0000 mon.smithi052 (mon.0) 582 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: cluster 2024-09-06T14:12:33.895286+0000 mon.smithi052 (mon.0) 583 : cluster [INF] osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311] boot 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: cluster 2024-09-06T14:12:33.895286+0000 mon.smithi052 (mon.0) 583 : cluster [INF] osd.2 [v2:172.21.15.148:6808/3192758311,v1:172.21.15.148:6809/3192758311] boot 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: cluster 2024-09-06T14:12:33.895328+0000 mon.smithi052 (mon.0) 584 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: cluster 2024-09-06T14:12:33.895328+0000 mon.smithi052 (mon.0) 584 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896063+0000 mon.smithi052 (mon.0) 585 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896063+0000 mon.smithi052 (mon.0) 585 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896288+0000 mon.smithi052 (mon.0) 586 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896288+0000 mon.smithi052 (mon.0) 586 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896462+0000 mon.smithi052 (mon.0) 587 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896462+0000 mon.smithi052 (mon.0) 587 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:35.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896679+0000 mon.smithi052 (mon.0) 588 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896679+0000 mon.smithi052 (mon.0) 588 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896830+0000 mon.smithi052 (mon.0) 589 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896830+0000 mon.smithi052 (mon.0) 589 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896971+0000 mon.smithi052 (mon.0) 590 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.896971+0000 mon.smithi052 (mon.0) 590 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.900489+0000 mon.smithi052 (mon.0) 591 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:33.900489+0000 mon.smithi052 (mon.0) 591 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:34.064465+0000 mon.smithi052 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.52:0/3927973635' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:34.064465+0000 mon.smithi052 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.52:0/3927973635' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:34.084654+0000 mon.smithi052 (mon.0) 593 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:34.084654+0000 mon.smithi052 (mon.0) 593 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:34.090393+0000 mon.smithi052 (mon.0) 594 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:35.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:34.090393+0000 mon.smithi052 (mon.0) 594 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:35.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:34.218035+0000 mon.smithi052 (mon.0) 595 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' 2024-09-06T14:12:35.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:34 smithi052 bash[19834]: audit 2024-09-06T14:12:34.218035+0000 mon.smithi052 (mon.0) 595 : audit [INF] from='osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205]' entity='osd.3' 2024-09-06T14:12:35.609 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":22,"num_osds":8,"num_up_osds":3,"osd_up_since":1725631953,"num_in_osds":8,"osd_in_since":1725631912,"num_remapped_pgs":0} 2024-09-06T14:12:36.107 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: cluster 2024-09-06T14:12:33.487214+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:36.107 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: cluster 2024-09-06T14:12:33.487214+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:36.107 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: cluster 2024-09-06T14:12:33.487338+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:36.107 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: cluster 2024-09-06T14:12:33.487338+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:36.107 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:34.904027+0000 mon.smithi052 (mon.0) 596 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:36.107 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:34.904027+0000 mon.smithi052 (mon.0) 596 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:36.107 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: cluster 2024-09-06T14:12:34.934990+0000 mgr.smithi052.grtqlq (mgr.14209) 139 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T14:12:36.107 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: cluster 2024-09-06T14:12:34.934990+0000 mgr.smithi052.grtqlq (mgr.14209) 139 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.139620+0000 mon.smithi052 (mon.0) 597 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.139620+0000 mon.smithi052 (mon.0) 597 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.219348+0000 mon.smithi052 (mon.0) 598 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.219348+0000 mon.smithi052 (mon.0) 598 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: cluster 2024-09-06T14:12:35.227016+0000 mon.smithi052 (mon.0) 599 : cluster [INF] osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205] boot 2024-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: cluster 2024-09-06T14:12:35.227016+0000 mon.smithi052 (mon.0) 599 : cluster [INF] osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205] boot 2024-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: cluster 2024-09-06T14:12:35.227078+0000 mon.smithi052 (mon.0) 600 : cluster [DBG] osdmap e23: 8 total, 4 up, 8 in 2024-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: cluster 2024-09-06T14:12:35.227078+0000 mon.smithi052 (mon.0) 600 : cluster [DBG] osdmap e23: 8 total, 4 up, 8 in 2024-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.228022+0000 mon.smithi052 (mon.0) 601 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.228022+0000 mon.smithi052 (mon.0) 601 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.228869+0000 mon.smithi052 (mon.0) 602 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.228869+0000 mon.smithi052 (mon.0) 602 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:36.108 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.229487+0000 mon.smithi052 (mon.0) 603 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:36.109 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.229487+0000 mon.smithi052 (mon.0) 603 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:36.109 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.230119+0000 mon.smithi052 (mon.0) 604 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:36.109 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.230119+0000 mon.smithi052 (mon.0) 604 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:36.109 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.230864+0000 mon.smithi052 (mon.0) 605 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:36.109 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.230864+0000 mon.smithi052 (mon.0) 605 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:36.109 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.231583+0000 mon.smithi052 (mon.0) 606 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-06T14:12:36.109 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:35 smithi052 bash[19834]: audit 2024-09-06T14:12:35.231583+0000 mon.smithi052 (mon.0) 606 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-06T14:12:36.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: cluster 2024-09-06T14:12:33.487214+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:36.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: cluster 2024-09-06T14:12:33.487214+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: cluster 2024-09-06T14:12:33.487338+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: cluster 2024-09-06T14:12:33.487338+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:34.904027+0000 mon.smithi052 (mon.0) 596 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:34.904027+0000 mon.smithi052 (mon.0) 596 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: cluster 2024-09-06T14:12:34.934990+0000 mgr.smithi052.grtqlq (mgr.14209) 139 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: cluster 2024-09-06T14:12:34.934990+0000 mgr.smithi052.grtqlq (mgr.14209) 139 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.139620+0000 mon.smithi052 (mon.0) 597 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.139620+0000 mon.smithi052 (mon.0) 597 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.219348+0000 mon.smithi052 (mon.0) 598 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.219348+0000 mon.smithi052 (mon.0) 598 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 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-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: cluster 2024-09-06T14:12:35.227016+0000 mon.smithi052 (mon.0) 599 : cluster [INF] osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205] boot 2024-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: cluster 2024-09-06T14:12:35.227016+0000 mon.smithi052 (mon.0) 599 : cluster [INF] osd.3 [v2:172.21.15.52:6810/3115152205,v1:172.21.15.52:6811/3115152205] boot 2024-09-06T14:12:36.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: cluster 2024-09-06T14:12:35.227078+0000 mon.smithi052 (mon.0) 600 : cluster [DBG] osdmap e23: 8 total, 4 up, 8 in 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: cluster 2024-09-06T14:12:35.227078+0000 mon.smithi052 (mon.0) 600 : cluster [DBG] osdmap e23: 8 total, 4 up, 8 in 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.228022+0000 mon.smithi052 (mon.0) 601 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.228022+0000 mon.smithi052 (mon.0) 601 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.228869+0000 mon.smithi052 (mon.0) 602 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.228869+0000 mon.smithi052 (mon.0) 602 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.229487+0000 mon.smithi052 (mon.0) 603 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.229487+0000 mon.smithi052 (mon.0) 603 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.230119+0000 mon.smithi052 (mon.0) 604 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.230119+0000 mon.smithi052 (mon.0) 604 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.230864+0000 mon.smithi052 (mon.0) 605 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.230864+0000 mon.smithi052 (mon.0) 605 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.231583+0000 mon.smithi052 (mon.0) 606 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-06T14:12:36.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:35 smithi148 bash[25697]: audit 2024-09-06T14:12:35.231583+0000 mon.smithi052 (mon.0) 606 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-06T14:12:36.610 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:12:37.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.063459+0000 mon.smithi052 (mon.0) 607 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.063459+0000 mon.smithi052 (mon.0) 607 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.063783+0000 mon.smithi148 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.063783+0000 mon.smithi148 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.221022+0000 mon.smithi052 (mon.0) 608 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.221022+0000 mon.smithi052 (mon.0) 608 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.221087+0000 mon.smithi052 (mon.0) 609 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.221087+0000 mon.smithi052 (mon.0) 609 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: cluster 2024-09-06T14:12:36.223759+0000 mon.smithi052 (mon.0) 610 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: cluster 2024-09-06T14:12:36.223759+0000 mon.smithi052 (mon.0) 610 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.223991+0000 mon.smithi052 (mon.0) 611 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.223991+0000 mon.smithi052 (mon.0) 611 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:37.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.224216+0000 mon.smithi052 (mon.0) 612 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.224216+0000 mon.smithi052 (mon.0) 612 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.224385+0000 mon.smithi052 (mon.0) 613 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.224385+0000 mon.smithi052 (mon.0) 613 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.224548+0000 mon.smithi052 (mon.0) 614 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.224548+0000 mon.smithi052 (mon.0) 614 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.229025+0000 mon.smithi052 (mon.0) 615 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.229025+0000 mon.smithi052 (mon.0) 615 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.229590+0000 mon.smithi148 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.229590+0000 mon.smithi148 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.834149+0000 mon.smithi052 (mon.0) 616 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:37.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:36 smithi148 bash[25697]: audit 2024-09-06T14:12:36.834149+0000 mon.smithi052 (mon.0) 616 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:37.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.063459+0000 mon.smithi052 (mon.0) 607 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T14:12:37.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.063459+0000 mon.smithi052 (mon.0) 607 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T14:12:37.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.063783+0000 mon.smithi148 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T14:12:37.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.063783+0000 mon.smithi148 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.221022+0000 mon.smithi052 (mon.0) 608 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.221022+0000 mon.smithi052 (mon.0) 608 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.221087+0000 mon.smithi052 (mon.0) 609 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.221087+0000 mon.smithi052 (mon.0) 609 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: cluster 2024-09-06T14:12:36.223759+0000 mon.smithi052 (mon.0) 610 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: cluster 2024-09-06T14:12:36.223759+0000 mon.smithi052 (mon.0) 610 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.223991+0000 mon.smithi052 (mon.0) 611 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.223991+0000 mon.smithi052 (mon.0) 611 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.224216+0000 mon.smithi052 (mon.0) 612 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.224216+0000 mon.smithi052 (mon.0) 612 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.224385+0000 mon.smithi052 (mon.0) 613 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.224385+0000 mon.smithi052 (mon.0) 613 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:37.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.224548+0000 mon.smithi052 (mon.0) 614 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:37.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.224548+0000 mon.smithi052 (mon.0) 614 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:37.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.229025+0000 mon.smithi052 (mon.0) 615 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:37.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.229025+0000 mon.smithi052 (mon.0) 615 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:37.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.229590+0000 mon.smithi148 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:37.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.229590+0000 mon.smithi148 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:37.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.834149+0000 mon.smithi052 (mon.0) 616 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:37.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:36 smithi052 bash[19834]: audit 2024-09-06T14:12:36.834149+0000 mon.smithi052 (mon.0) 616 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:36.910412+0000 mon.smithi052 (mon.0) 617 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:36.910412+0000 mon.smithi052 (mon.0) 617 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: cluster 2024-09-06T14:12:36.935328+0000 mgr.smithi052.grtqlq (mgr.14209) 140 : cluster [DBG] pgmap v90: 1 pgs: 1 creating+peering; 0 B data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: cluster 2024-09-06T14:12:36.935328+0000 mgr.smithi052.grtqlq (mgr.14209) 140 : cluster [DBG] pgmap v90: 1 pgs: 1 creating+peering; 0 B data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:36.976342+0000 mon.smithi052 (mon.0) 618 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:36.976342+0000 mon.smithi052 (mon.0) 618 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.038021+0000 mon.smithi052 (mon.0) 619 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.038021+0000 mon.smithi052 (mon.0) 619 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.040540+0000 mon.smithi052 (mon.0) 620 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.040540+0000 mon.smithi052 (mon.0) 620 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.078130+0000 mon.smithi052 (mon.0) 621 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.078130+0000 mon.smithi052 (mon.0) 621 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.078276+0000 mon.smithi052 (mon.0) 622 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:12:38.186 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.078276+0000 mon.smithi052 (mon.0) 622 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.078590+0000 mon.smithi052 (mon.0) 623 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.078590+0000 mon.smithi052 (mon.0) 623 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.078729+0000 mon.smithi052 (mon.0) 624 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.078729+0000 mon.smithi052 (mon.0) 624 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.105054+0000 mon.smithi052 (mon.0) 625 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.105054+0000 mon.smithi052 (mon.0) 625 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.106837+0000 mon.smithi052 (mon.0) 626 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.106837+0000 mon.smithi052 (mon.0) 626 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.106961+0000 mon.smithi052 (mon.0) 627 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.106961+0000 mon.smithi052 (mon.0) 627 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.107856+0000 mon.smithi148 (mon.1) 16 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.107856+0000 mon.smithi148 (mon.1) 16 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T14:12:38.187 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.146827+0000 mon.smithi148 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.146827+0000 mon.smithi148 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.167726+0000 mon.smithi052 (mon.0) 628 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.167726+0000 mon.smithi052 (mon.0) 628 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.222637+0000 mon.smithi052 (mon.0) 629 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.222637+0000 mon.smithi052 (mon.0) 629 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: cluster 2024-09-06T14:12:37.225185+0000 mon.smithi052 (mon.0) 630 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: cluster 2024-09-06T14:12:37.225185+0000 mon.smithi052 (mon.0) 630 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.225566+0000 mon.smithi052 (mon.0) 631 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.225566+0000 mon.smithi052 (mon.0) 631 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.226067+0000 mon.smithi052 (mon.0) 632 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.226067+0000 mon.smithi052 (mon.0) 632 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.226598+0000 mon.smithi052 (mon.0) 633 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:38.188 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.226598+0000 mon.smithi052 (mon.0) 633 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:38.189 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.227134+0000 mon.smithi052 (mon.0) 634 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:38.189 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.227134+0000 mon.smithi052 (mon.0) 634 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:38.189 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.231129+0000 mon.smithi052 (mon.0) 635 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:38.189 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:37 smithi148 bash[25697]: audit 2024-09-06T14:12:37.231129+0000 mon.smithi052 (mon.0) 635 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:38.189 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:36.910412+0000 mon.smithi052 (mon.0) 617 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:36.910412+0000 mon.smithi052 (mon.0) 617 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: cluster 2024-09-06T14:12:36.935328+0000 mgr.smithi052.grtqlq (mgr.14209) 140 : cluster [DBG] pgmap v90: 1 pgs: 1 creating+peering; 0 B data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: cluster 2024-09-06T14:12:36.935328+0000 mgr.smithi052.grtqlq (mgr.14209) 140 : cluster [DBG] pgmap v90: 1 pgs: 1 creating+peering; 0 B data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:36.976342+0000 mon.smithi052 (mon.0) 618 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:36.976342+0000 mon.smithi052 (mon.0) 618 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.038021+0000 mon.smithi052 (mon.0) 619 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.038021+0000 mon.smithi052 (mon.0) 619 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.040540+0000 mon.smithi052 (mon.0) 620 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.040540+0000 mon.smithi052 (mon.0) 620 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.078130+0000 mon.smithi052 (mon.0) 621 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.078130+0000 mon.smithi052 (mon.0) 621 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.078276+0000 mon.smithi052 (mon.0) 622 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:12:38.190 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.078276+0000 mon.smithi052 (mon.0) 622 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.078590+0000 mon.smithi052 (mon.0) 623 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.078590+0000 mon.smithi052 (mon.0) 623 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.078729+0000 mon.smithi052 (mon.0) 624 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.078729+0000 mon.smithi052 (mon.0) 624 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.105054+0000 mon.smithi052 (mon.0) 625 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.105054+0000 mon.smithi052 (mon.0) 625 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.106837+0000 mon.smithi052 (mon.0) 626 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.106837+0000 mon.smithi052 (mon.0) 626 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi052"} : dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.106961+0000 mon.smithi052 (mon.0) 627 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.106961+0000 mon.smithi052 (mon.0) 627 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "mon metadata", "id": "smithi148"} : dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.107856+0000 mon.smithi148 (mon.1) 16 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.107856+0000 mon.smithi148 (mon.1) 16 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T14:12:38.191 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.146827+0000 mon.smithi148 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.146827+0000 mon.smithi148 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.167726+0000 mon.smithi052 (mon.0) 628 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.167726+0000 mon.smithi052 (mon.0) 628 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.222637+0000 mon.smithi052 (mon.0) 629 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.222637+0000 mon.smithi052 (mon.0) 629 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: cluster 2024-09-06T14:12:37.225185+0000 mon.smithi052 (mon.0) 630 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: cluster 2024-09-06T14:12:37.225185+0000 mon.smithi052 (mon.0) 630 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.225566+0000 mon.smithi052 (mon.0) 631 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.225566+0000 mon.smithi052 (mon.0) 631 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.226067+0000 mon.smithi052 (mon.0) 632 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.226067+0000 mon.smithi052 (mon.0) 632 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:38.192 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.226598+0000 mon.smithi052 (mon.0) 633 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:38.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.226598+0000 mon.smithi052 (mon.0) 633 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:38.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.227134+0000 mon.smithi052 (mon.0) 634 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:38.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.227134+0000 mon.smithi052 (mon.0) 634 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:38.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.231129+0000 mon.smithi052 (mon.0) 635 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:38.193 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:37 smithi052 bash[19834]: audit 2024-09-06T14:12:37.231129+0000 mon.smithi052 (mon.0) 635 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:39.563 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: cluster 2024-09-06T14:12:37.105723+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:39.563 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: cluster 2024-09-06T14:12:37.105723+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:39.563 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: cluster 2024-09-06T14:12:37.105812+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:39.563 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: cluster 2024-09-06T14:12:37.105812+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:39.563 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: cluster 2024-09-06T14:12:38.243294+0000 mon.smithi052 (mon.0) 636 : cluster [DBG] mgrmap e19: smithi052.grtqlq(active, since 2m), standbys: smithi148.bctpwo 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: cluster 2024-09-06T14:12:38.243294+0000 mon.smithi052 (mon.0) 636 : cluster [DBG] mgrmap e19: smithi052.grtqlq(active, since 2m), standbys: smithi148.bctpwo 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: audit 2024-09-06T14:12:38.244062+0000 mon.smithi052 (mon.0) 637 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: audit 2024-09-06T14:12:38.244062+0000 mon.smithi052 (mon.0) 637 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: cluster 2024-09-06T14:12:38.248817+0000 mon.smithi052 (mon.0) 638 : cluster [INF] osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464] boot 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: cluster 2024-09-06T14:12:38.248817+0000 mon.smithi052 (mon.0) 638 : cluster [INF] osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464] boot 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: cluster 2024-09-06T14:12:38.248892+0000 mon.smithi052 (mon.0) 639 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: cluster 2024-09-06T14:12:38.248892+0000 mon.smithi052 (mon.0) 639 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: audit 2024-09-06T14:12:38.249086+0000 mon.smithi052 (mon.0) 640 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: audit 2024-09-06T14:12:38.249086+0000 mon.smithi052 (mon.0) 640 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: audit 2024-09-06T14:12:38.249423+0000 mon.smithi052 (mon.0) 641 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: audit 2024-09-06T14:12:38.249423+0000 mon.smithi052 (mon.0) 641 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: audit 2024-09-06T14:12:38.249713+0000 mon.smithi052 (mon.0) 642 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: audit 2024-09-06T14:12:38.249713+0000 mon.smithi052 (mon.0) 642 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:39.564 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: audit 2024-09-06T14:12:38.249922+0000 mon.smithi052 (mon.0) 643 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:39.565 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:39 smithi052 bash[19834]: audit 2024-09-06T14:12:38.249922+0000 mon.smithi052 (mon.0) 643 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:39.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: cluster 2024-09-06T14:12:37.105723+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:39.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: cluster 2024-09-06T14:12:37.105723+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:39.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: cluster 2024-09-06T14:12:37.105812+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:39.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: cluster 2024-09-06T14:12:37.105812+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: cluster 2024-09-06T14:12:38.243294+0000 mon.smithi052 (mon.0) 636 : cluster [DBG] mgrmap e19: smithi052.grtqlq(active, since 2m), standbys: smithi148.bctpwo 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: cluster 2024-09-06T14:12:38.243294+0000 mon.smithi052 (mon.0) 636 : cluster [DBG] mgrmap e19: smithi052.grtqlq(active, since 2m), standbys: smithi148.bctpwo 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: audit 2024-09-06T14:12:38.244062+0000 mon.smithi052 (mon.0) 637 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: audit 2024-09-06T14:12:38.244062+0000 mon.smithi052 (mon.0) 637 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: cluster 2024-09-06T14:12:38.248817+0000 mon.smithi052 (mon.0) 638 : cluster [INF] osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464] boot 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: cluster 2024-09-06T14:12:38.248817+0000 mon.smithi052 (mon.0) 638 : cluster [INF] osd.4 [v2:172.21.15.148:6816/1856581464,v1:172.21.15.148:6817/1856581464] boot 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: cluster 2024-09-06T14:12:38.248892+0000 mon.smithi052 (mon.0) 639 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: cluster 2024-09-06T14:12:38.248892+0000 mon.smithi052 (mon.0) 639 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: audit 2024-09-06T14:12:38.249086+0000 mon.smithi052 (mon.0) 640 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: audit 2024-09-06T14:12:38.249086+0000 mon.smithi052 (mon.0) 640 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: audit 2024-09-06T14:12:38.249423+0000 mon.smithi052 (mon.0) 641 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: audit 2024-09-06T14:12:38.249423+0000 mon.smithi052 (mon.0) 641 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:39.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: audit 2024-09-06T14:12:38.249713+0000 mon.smithi052 (mon.0) 642 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:39.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: audit 2024-09-06T14:12:38.249713+0000 mon.smithi052 (mon.0) 642 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:39.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: audit 2024-09-06T14:12:38.249922+0000 mon.smithi052 (mon.0) 643 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:39.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:39 smithi148 bash[25697]: audit 2024-09-06T14:12:38.249922+0000 mon.smithi052 (mon.0) 643 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:40.514 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:40 smithi052 bash[19834]: cluster 2024-09-06T14:12:38.936033+0000 mgr.smithi052.grtqlq (mgr.14209) 141 : cluster [DBG] pgmap v93: 1 pgs: 1 creating+peering; 0 B data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-06T14:12:40.514 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:40 smithi052 bash[19834]: cluster 2024-09-06T14:12:38.936033+0000 mgr.smithi052.grtqlq (mgr.14209) 141 : cluster [DBG] pgmap v93: 1 pgs: 1 creating+peering; 0 B data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-06T14:12:40.515 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:40 smithi052 bash[19834]: cluster 2024-09-06T14:12:39.253635+0000 mon.smithi052 (mon.0) 644 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-06T14:12:40.515 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:40 smithi052 bash[19834]: cluster 2024-09-06T14:12:39.253635+0000 mon.smithi052 (mon.0) 644 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-06T14:12:40.515 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:40 smithi052 bash[19834]: audit 2024-09-06T14:12:39.254451+0000 mon.smithi052 (mon.0) 645 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:40.515 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:40 smithi052 bash[19834]: audit 2024-09-06T14:12:39.254451+0000 mon.smithi052 (mon.0) 645 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:40.515 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:40 smithi052 bash[19834]: audit 2024-09-06T14:12:39.254959+0000 mon.smithi052 (mon.0) 646 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:40.515 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:40 smithi052 bash[19834]: audit 2024-09-06T14:12:39.254959+0000 mon.smithi052 (mon.0) 646 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:40.515 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:40 smithi052 bash[19834]: audit 2024-09-06T14:12:39.255587+0000 mon.smithi052 (mon.0) 647 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:40.515 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:40 smithi052 bash[19834]: audit 2024-09-06T14:12:39.255587+0000 mon.smithi052 (mon.0) 647 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:40.650 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:40 smithi148 bash[25697]: cluster 2024-09-06T14:12:38.936033+0000 mgr.smithi052.grtqlq (mgr.14209) 141 : cluster [DBG] pgmap v93: 1 pgs: 1 creating+peering; 0 B data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-06T14:12:40.651 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:40 smithi148 bash[25697]: cluster 2024-09-06T14:12:38.936033+0000 mgr.smithi052.grtqlq (mgr.14209) 141 : cluster [DBG] pgmap v93: 1 pgs: 1 creating+peering; 0 B data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-06T14:12:40.651 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:40 smithi148 bash[25697]: cluster 2024-09-06T14:12:39.253635+0000 mon.smithi052 (mon.0) 644 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-06T14:12:40.651 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:40 smithi148 bash[25697]: cluster 2024-09-06T14:12:39.253635+0000 mon.smithi052 (mon.0) 644 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-06T14:12:40.651 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:40 smithi148 bash[25697]: audit 2024-09-06T14:12:39.254451+0000 mon.smithi052 (mon.0) 645 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:40.651 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:40 smithi148 bash[25697]: audit 2024-09-06T14:12:39.254451+0000 mon.smithi052 (mon.0) 645 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:40.651 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:40 smithi148 bash[25697]: audit 2024-09-06T14:12:39.254959+0000 mon.smithi052 (mon.0) 646 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:40.651 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:40 smithi148 bash[25697]: audit 2024-09-06T14:12:39.254959+0000 mon.smithi052 (mon.0) 646 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:40.651 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:40 smithi148 bash[25697]: audit 2024-09-06T14:12:39.255587+0000 mon.smithi052 (mon.0) 647 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:40.651 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:40 smithi148 bash[25697]: audit 2024-09-06T14:12:39.255587+0000 mon.smithi052 (mon.0) 647 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:41.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: cluster 2024-09-06T14:12:40.257479+0000 mon.smithi052 (mon.0) 648 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-06T14:12:41.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: cluster 2024-09-06T14:12:40.257479+0000 mon.smithi052 (mon.0) 648 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-06T14:12:41.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: audit 2024-09-06T14:12:40.257623+0000 mon.smithi052 (mon.0) 649 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:41.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: audit 2024-09-06T14:12:40.257623+0000 mon.smithi052 (mon.0) 649 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:41.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: audit 2024-09-06T14:12:40.258010+0000 mon.smithi052 (mon.0) 650 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:41.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: audit 2024-09-06T14:12:40.258010+0000 mon.smithi052 (mon.0) 650 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:41.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: audit 2024-09-06T14:12:40.258226+0000 mon.smithi052 (mon.0) 651 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:41.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: audit 2024-09-06T14:12:40.258226+0000 mon.smithi052 (mon.0) 651 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:41.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: audit 2024-09-06T14:12:40.659866+0000 mon.smithi052 (mon.0) 652 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T14:12:41.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: audit 2024-09-06T14:12:40.659866+0000 mon.smithi052 (mon.0) 652 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T14:12:41.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: audit 2024-09-06T14:12:40.660478+0000 mon.smithi148 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T14:12:41.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:41 smithi052 bash[19834]: audit 2024-09-06T14:12:40.660478+0000 mon.smithi148 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T14:12:41.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: cluster 2024-09-06T14:12:40.257479+0000 mon.smithi052 (mon.0) 648 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-06T14:12:41.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: cluster 2024-09-06T14:12:40.257479+0000 mon.smithi052 (mon.0) 648 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-06T14:12:41.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: audit 2024-09-06T14:12:40.257623+0000 mon.smithi052 (mon.0) 649 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:41.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: audit 2024-09-06T14:12:40.257623+0000 mon.smithi052 (mon.0) 649 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:41.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: audit 2024-09-06T14:12:40.258010+0000 mon.smithi052 (mon.0) 650 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:41.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: audit 2024-09-06T14:12:40.258010+0000 mon.smithi052 (mon.0) 650 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:41.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: audit 2024-09-06T14:12:40.258226+0000 mon.smithi052 (mon.0) 651 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:41.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: audit 2024-09-06T14:12:40.258226+0000 mon.smithi052 (mon.0) 651 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:41.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: audit 2024-09-06T14:12:40.659866+0000 mon.smithi052 (mon.0) 652 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T14:12:41.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: audit 2024-09-06T14:12:40.659866+0000 mon.smithi052 (mon.0) 652 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T14:12:41.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: audit 2024-09-06T14:12:40.660478+0000 mon.smithi148 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T14:12:41.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:41 smithi148 bash[25697]: audit 2024-09-06T14:12:40.660478+0000 mon.smithi148 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T14:12:42.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: cluster 2024-09-06T14:12:40.936592+0000 mgr.smithi052.grtqlq (mgr.14209) 142 : cluster [DBG] pgmap v96: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-06T14:12:42.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: cluster 2024-09-06T14:12:40.936592+0000 mgr.smithi052.grtqlq (mgr.14209) 142 : cluster [DBG] pgmap v96: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-06T14:12:42.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.262624+0000 mon.smithi052 (mon.0) 653 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-06T14:12:42.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.262624+0000 mon.smithi052 (mon.0) 653 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-06T14:12:42.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: cluster 2024-09-06T14:12:41.270805+0000 mon.smithi052 (mon.0) 654 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: cluster 2024-09-06T14:12:41.270805+0000 mon.smithi052 (mon.0) 654 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.271517+0000 mon.smithi052 (mon.0) 655 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.271517+0000 mon.smithi052 (mon.0) 655 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.272091+0000 mon.smithi052 (mon.0) 656 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.272091+0000 mon.smithi052 (mon.0) 656 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.272523+0000 mon.smithi052 (mon.0) 657 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.272523+0000 mon.smithi052 (mon.0) 657 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.275592+0000 mon.smithi052 (mon.0) 658 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.275592+0000 mon.smithi052 (mon.0) 658 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.275821+0000 mon.smithi148 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.275821+0000 mon.smithi148 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:42.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.450617+0000 mon.smithi052 (mon.0) 659 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:42.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.450617+0000 mon.smithi052 (mon.0) 659 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:42.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.458479+0000 mon.smithi052 (mon.0) 660 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:42.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.458479+0000 mon.smithi052 (mon.0) 660 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:42.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.465168+0000 mon.smithi052 (mon.0) 661 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-06T14:12:42.441 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:42 smithi052 bash[19834]: audit 2024-09-06T14:12:41.465168+0000 mon.smithi052 (mon.0) 661 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-06T14:12:42.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: cluster 2024-09-06T14:12:40.936592+0000 mgr.smithi052.grtqlq (mgr.14209) 142 : cluster [DBG] pgmap v96: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-06T14:12:42.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: cluster 2024-09-06T14:12:40.936592+0000 mgr.smithi052.grtqlq (mgr.14209) 142 : cluster [DBG] pgmap v96: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-06T14:12:42.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.262624+0000 mon.smithi052 (mon.0) 653 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-06T14:12:42.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.262624+0000 mon.smithi052 (mon.0) 653 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-06T14:12:42.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: cluster 2024-09-06T14:12:41.270805+0000 mon.smithi052 (mon.0) 654 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-06T14:12:42.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: cluster 2024-09-06T14:12:41.270805+0000 mon.smithi052 (mon.0) 654 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.271517+0000 mon.smithi052 (mon.0) 655 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.271517+0000 mon.smithi052 (mon.0) 655 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.272091+0000 mon.smithi052 (mon.0) 656 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.272091+0000 mon.smithi052 (mon.0) 656 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.272523+0000 mon.smithi052 (mon.0) 657 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.272523+0000 mon.smithi052 (mon.0) 657 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.275592+0000 mon.smithi052 (mon.0) 658 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.275592+0000 mon.smithi052 (mon.0) 658 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.275821+0000 mon.smithi148 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.275821+0000 mon.smithi148 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]} : dispatch 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.450617+0000 mon.smithi052 (mon.0) 659 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.450617+0000 mon.smithi052 (mon.0) 659 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.458479+0000 mon.smithi052 (mon.0) 660 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:42.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.458479+0000 mon.smithi052 (mon.0) 660 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:42.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.465168+0000 mon.smithi052 (mon.0) 661 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-06T14:12:42.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:42 smithi148 bash[25697]: audit 2024-09-06T14:12:41.465168+0000 mon.smithi052 (mon.0) 661 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-06T14:12:43.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.272071+0000 mon.smithi052 (mon.0) 662 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:43.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.272071+0000 mon.smithi052 (mon.0) 662 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.272158+0000 mon.smithi052 (mon.0) 663 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.272158+0000 mon.smithi052 (mon.0) 663 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: cluster 2024-09-06T14:12:42.274493+0000 mon.smithi052 (mon.0) 664 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: cluster 2024-09-06T14:12:42.274493+0000 mon.smithi052 (mon.0) 664 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.274746+0000 mon.smithi052 (mon.0) 665 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.274746+0000 mon.smithi052 (mon.0) 665 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.274969+0000 mon.smithi052 (mon.0) 666 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.274969+0000 mon.smithi052 (mon.0) 666 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.275118+0000 mon.smithi052 (mon.0) 667 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.275118+0000 mon.smithi052 (mon.0) 667 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:43.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.275251+0000 mon.smithi052 (mon.0) 668 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:43.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.275251+0000 mon.smithi052 (mon.0) 668 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:43.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.286297+0000 mon.smithi052 (mon.0) 669 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:43.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.286297+0000 mon.smithi052 (mon.0) 669 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:43.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.858492+0000 mon.smithi052 (mon.0) 670 : audit [INF] from='osd.6 ' entity='osd.6' 2024-09-06T14:12:43.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:43 smithi052 bash[19834]: audit 2024-09-06T14:12:42.858492+0000 mon.smithi052 (mon.0) 670 : audit [INF] from='osd.6 ' entity='osd.6' 2024-09-06T14:12:43.480 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:12:43.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.272071+0000 mon.smithi052 (mon.0) 662 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:43.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.272071+0000 mon.smithi052 (mon.0) 662 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi148", "root=default"]}]': finished 2024-09-06T14:12:43.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.272158+0000 mon.smithi052 (mon.0) 663 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-06T14:12:43.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.272158+0000 mon.smithi052 (mon.0) 663 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-06T14:12:43.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: cluster 2024-09-06T14:12:42.274493+0000 mon.smithi052 (mon.0) 664 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-09-06T14:12:43.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: cluster 2024-09-06T14:12:42.274493+0000 mon.smithi052 (mon.0) 664 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-09-06T14:12:43.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.274746+0000 mon.smithi052 (mon.0) 665 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:43.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.274746+0000 mon.smithi052 (mon.0) 665 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:43.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.274969+0000 mon.smithi052 (mon.0) 666 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:43.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.274969+0000 mon.smithi052 (mon.0) 666 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:43.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.275118+0000 mon.smithi052 (mon.0) 667 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:43.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.275118+0000 mon.smithi052 (mon.0) 667 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:43.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.275251+0000 mon.smithi052 (mon.0) 668 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:43.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.275251+0000 mon.smithi052 (mon.0) 668 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:43.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.286297+0000 mon.smithi052 (mon.0) 669 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:43.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.286297+0000 mon.smithi052 (mon.0) 669 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:43.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.858492+0000 mon.smithi052 (mon.0) 670 : audit [INF] from='osd.6 ' entity='osd.6' 2024-09-06T14:12:43.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:43 smithi148 bash[25697]: audit 2024-09-06T14:12:42.858492+0000 mon.smithi052 (mon.0) 670 : audit [INF] from='osd.6 ' entity='osd.6' 2024-09-06T14:12:44.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: cluster 2024-09-06T14:12:41.645927+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:44.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: cluster 2024-09-06T14:12:41.645927+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:44.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: cluster 2024-09-06T14:12:41.646028+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:44.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: cluster 2024-09-06T14:12:41.646028+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:44.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: cluster 2024-09-06T14:12:42.937164+0000 mgr.smithi052.grtqlq (mgr.14209) 143 : cluster [DBG] pgmap v99: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-06T14:12:44.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: cluster 2024-09-06T14:12:42.937164+0000 mgr.smithi052.grtqlq (mgr.14209) 143 : cluster [DBG] pgmap v99: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-06T14:12:44.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: audit 2024-09-06T14:12:43.275160+0000 mon.smithi052 (mon.0) 671 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:44.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: audit 2024-09-06T14:12:43.275160+0000 mon.smithi052 (mon.0) 671 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:44.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: cluster 2024-09-06T14:12:43.280909+0000 mon.smithi052 (mon.0) 672 : cluster [INF] osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182] boot 2024-09-06T14:12:44.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: cluster 2024-09-06T14:12:43.280909+0000 mon.smithi052 (mon.0) 672 : cluster [INF] osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182] boot 2024-09-06T14:12:44.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: cluster 2024-09-06T14:12:43.280968+0000 mon.smithi052 (mon.0) 673 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-06T14:12:44.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: cluster 2024-09-06T14:12:43.280968+0000 mon.smithi052 (mon.0) 673 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-06T14:12:44.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: audit 2024-09-06T14:12:43.282623+0000 mon.smithi052 (mon.0) 674 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:44.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: audit 2024-09-06T14:12:43.282623+0000 mon.smithi052 (mon.0) 674 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:44.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: audit 2024-09-06T14:12:43.292053+0000 mon.smithi052 (mon.0) 675 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:44.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: audit 2024-09-06T14:12:43.292053+0000 mon.smithi052 (mon.0) 675 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:44.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: audit 2024-09-06T14:12:43.292652+0000 mon.smithi052 (mon.0) 676 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:44.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: audit 2024-09-06T14:12:43.292652+0000 mon.smithi052 (mon.0) 676 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:44.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: audit 2024-09-06T14:12:43.293206+0000 mon.smithi052 (mon.0) 677 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:44.687 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:44 smithi148 bash[25697]: audit 2024-09-06T14:12:43.293206+0000 mon.smithi052 (mon.0) 677 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: cluster 2024-09-06T14:12:41.645927+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: cluster 2024-09-06T14:12:41.645927+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: cluster 2024-09-06T14:12:41.646028+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: cluster 2024-09-06T14:12:41.646028+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: cluster 2024-09-06T14:12:42.937164+0000 mgr.smithi052.grtqlq (mgr.14209) 143 : cluster [DBG] pgmap v99: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-06T14:12:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: cluster 2024-09-06T14:12:42.937164+0000 mgr.smithi052.grtqlq (mgr.14209) 143 : cluster [DBG] pgmap v99: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-06T14:12:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: audit 2024-09-06T14:12:43.275160+0000 mon.smithi052 (mon.0) 671 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: audit 2024-09-06T14:12:43.275160+0000 mon.smithi052 (mon.0) 671 : audit [INF] from='osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: cluster 2024-09-06T14:12:43.280909+0000 mon.smithi052 (mon.0) 672 : cluster [INF] osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182] boot 2024-09-06T14:12:44.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: cluster 2024-09-06T14:12:43.280909+0000 mon.smithi052 (mon.0) 672 : cluster [INF] osd.6 [v2:172.21.15.148:6824/4291268182,v1:172.21.15.148:6825/4291268182] boot 2024-09-06T14:12:44.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: cluster 2024-09-06T14:12:43.280968+0000 mon.smithi052 (mon.0) 673 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-06T14:12:44.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: cluster 2024-09-06T14:12:43.280968+0000 mon.smithi052 (mon.0) 673 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-06T14:12:44.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: audit 2024-09-06T14:12:43.282623+0000 mon.smithi052 (mon.0) 674 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:44.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: audit 2024-09-06T14:12:43.282623+0000 mon.smithi052 (mon.0) 674 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:44.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: audit 2024-09-06T14:12:43.292053+0000 mon.smithi052 (mon.0) 675 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:44.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: audit 2024-09-06T14:12:43.292053+0000 mon.smithi052 (mon.0) 675 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T14:12:44.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: audit 2024-09-06T14:12:43.292652+0000 mon.smithi052 (mon.0) 676 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:44.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: audit 2024-09-06T14:12:43.292652+0000 mon.smithi052 (mon.0) 676 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:44.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: audit 2024-09-06T14:12:43.293206+0000 mon.smithi052 (mon.0) 677 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:44.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:44 smithi052 bash[19834]: audit 2024-09-06T14:12:43.293206+0000 mon.smithi052 (mon.0) 677 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:45.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: cluster 2024-09-06T14:12:42.498984+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:45.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: cluster 2024-09-06T14:12:42.498984+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:45.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: cluster 2024-09-06T14:12:42.499056+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:45.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: cluster 2024-09-06T14:12:42.499056+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:45.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: cluster 2024-09-06T14:12:44.293587+0000 mon.smithi052 (mon.0) 678 : cluster [INF] osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857] boot 2024-09-06T14:12:45.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: cluster 2024-09-06T14:12:44.293587+0000 mon.smithi052 (mon.0) 678 : cluster [INF] osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857] boot 2024-09-06T14:12:45.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: cluster 2024-09-06T14:12:44.293665+0000 mon.smithi052 (mon.0) 679 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-06T14:12:45.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: cluster 2024-09-06T14:12:44.293665+0000 mon.smithi052 (mon.0) 679 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-06T14:12:45.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: audit 2024-09-06T14:12:44.294276+0000 mon.smithi052 (mon.0) 680 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:45.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: audit 2024-09-06T14:12:44.294276+0000 mon.smithi052 (mon.0) 680 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:45.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: audit 2024-09-06T14:12:44.294973+0000 mon.smithi052 (mon.0) 681 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:45.440 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:45 smithi052 bash[19834]: audit 2024-09-06T14:12:44.294973+0000 mon.smithi052 (mon.0) 681 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:45.450 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:12:45.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: cluster 2024-09-06T14:12:42.498984+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:45.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: cluster 2024-09-06T14:12:42.498984+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:45.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: cluster 2024-09-06T14:12:42.499056+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:45.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: cluster 2024-09-06T14:12:42.499056+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:45.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: cluster 2024-09-06T14:12:44.293587+0000 mon.smithi052 (mon.0) 678 : cluster [INF] osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857] boot 2024-09-06T14:12:45.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: cluster 2024-09-06T14:12:44.293587+0000 mon.smithi052 (mon.0) 678 : cluster [INF] osd.5 [v2:172.21.15.52:6818/4287363857,v1:172.21.15.52:6819/4287363857] boot 2024-09-06T14:12:45.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: cluster 2024-09-06T14:12:44.293665+0000 mon.smithi052 (mon.0) 679 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-06T14:12:45.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: cluster 2024-09-06T14:12:44.293665+0000 mon.smithi052 (mon.0) 679 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-06T14:12:45.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: audit 2024-09-06T14:12:44.294276+0000 mon.smithi052 (mon.0) 680 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:45.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: audit 2024-09-06T14:12:44.294276+0000 mon.smithi052 (mon.0) 680 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T14:12:45.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: audit 2024-09-06T14:12:44.294973+0000 mon.smithi052 (mon.0) 681 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:45.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:45 smithi148 bash[25697]: audit 2024-09-06T14:12:44.294973+0000 mon.smithi052 (mon.0) 681 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:46.172 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":33,"num_osds":8,"num_up_osds":7,"osd_up_since":1725631964,"num_in_osds":8,"osd_in_since":1725631912,"num_remapped_pgs":0} 2024-09-06T14:12:46.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:46 smithi052 bash[19834]: cluster 2024-09-06T14:12:44.937685+0000 mgr.smithi052.grtqlq (mgr.14209) 144 : cluster [DBG] pgmap v102: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-06T14:12:46.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:46 smithi052 bash[19834]: cluster 2024-09-06T14:12:44.937685+0000 mgr.smithi052.grtqlq (mgr.14209) 144 : cluster [DBG] pgmap v102: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-06T14:12:46.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:46 smithi052 bash[19834]: cluster 2024-09-06T14:12:45.305621+0000 mon.smithi052 (mon.0) 682 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-06T14:12:46.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:46 smithi052 bash[19834]: cluster 2024-09-06T14:12:45.305621+0000 mon.smithi052 (mon.0) 682 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-06T14:12:46.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:46 smithi052 bash[19834]: audit 2024-09-06T14:12:45.305841+0000 mon.smithi052 (mon.0) 683 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:46.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:46 smithi052 bash[19834]: audit 2024-09-06T14:12:45.305841+0000 mon.smithi052 (mon.0) 683 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:46.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:46 smithi052 bash[19834]: audit 2024-09-06T14:12:45.455854+0000 mon.smithi052 (mon.0) 684 : audit [DBG] from='client.? 172.21.15.52:0/562401842' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:46.439 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:46 smithi052 bash[19834]: audit 2024-09-06T14:12:45.455854+0000 mon.smithi052 (mon.0) 684 : audit [DBG] from='client.? 172.21.15.52:0/562401842' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:46.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:46 smithi148 bash[25697]: cluster 2024-09-06T14:12:44.937685+0000 mgr.smithi052.grtqlq (mgr.14209) 144 : cluster [DBG] pgmap v102: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-06T14:12:46.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:46 smithi148 bash[25697]: cluster 2024-09-06T14:12:44.937685+0000 mgr.smithi052.grtqlq (mgr.14209) 144 : cluster [DBG] pgmap v102: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-06T14:12:46.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:46 smithi148 bash[25697]: cluster 2024-09-06T14:12:45.305621+0000 mon.smithi052 (mon.0) 682 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-06T14:12:46.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:46 smithi148 bash[25697]: cluster 2024-09-06T14:12:45.305621+0000 mon.smithi052 (mon.0) 682 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-06T14:12:46.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:46 smithi148 bash[25697]: audit 2024-09-06T14:12:45.305841+0000 mon.smithi052 (mon.0) 683 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:46.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:46 smithi148 bash[25697]: audit 2024-09-06T14:12:45.305841+0000 mon.smithi052 (mon.0) 683 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:46.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:46 smithi148 bash[25697]: audit 2024-09-06T14:12:45.455854+0000 mon.smithi052 (mon.0) 684 : audit [DBG] from='client.? 172.21.15.52:0/562401842' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:46.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:46 smithi148 bash[25697]: audit 2024-09-06T14:12:45.455854+0000 mon.smithi052 (mon.0) 684 : audit [DBG] from='client.? 172.21.15.52:0/562401842' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:47.174 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T14:12:47.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:47 smithi052 bash[19834]: audit 2024-09-06T14:12:46.447857+0000 mon.smithi052 (mon.0) 685 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-06T14:12:47.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:47 smithi052 bash[19834]: audit 2024-09-06T14:12:46.447857+0000 mon.smithi052 (mon.0) 685 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-06T14:12:47.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:47 smithi148 bash[25697]: audit 2024-09-06T14:12:46.447857+0000 mon.smithi052 (mon.0) 685 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-06T14:12:47.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:47 smithi148 bash[25697]: audit 2024-09-06T14:12:46.447857+0000 mon.smithi052 (mon.0) 685 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-06T14:12:48.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: cluster 2024-09-06T14:12:46.938380+0000 mgr.smithi052.grtqlq (mgr.14209) 145 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-06T14:12:48.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: cluster 2024-09-06T14:12:46.938380+0000 mgr.smithi052.grtqlq (mgr.14209) 145 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-06T14:12:48.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.313689+0000 mon.smithi052 (mon.0) 686 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-06T14:12:48.615 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.313689+0000 mon.smithi052 (mon.0) 686 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: cluster 2024-09-06T14:12:47.318454+0000 mon.smithi052 (mon.0) 687 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: cluster 2024-09-06T14:12:47.318454+0000 mon.smithi052 (mon.0) 687 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.319134+0000 mon.smithi052 (mon.0) 688 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.319134+0000 mon.smithi052 (mon.0) 688 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.319952+0000 mon.smithi052 (mon.0) 689 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.319952+0000 mon.smithi052 (mon.0) 689 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.389604+0000 mon.smithi052 (mon.0) 690 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.389604+0000 mon.smithi052 (mon.0) 690 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.394982+0000 mon.smithi052 (mon.0) 691 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.394982+0000 mon.smithi052 (mon.0) 691 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:48.616 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.838842+0000 mon.smithi052 (mon.0) 692 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:12:48.617 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:48 smithi148 bash[25697]: audit 2024-09-06T14:12:47.838842+0000 mon.smithi052 (mon.0) 692 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:12:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: cluster 2024-09-06T14:12:46.938380+0000 mgr.smithi052.grtqlq (mgr.14209) 145 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-06T14:12:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: cluster 2024-09-06T14:12:46.938380+0000 mgr.smithi052.grtqlq (mgr.14209) 145 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-06T14:12:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.313689+0000 mon.smithi052 (mon.0) 686 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-06T14:12:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.313689+0000 mon.smithi052 (mon.0) 686 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-06T14:12:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: cluster 2024-09-06T14:12:47.318454+0000 mon.smithi052 (mon.0) 687 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-06T14:12:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: cluster 2024-09-06T14:12:47.318454+0000 mon.smithi052 (mon.0) 687 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-06T14:12:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.319134+0000 mon.smithi052 (mon.0) 688 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:48.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.319134+0000 mon.smithi052 (mon.0) 688 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi052", "root=default"]} : dispatch 2024-09-06T14:12:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.319952+0000 mon.smithi052 (mon.0) 689 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.319952+0000 mon.smithi052 (mon.0) 689 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.389604+0000 mon.smithi052 (mon.0) 690 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.389604+0000 mon.smithi052 (mon.0) 690 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.394982+0000 mon.smithi052 (mon.0) 691 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.394982+0000 mon.smithi052 (mon.0) 691 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.838842+0000 mon.smithi052 (mon.0) 692 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:12:48.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:48 smithi052 bash[19834]: audit 2024-09-06T14:12:47.838842+0000 mon.smithi052 (mon.0) 692 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:12:49.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:49 smithi148 bash[25697]: audit 2024-09-06T14:12:48.316259+0000 mon.smithi052 (mon.0) 693 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:49.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:49 smithi148 bash[25697]: audit 2024-09-06T14:12:48.316259+0000 mon.smithi052 (mon.0) 693 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:49.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:49 smithi148 bash[25697]: cluster 2024-09-06T14:12:48.321843+0000 mon.smithi052 (mon.0) 694 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-06T14:12:49.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:49 smithi148 bash[25697]: cluster 2024-09-06T14:12:48.321843+0000 mon.smithi052 (mon.0) 694 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-06T14:12:49.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:49 smithi148 bash[25697]: audit 2024-09-06T14:12:48.323126+0000 mon.smithi052 (mon.0) 695 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:49.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:49 smithi148 bash[25697]: audit 2024-09-06T14:12:48.323126+0000 mon.smithi052 (mon.0) 695 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:49.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:49 smithi148 bash[25697]: audit 2024-09-06T14:12:48.330985+0000 mon.smithi052 (mon.0) 696 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:49.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:49 smithi148 bash[25697]: audit 2024-09-06T14:12:48.330985+0000 mon.smithi052 (mon.0) 696 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:49.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:49 smithi052 bash[19834]: audit 2024-09-06T14:12:48.316259+0000 mon.smithi052 (mon.0) 693 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:49.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:49 smithi052 bash[19834]: audit 2024-09-06T14:12:48.316259+0000 mon.smithi052 (mon.0) 693 : audit [INF] from='osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi052", "root=default"]}]': finished 2024-09-06T14:12:49.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:49 smithi052 bash[19834]: cluster 2024-09-06T14:12:48.321843+0000 mon.smithi052 (mon.0) 694 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-06T14:12:49.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:49 smithi052 bash[19834]: cluster 2024-09-06T14:12:48.321843+0000 mon.smithi052 (mon.0) 694 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-06T14:12:49.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:49 smithi052 bash[19834]: audit 2024-09-06T14:12:48.323126+0000 mon.smithi052 (mon.0) 695 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:49.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:49 smithi052 bash[19834]: audit 2024-09-06T14:12:48.323126+0000 mon.smithi052 (mon.0) 695 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:49.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:49 smithi052 bash[19834]: audit 2024-09-06T14:12:48.330985+0000 mon.smithi052 (mon.0) 696 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:49.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:49 smithi052 bash[19834]: audit 2024-09-06T14:12:48.330985+0000 mon.smithi052 (mon.0) 696 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:50.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: cluster 2024-09-06T14:12:47.476523+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:50.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: cluster 2024-09-06T14:12:47.476523+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:50.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: cluster 2024-09-06T14:12:47.476586+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: cluster 2024-09-06T14:12:47.476586+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: cluster 2024-09-06T14:12:48.939036+0000 mgr.smithi052.grtqlq (mgr.14209) 146 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: cluster 2024-09-06T14:12:48.939036+0000 mgr.smithi052.grtqlq (mgr.14209) 146 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: audit 2024-09-06T14:12:49.331851+0000 mon.smithi052 (mon.0) 697 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: audit 2024-09-06T14:12:49.331851+0000 mon.smithi052 (mon.0) 697 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: cluster 2024-09-06T14:12:49.343322+0000 mon.smithi052 (mon.0) 698 : cluster [INF] osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927] boot 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: cluster 2024-09-06T14:12:49.343322+0000 mon.smithi052 (mon.0) 698 : cluster [INF] osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927] boot 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: cluster 2024-09-06T14:12:49.343375+0000 mon.smithi052 (mon.0) 699 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: cluster 2024-09-06T14:12:49.343375+0000 mon.smithi052 (mon.0) 699 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: audit 2024-09-06T14:12:49.343910+0000 mon.smithi052 (mon.0) 700 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:50.686 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:50 smithi148 bash[25697]: audit 2024-09-06T14:12:49.343910+0000 mon.smithi052 (mon.0) 700 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:50.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: cluster 2024-09-06T14:12:47.476523+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:50.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: cluster 2024-09-06T14:12:47.476523+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: cluster 2024-09-06T14:12:47.476586+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: cluster 2024-09-06T14:12:47.476586+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: cluster 2024-09-06T14:12:48.939036+0000 mgr.smithi052.grtqlq (mgr.14209) 146 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: cluster 2024-09-06T14:12:48.939036+0000 mgr.smithi052.grtqlq (mgr.14209) 146 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: audit 2024-09-06T14:12:49.331851+0000 mon.smithi052 (mon.0) 697 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: audit 2024-09-06T14:12:49.331851+0000 mon.smithi052 (mon.0) 697 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: cluster 2024-09-06T14:12:49.343322+0000 mon.smithi052 (mon.0) 698 : cluster [INF] osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927] boot 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: cluster 2024-09-06T14:12:49.343322+0000 mon.smithi052 (mon.0) 698 : cluster [INF] osd.7 [v2:172.21.15.52:6826/1806929927,v1:172.21.15.52:6827/1806929927] boot 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: cluster 2024-09-06T14:12:49.343375+0000 mon.smithi052 (mon.0) 699 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: cluster 2024-09-06T14:12:49.343375+0000 mon.smithi052 (mon.0) 699 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-06T14:12:50.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: audit 2024-09-06T14:12:49.343910+0000 mon.smithi052 (mon.0) 700 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:50.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:50 smithi052 bash[19834]: audit 2024-09-06T14:12:49.343910+0000 mon.smithi052 (mon.0) 700 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T14:12:51.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:51 smithi148 bash[25697]: cluster 2024-09-06T14:12:50.340625+0000 mon.smithi052 (mon.0) 701 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-06T14:12:51.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:51 smithi148 bash[25697]: cluster 2024-09-06T14:12:50.340625+0000 mon.smithi052 (mon.0) 701 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-06T14:12:51.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:51 smithi148 bash[25697]: cluster 2024-09-06T14:12:50.939666+0000 mgr.smithi052.grtqlq (mgr.14209) 147 : cluster [DBG] pgmap v110: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:51.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:51 smithi148 bash[25697]: cluster 2024-09-06T14:12:50.939666+0000 mgr.smithi052.grtqlq (mgr.14209) 147 : cluster [DBG] pgmap v110: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:51.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:51 smithi052 bash[19834]: cluster 2024-09-06T14:12:50.340625+0000 mon.smithi052 (mon.0) 701 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-06T14:12:51.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:51 smithi052 bash[19834]: cluster 2024-09-06T14:12:50.340625+0000 mon.smithi052 (mon.0) 701 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-06T14:12:51.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:51 smithi052 bash[19834]: cluster 2024-09-06T14:12:50.939666+0000 mgr.smithi052.grtqlq (mgr.14209) 147 : cluster [DBG] pgmap v110: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:51.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:51 smithi052 bash[19834]: cluster 2024-09-06T14:12:50.939666+0000 mgr.smithi052.grtqlq (mgr.14209) 147 : cluster [DBG] pgmap v110: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:51.995 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:12:52.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:52 smithi148 bash[25697]: cluster 2024-09-06T14:12:51.358925+0000 mon.smithi052 (mon.0) 702 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-06T14:12:52.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:52 smithi148 bash[25697]: cluster 2024-09-06T14:12:51.358925+0000 mon.smithi052 (mon.0) 702 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-06T14:12:52.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:52 smithi148 bash[25697]: cluster 2024-09-06T14:12:51.603633+0000 mon.smithi052 (mon.0) 703 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-06T14:12:52.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:52 smithi148 bash[25697]: cluster 2024-09-06T14:12:51.603633+0000 mon.smithi052 (mon.0) 703 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-06T14:12:52.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:52 smithi148 bash[25697]: audit 2024-09-06T14:12:52.076859+0000 mon.smithi052 (mon.0) 704 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:52.685 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:52 smithi148 bash[25697]: audit 2024-09-06T14:12:52.076859+0000 mon.smithi052 (mon.0) 704 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:52.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:52 smithi052 bash[19834]: cluster 2024-09-06T14:12:51.358925+0000 mon.smithi052 (mon.0) 702 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-06T14:12:52.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:52 smithi052 bash[19834]: cluster 2024-09-06T14:12:51.358925+0000 mon.smithi052 (mon.0) 702 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-06T14:12:52.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:52 smithi052 bash[19834]: cluster 2024-09-06T14:12:51.603633+0000 mon.smithi052 (mon.0) 703 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-06T14:12:52.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:52 smithi052 bash[19834]: cluster 2024-09-06T14:12:51.603633+0000 mon.smithi052 (mon.0) 703 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-06T14:12:52.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:52 smithi052 bash[19834]: audit 2024-09-06T14:12:52.076859+0000 mon.smithi052 (mon.0) 704 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:52.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:52 smithi052 bash[19834]: audit 2024-09-06T14:12:52.076859+0000 mon.smithi052 (mon.0) 704 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:12:53.483 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:12:53.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: cluster 2024-09-06T14:12:52.602464+0000 mon.smithi052 (mon.0) 705 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-06T14:12:53.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: cluster 2024-09-06T14:12:52.602464+0000 mon.smithi052 (mon.0) 705 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-06T14:12:53.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: audit 2024-09-06T14:12:52.929021+0000 mon.smithi052 (mon.0) 706 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: audit 2024-09-06T14:12:52.929021+0000 mon.smithi052 (mon.0) 706 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: audit 2024-09-06T14:12:52.934767+0000 mon.smithi052 (mon.0) 707 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: audit 2024-09-06T14:12:52.934767+0000 mon.smithi052 (mon.0) 707 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: cluster 2024-09-06T14:12:52.940040+0000 mgr.smithi052.grtqlq (mgr.14209) 148 : cluster [DBG] pgmap v114: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:53.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: cluster 2024-09-06T14:12:52.940040+0000 mgr.smithi052.grtqlq (mgr.14209) 148 : cluster [DBG] pgmap v114: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:53.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: audit 2024-09-06T14:12:53.422353+0000 mon.smithi052 (mon.0) 708 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: audit 2024-09-06T14:12:53.422353+0000 mon.smithi052 (mon.0) 708 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: audit 2024-09-06T14:12:53.427359+0000 mon.smithi052 (mon.0) 709 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: audit 2024-09-06T14:12:53.427359+0000 mon.smithi052 (mon.0) 709 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: audit 2024-09-06T14:12:53.488301+0000 mon.smithi052 (mon.0) 710 : audit [DBG] from='client.? 172.21.15.52:0/783297019' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:53.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:53 smithi148 bash[25697]: audit 2024-09-06T14:12:53.488301+0000 mon.smithi052 (mon.0) 710 : audit [DBG] from='client.? 172.21.15.52:0/783297019' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:53.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: cluster 2024-09-06T14:12:52.602464+0000 mon.smithi052 (mon.0) 705 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-06T14:12:53.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: cluster 2024-09-06T14:12:52.602464+0000 mon.smithi052 (mon.0) 705 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-06T14:12:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: audit 2024-09-06T14:12:52.929021+0000 mon.smithi052 (mon.0) 706 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: audit 2024-09-06T14:12:52.929021+0000 mon.smithi052 (mon.0) 706 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: audit 2024-09-06T14:12:52.934767+0000 mon.smithi052 (mon.0) 707 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: audit 2024-09-06T14:12:52.934767+0000 mon.smithi052 (mon.0) 707 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: cluster 2024-09-06T14:12:52.940040+0000 mgr.smithi052.grtqlq (mgr.14209) 148 : cluster [DBG] pgmap v114: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: cluster 2024-09-06T14:12:52.940040+0000 mgr.smithi052.grtqlq (mgr.14209) 148 : cluster [DBG] pgmap v114: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: audit 2024-09-06T14:12:53.422353+0000 mon.smithi052 (mon.0) 708 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: audit 2024-09-06T14:12:53.422353+0000 mon.smithi052 (mon.0) 708 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: audit 2024-09-06T14:12:53.427359+0000 mon.smithi052 (mon.0) 709 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: audit 2024-09-06T14:12:53.427359+0000 mon.smithi052 (mon.0) 709 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:12:53.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: audit 2024-09-06T14:12:53.488301+0000 mon.smithi052 (mon.0) 710 : audit [DBG] from='client.? 172.21.15.52:0/783297019' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:53.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:53 smithi052 bash[19834]: audit 2024-09-06T14:12:53.488301+0000 mon.smithi052 (mon.0) 710 : audit [DBG] from='client.? 172.21.15.52:0/783297019' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T14:12:54.115 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":40,"num_osds":8,"num_up_osds":8,"osd_up_since":1725631969,"num_in_osds":8,"osd_in_since":1725631912,"num_remapped_pgs":0} 2024-09-06T14:12:54.116 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd dump --format=json 2024-09-06T14:12:56.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:55 smithi148 bash[25697]: cluster 2024-09-06T14:12:54.940644+0000 mgr.smithi052.grtqlq (mgr.14209) 149 : cluster [DBG] pgmap v115: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:56.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:55 smithi148 bash[25697]: cluster 2024-09-06T14:12:54.940644+0000 mgr.smithi052.grtqlq (mgr.14209) 149 : cluster [DBG] pgmap v115: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:56.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:55 smithi052 bash[19834]: cluster 2024-09-06T14:12:54.940644+0000 mgr.smithi052.grtqlq (mgr.14209) 149 : cluster [DBG] pgmap v115: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:56.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:55 smithi052 bash[19834]: cluster 2024-09-06T14:12:54.940644+0000 mgr.smithi052.grtqlq (mgr.14209) 149 : cluster [DBG] pgmap v115: 1 pgs: 1 remapped; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:12:58.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:58 smithi148 bash[25697]: cluster 2024-09-06T14:12:56.941363+0000 mgr.smithi052.grtqlq (mgr.14209) 150 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-06T14:12:58.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:12:58 smithi148 bash[25697]: cluster 2024-09-06T14:12:56.941363+0000 mgr.smithi052.grtqlq (mgr.14209) 150 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-06T14:12:58.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:58 smithi052 bash[19834]: cluster 2024-09-06T14:12:56.941363+0000 mgr.smithi052.grtqlq (mgr.14209) 150 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-06T14:12:58.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:12:58 smithi052 bash[19834]: cluster 2024-09-06T14:12:56.941363+0000 mgr.smithi052.grtqlq (mgr.14209) 150 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-06T14:12:58.669 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:00.294 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:00 smithi052 bash[19834]: cluster 2024-09-06T14:12:58.942088+0000 mgr.smithi052.grtqlq (mgr.14209) 151 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-06T14:13:00.294 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:00 smithi052 bash[19834]: cluster 2024-09-06T14:12:58.942088+0000 mgr.smithi052.grtqlq (mgr.14209) 151 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-06T14:13:00.332 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:00 smithi148 bash[25697]: cluster 2024-09-06T14:12:58.942088+0000 mgr.smithi052.grtqlq (mgr.14209) 151 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-06T14:13:00.332 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:00 smithi148 bash[25697]: cluster 2024-09-06T14:12:58.942088+0000 mgr.smithi052.grtqlq (mgr.14209) 151 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-06T14:13:00.674 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:13:00.674 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":40,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","created":"2024-09-06T14:07:00.183479+0000","modified":"2024-09-06T14:12:52.597965+0000","last_up_change":"2024-09-06T14:12:49.324337+0000","last_in_change":"2024-09-06T14:11:52.927278+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-09-06T14:12:35.146844+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,"is_stretch_pool":false,"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":"25","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":"0b03d858-24d5-46cc-9bb6-dcc97da9cb23","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6802","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6803","nonce":2272927964}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6804","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6805","nonce":2272927964}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6808","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6809","nonce":2272927964}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6806","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6807","nonce":2272927964}]},"public_addr":"172.21.15.52:6803/2272927964","cluster_addr":"172.21.15.52:6805/2272927964","heartbeat_back_addr":"172.21.15.52:6809/2272927964","heartbeat_front_addr":"172.21.15.52:6807/2272927964","state":["exists","up"]},{"osd":1,"uuid":"621a97f9-90db-4d75-9ee2-f7a66d4df631","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6800","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6801","nonce":2730797136}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6802","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6803","nonce":2730797136}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6806","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6807","nonce":2730797136}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6804","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6805","nonce":2730797136}]},"public_addr":"172.21.15.148:6801/2730797136","cluster_addr":"172.21.15.148:6803/2730797136","heartbeat_back_addr":"172.21.15.148:6807/2730797136","heartbeat_front_addr":"172.21.15.148:6805/2730797136","state":["exists","up"]},{"osd":2,"uuid":"cbe9e918-6fb4-4346-a621-cf4e5dd35da4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6808","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6809","nonce":3192758311}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6810","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6811","nonce":3192758311}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6814","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6815","nonce":3192758311}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6812","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6813","nonce":3192758311}]},"public_addr":"172.21.15.148:6809/3192758311","cluster_addr":"172.21.15.148:6811/3192758311","heartbeat_back_addr":"172.21.15.148:6815/3192758311","heartbeat_front_addr":"172.21.15.148:6813/3192758311","state":["exists","up"]},{"osd":3,"uuid":"d85722cb-20fc-4a8d-aff1-3ed6a385b56e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":29,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6810","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6811","nonce":3115152205}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6812","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6813","nonce":3115152205}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6816","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6817","nonce":3115152205}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6814","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6815","nonce":3115152205}]},"public_addr":"172.21.15.52:6811/3115152205","cluster_addr":"172.21.15.52:6813/3115152205","heartbeat_back_addr":"172.21.15.52:6817/3115152205","heartbeat_front_addr":"172.21.15.52:6815/3115152205","state":["exists","up"]},{"osd":4,"uuid":"ae37ad5c-ef09-402d-a4e8-016f4641caab","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6816","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6817","nonce":1856581464}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6818","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6819","nonce":1856581464}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6822","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6823","nonce":1856581464}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6820","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6821","nonce":1856581464}]},"public_addr":"172.21.15.148:6817/1856581464","cluster_addr":"172.21.15.148:6819/1856581464","heartbeat_back_addr":"172.21.15.148:6823/1856581464","heartbeat_front_addr":"172.21.15.148:6821/1856581464","state":["exists","up"]},{"osd":5,"uuid":"ef81b324-878c-49e1-8d5f-952c25272d5d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6818","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6819","nonce":4287363857}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6820","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6821","nonce":4287363857}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6824","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6825","nonce":4287363857}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6822","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6823","nonce":4287363857}]},"public_addr":"172.21.15.52:6819/4287363857","cluster_addr":"172.21.15.52:6821/4287363857","heartbeat_back_addr":"172.21.15.52:6825/4287363857","heartbeat_front_addr":"172.21.15.52:6823/4287363857","state":["exists","up"]},{"osd":6,"uuid":"74eabb68-bbb8-4a68-817f-5181bb516a13","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6824","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6825","nonce":4291268182}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6826","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6827","nonce":4291268182}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6830","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6831","nonce":4291268182}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6828","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6829","nonce":4291268182}]},"public_addr":"172.21.15.148:6825/4291268182","cluster_addr":"172.21.15.148:6827/4291268182","heartbeat_back_addr":"172.21.15.148:6831/4291268182","heartbeat_front_addr":"172.21.15.148:6829/4291268182","state":["exists","up"]},{"osd":7,"uuid":"a1025655-46a4-4f83-a404-7bd765ce1838","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6826","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6827","nonce":1806929927}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6828","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6829","nonce":1806929927}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6832","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6833","nonce":1806929927}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6830","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6831","nonce":1806929927}]},"public_addr":"172.21.15.52:6827/1806929927","cluster_addr":"172.21.15.52:6829/1806929927","heartbeat_back_addr":"172.21.15.52:6833/1806929927","heartbeat_front_addr":"172.21.15.52:6831/1806929927","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:29.593564+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:25.831977+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:32.774099+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:33.487344+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:37.105815+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:42.499059+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:41.646033+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:47.476589+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.52:6801/1882748323":"2024-09-07T14:10:06.572480+0000","172.21.15.52:6800/1882748323":"2024-09-07T14:10:06.572480+0000","172.21.15.52:0/3732016204":"2024-09-07T14:10:06.572480+0000","172.21.15.52:0/2548217816":"2024-09-07T14:08:13.756933+0000","172.21.15.52:6801/329925573":"2024-09-07T14:08:13.756933+0000","172.21.15.52:0/2982852453":"2024-09-07T14:08:13.756933+0000","172.21.15.52:0/3327776477":"2024-09-07T14:07:27.965036+0000","172.21.15.52:6800/329925573":"2024-09-07T14:08:13.756933+0000","172.21.15.52:0/3009250100":"2024-09-07T14:07:27.965036+0000","172.21.15.52:6801/2082577161":"2024-09-07T14:07:27.965036+0000","172.21.15.52:0/3779969442":"2024-09-07T14:10:06.572480+0000","172.21.15.52:6800/2082577161":"2024-09-07T14:07:27.965036+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-09-06T14:13:01.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:01 smithi148 bash[25697]: audit 2024-09-06T14:13:00.677669+0000 mon.smithi052 (mon.0) 711 : audit [DBG] from='client.? 172.21.15.52:0/617732383' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:01.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:01 smithi148 bash[25697]: audit 2024-09-06T14:13:00.677669+0000 mon.smithi052 (mon.0) 711 : audit [DBG] from='client.? 172.21.15.52:0/617732383' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:01.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:01 smithi052 bash[19834]: audit 2024-09-06T14:13:00.677669+0000 mon.smithi052 (mon.0) 711 : audit [DBG] from='client.? 172.21.15.52:0/617732383' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:01.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:01 smithi052 bash[19834]: audit 2024-09-06T14:13:00.677669+0000 mon.smithi052 (mon.0) 711 : audit [DBG] from='client.? 172.21.15.52:0/617732383' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:01.861 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-06T14:12:35.146844+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, 'is_stretch_pool': False, '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': '25', '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-09-06T14:13:01.862 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-06T14:13:02.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:02 smithi052 bash[19834]: cluster 2024-09-06T14:13:00.942816+0000 mgr.smithi052.grtqlq (mgr.14209) 152 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-06T14:13:02.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:02 smithi052 bash[19834]: cluster 2024-09-06T14:13:00.942816+0000 mgr.smithi052.grtqlq (mgr.14209) 152 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-06T14:13:02.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:02 smithi148 bash[25697]: cluster 2024-09-06T14:13:00.942816+0000 mgr.smithi052.grtqlq (mgr.14209) 152 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-06T14:13:02.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:02 smithi148 bash[25697]: cluster 2024-09-06T14:13:00.942816+0000 mgr.smithi052.grtqlq (mgr.14209) 152 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-06T14:13:04.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:04 smithi148 bash[25697]: cluster 2024-09-06T14:13:02.943457+0000 mgr.smithi052.grtqlq (mgr.14209) 153 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-06T14:13:04.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:04 smithi148 bash[25697]: cluster 2024-09-06T14:13:02.943457+0000 mgr.smithi052.grtqlq (mgr.14209) 153 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-06T14:13:04.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:04 smithi052 bash[19834]: cluster 2024-09-06T14:13:02.943457+0000 mgr.smithi052.grtqlq (mgr.14209) 153 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-06T14:13:04.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:04 smithi052 bash[19834]: cluster 2024-09-06T14:13:02.943457+0000 mgr.smithi052.grtqlq (mgr.14209) 153 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: cephadm 2024-09-06T14:13:04.595883+0000 mgr.smithi052.grtqlq (mgr.14209) 154 : cephadm [INF] Detected new or changed devices on smithi148 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: cephadm 2024-09-06T14:13:04.595883+0000 mgr.smithi052.grtqlq (mgr.14209) 154 : cephadm [INF] Detected new or changed devices on smithi148 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.602619+0000 mon.smithi052 (mon.0) 712 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.602619+0000 mon.smithi052 (mon.0) 712 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.608765+0000 mon.smithi052 (mon.0) 713 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.608765+0000 mon.smithi052 (mon.0) 713 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.611517+0000 mon.smithi052 (mon.0) 714 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.611517+0000 mon.smithi052 (mon.0) 714 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.612688+0000 mon.smithi052 (mon.0) 715 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.612688+0000 mon.smithi052 (mon.0) 715 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.613694+0000 mon.smithi052 (mon.0) 716 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.613694+0000 mon.smithi052 (mon.0) 716 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.614822+0000 mon.smithi052 (mon.0) 717 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.614822+0000 mon.smithi052 (mon.0) 717 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: cephadm 2024-09-06T14:13:04.615609+0000 mgr.smithi052.grtqlq (mgr.14209) 155 : cephadm [INF] Adjusting osd_memory_target on smithi148 to 3772M 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: cephadm 2024-09-06T14:13:04.615609+0000 mgr.smithi052.grtqlq (mgr.14209) 155 : cephadm [INF] Adjusting osd_memory_target on smithi148 to 3772M 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.620375+0000 mon.smithi052 (mon.0) 718 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:04.620375+0000 mon.smithi052 (mon.0) 718 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: cluster 2024-09-06T14:13:04.944130+0000 mgr.smithi052.grtqlq (mgr.14209) 156 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: cluster 2024-09-06T14:13:04.944130+0000 mgr.smithi052.grtqlq (mgr.14209) 156 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.370902+0000 mon.smithi052 (mon.0) 719 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.370902+0000 mon.smithi052 (mon.0) 719 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.936 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.379722+0000 mon.smithi052 (mon.0) 720 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.379722+0000 mon.smithi052 (mon.0) 720 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.383135+0000 mon.smithi052 (mon.0) 721 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.383135+0000 mon.smithi052 (mon.0) 721 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.384705+0000 mon.smithi052 (mon.0) 722 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.384705+0000 mon.smithi052 (mon.0) 722 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.386079+0000 mon.smithi052 (mon.0) 723 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.386079+0000 mon.smithi052 (mon.0) 723 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.387478+0000 mon.smithi052 (mon.0) 724 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.387478+0000 mon.smithi052 (mon.0) 724 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.393669+0000 mon.smithi052 (mon.0) 725 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.393669+0000 mon.smithi052 (mon.0) 725 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.398258+0000 mon.smithi052 (mon.0) 726 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.937 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.398258+0000 mon.smithi052 (mon.0) 726 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.399626+0000 mon.smithi052 (mon.0) 727 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.399626+0000 mon.smithi052 (mon.0) 727 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.406423+0000 mon.smithi052 (mon.0) 728 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.406423+0000 mon.smithi052 (mon.0) 728 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.410329+0000 mon.smithi052 (mon.0) 729 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.410329+0000 mon.smithi052 (mon.0) 729 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.415884+0000 mon.smithi052 (mon.0) 730 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.415884+0000 mon.smithi052 (mon.0) 730 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.417261+0000 mon.smithi052 (mon.0) 731 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.417261+0000 mon.smithi052 (mon.0) 731 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.422068+0000 mon.smithi052 (mon.0) 732 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:13:05.938 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.422068+0000 mon.smithi052 (mon.0) 732 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:13:05.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.423355+0000 mon.smithi052 (mon.0) 733 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.939 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:05 smithi148 bash[25697]: audit 2024-09-06T14:13:05.423355+0000 mon.smithi052 (mon.0) 733 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: cephadm 2024-09-06T14:13:04.595883+0000 mgr.smithi052.grtqlq (mgr.14209) 154 : cephadm [INF] Detected new or changed devices on smithi148 2024-09-06T14:13:05.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: cephadm 2024-09-06T14:13:04.595883+0000 mgr.smithi052.grtqlq (mgr.14209) 154 : cephadm [INF] Detected new or changed devices on smithi148 2024-09-06T14:13:05.939 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.602619+0000 mon.smithi052 (mon.0) 712 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.602619+0000 mon.smithi052 (mon.0) 712 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.608765+0000 mon.smithi052 (mon.0) 713 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.608765+0000 mon.smithi052 (mon.0) 713 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.611517+0000 mon.smithi052 (mon.0) 714 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.611517+0000 mon.smithi052 (mon.0) 714 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.612688+0000 mon.smithi052 (mon.0) 715 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.612688+0000 mon.smithi052 (mon.0) 715 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.613694+0000 mon.smithi052 (mon.0) 716 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.613694+0000 mon.smithi052 (mon.0) 716 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.614822+0000 mon.smithi052 (mon.0) 717 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.614822+0000 mon.smithi052 (mon.0) 717 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: cephadm 2024-09-06T14:13:04.615609+0000 mgr.smithi052.grtqlq (mgr.14209) 155 : cephadm [INF] Adjusting osd_memory_target on smithi148 to 3772M 2024-09-06T14:13:05.940 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: cephadm 2024-09-06T14:13:04.615609+0000 mgr.smithi052.grtqlq (mgr.14209) 155 : cephadm [INF] Adjusting osd_memory_target on smithi148 to 3772M 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.620375+0000 mon.smithi052 (mon.0) 718 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:04.620375+0000 mon.smithi052 (mon.0) 718 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: cluster 2024-09-06T14:13:04.944130+0000 mgr.smithi052.grtqlq (mgr.14209) 156 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: cluster 2024-09-06T14:13:04.944130+0000 mgr.smithi052.grtqlq (mgr.14209) 156 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.370902+0000 mon.smithi052 (mon.0) 719 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.370902+0000 mon.smithi052 (mon.0) 719 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.379722+0000 mon.smithi052 (mon.0) 720 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.379722+0000 mon.smithi052 (mon.0) 720 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.383135+0000 mon.smithi052 (mon.0) 721 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.383135+0000 mon.smithi052 (mon.0) 721 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.384705+0000 mon.smithi052 (mon.0) 722 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.384705+0000 mon.smithi052 (mon.0) 722 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.941 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.386079+0000 mon.smithi052 (mon.0) 723 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.386079+0000 mon.smithi052 (mon.0) 723 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.387478+0000 mon.smithi052 (mon.0) 724 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.387478+0000 mon.smithi052 (mon.0) 724 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.393669+0000 mon.smithi052 (mon.0) 725 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.393669+0000 mon.smithi052 (mon.0) 725 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.398258+0000 mon.smithi052 (mon.0) 726 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.398258+0000 mon.smithi052 (mon.0) 726 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.399626+0000 mon.smithi052 (mon.0) 727 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.399626+0000 mon.smithi052 (mon.0) 727 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.406423+0000 mon.smithi052 (mon.0) 728 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.406423+0000 mon.smithi052 (mon.0) 728 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:05.942 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.410329+0000 mon.smithi052 (mon.0) 729 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:13:05.943 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.410329+0000 mon.smithi052 (mon.0) 729 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:13:05.943 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.415884+0000 mon.smithi052 (mon.0) 730 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:13:05.943 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.415884+0000 mon.smithi052 (mon.0) 730 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:13:05.943 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.417261+0000 mon.smithi052 (mon.0) 731 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.943 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.417261+0000 mon.smithi052 (mon.0) 731 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.943 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.422068+0000 mon.smithi052 (mon.0) 732 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:13:05.943 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.422068+0000 mon.smithi052 (mon.0) 732 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T14:13:05.943 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.423355+0000 mon.smithi052 (mon.0) 733 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:05.943 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:05 smithi052 bash[19834]: audit 2024-09-06T14:13:05.423355+0000 mon.smithi052 (mon.0) 733 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:13:06.835 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:06.934 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:06 smithi148 bash[25697]: cephadm 2024-09-06T14:13:05.362081+0000 mgr.smithi052.grtqlq (mgr.14209) 157 : cephadm [INF] Detected new or changed devices on smithi052 2024-09-06T14:13:06.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:06 smithi148 bash[25697]: cephadm 2024-09-06T14:13:05.362081+0000 mgr.smithi052.grtqlq (mgr.14209) 157 : cephadm [INF] Detected new or changed devices on smithi052 2024-09-06T14:13:06.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:06 smithi148 bash[25697]: cephadm 2024-09-06T14:13:05.388573+0000 mgr.smithi052.grtqlq (mgr.14209) 158 : cephadm [INF] Adjusting osd_memory_target on smithi052 to 3005M 2024-09-06T14:13:06.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:06 smithi148 bash[25697]: cephadm 2024-09-06T14:13:05.388573+0000 mgr.smithi052.grtqlq (mgr.14209) 158 : cephadm [INF] Adjusting osd_memory_target on smithi052 to 3005M 2024-09-06T14:13:06.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:06 smithi052 bash[19834]: cephadm 2024-09-06T14:13:05.362081+0000 mgr.smithi052.grtqlq (mgr.14209) 157 : cephadm [INF] Detected new or changed devices on smithi052 2024-09-06T14:13:06.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:06 smithi052 bash[19834]: cephadm 2024-09-06T14:13:05.362081+0000 mgr.smithi052.grtqlq (mgr.14209) 157 : cephadm [INF] Detected new or changed devices on smithi052 2024-09-06T14:13:06.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:06 smithi052 bash[19834]: cephadm 2024-09-06T14:13:05.388573+0000 mgr.smithi052.grtqlq (mgr.14209) 158 : cephadm [INF] Adjusting osd_memory_target on smithi052 to 3005M 2024-09-06T14:13:06.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:06 smithi052 bash[19834]: cephadm 2024-09-06T14:13:05.388573+0000 mgr.smithi052.grtqlq (mgr.14209) 158 : cephadm [INF] Adjusting osd_memory_target on smithi052 to 3005M 2024-09-06T14:13:07.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:07 smithi148 bash[25697]: cluster 2024-09-06T14:13:06.944836+0000 mgr.smithi052.grtqlq (mgr.14209) 159 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T14:13:07.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:07 smithi148 bash[25697]: cluster 2024-09-06T14:13:06.944836+0000 mgr.smithi052.grtqlq (mgr.14209) 159 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T14:13:07.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:07 smithi148 bash[25697]: audit 2024-09-06T14:13:07.082760+0000 mon.smithi052 (mon.0) 734 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:07.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:07 smithi148 bash[25697]: audit 2024-09-06T14:13:07.082760+0000 mon.smithi052 (mon.0) 734 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:07.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:07 smithi052 bash[19834]: cluster 2024-09-06T14:13:06.944836+0000 mgr.smithi052.grtqlq (mgr.14209) 159 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T14:13:07.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:07 smithi052 bash[19834]: cluster 2024-09-06T14:13:06.944836+0000 mgr.smithi052.grtqlq (mgr.14209) 159 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T14:13:07.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:07 smithi052 bash[19834]: audit 2024-09-06T14:13:07.082760+0000 mon.smithi052 (mon.0) 734 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:07.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:07 smithi052 bash[19834]: audit 2024-09-06T14:13:07.082760+0000 mon.smithi052 (mon.0) 734 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:08.304 INFO:teuthology.orchestra.run.smithi052.stdout:pg_num: 1 2024-09-06T14:13:08.934 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:08 smithi148 bash[25697]: audit 2024-09-06T14:13:08.309057+0000 mon.smithi052 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.52:0/403602136' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-06T14:13:08.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:08 smithi148 bash[25697]: audit 2024-09-06T14:13:08.309057+0000 mon.smithi052 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.52:0/403602136' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-06T14:13:08.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:08 smithi052 bash[19834]: audit 2024-09-06T14:13:08.309057+0000 mon.smithi052 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.52:0/403602136' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-06T14:13:08.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:08 smithi052 bash[19834]: audit 2024-09-06T14:13:08.309057+0000 mon.smithi052 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.52:0/403602136' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-06T14:13:09.011 INFO:tasks.cephadm:Setting up client nodes... 2024-09-06T14:13:09.011 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-06T14:13:09.934 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:09 smithi148 bash[25697]: cluster 2024-09-06T14:13:08.945507+0000 mgr.smithi052.grtqlq (mgr.14209) 160 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:09.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:09 smithi148 bash[25697]: cluster 2024-09-06T14:13:08.945507+0000 mgr.smithi052.grtqlq (mgr.14209) 160 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:09.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:09 smithi052 bash[19834]: cluster 2024-09-06T14:13:08.945507+0000 mgr.smithi052.grtqlq (mgr.14209) 160 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:09.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:09 smithi052 bash[19834]: cluster 2024-09-06T14:13:08.945507+0000 mgr.smithi052.grtqlq (mgr.14209) 160 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:12.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:12 smithi148 bash[25697]: cluster 2024-09-06T14:13:10.946379+0000 mgr.smithi052.grtqlq (mgr.14209) 161 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:12.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:12 smithi148 bash[25697]: cluster 2024-09-06T14:13:10.946379+0000 mgr.smithi052.grtqlq (mgr.14209) 161 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:12.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:12 smithi052 bash[19834]: cluster 2024-09-06T14:13:10.946379+0000 mgr.smithi052.grtqlq (mgr.14209) 161 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:12.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:12 smithi052 bash[19834]: cluster 2024-09-06T14:13:10.946379+0000 mgr.smithi052.grtqlq (mgr.14209) 161 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:13.598 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:14.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:14 smithi148 bash[25697]: cluster 2024-09-06T14:13:12.947028+0000 mgr.smithi052.grtqlq (mgr.14209) 162 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:14.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:14 smithi148 bash[25697]: cluster 2024-09-06T14:13:12.947028+0000 mgr.smithi052.grtqlq (mgr.14209) 162 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:14.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:14 smithi052 bash[19834]: cluster 2024-09-06T14:13:12.947028+0000 mgr.smithi052.grtqlq (mgr.14209) 162 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:14.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:14 smithi052 bash[19834]: cluster 2024-09-06T14:13:12.947028+0000 mgr.smithi052.grtqlq (mgr.14209) 162 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:15.256 INFO:teuthology.orchestra.run.smithi052.stdout:[client.0] 2024-09-06T14:13:15.256 INFO:teuthology.orchestra.run.smithi052.stdout: key = AQD7DdtmzQplDxAAc2jEWpgmT3n0z0eV9qFnvw== 2024-09-06T14:13:16.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:16 smithi148 bash[25697]: cluster 2024-09-06T14:13:14.947518+0000 mgr.smithi052.grtqlq (mgr.14209) 163 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:16.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:16 smithi148 bash[25697]: cluster 2024-09-06T14:13:14.947518+0000 mgr.smithi052.grtqlq (mgr.14209) 163 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:16.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:16 smithi148 bash[25697]: audit 2024-09-06T14:13:15.257859+0000 mon.smithi052 (mon.0) 736 : audit [INF] from='client.? 172.21.15.52:0/308256203' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T14:13:16.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:16 smithi148 bash[25697]: audit 2024-09-06T14:13:15.257859+0000 mon.smithi052 (mon.0) 736 : audit [INF] from='client.? 172.21.15.52:0/308256203' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T14:13:16.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:16 smithi148 bash[25697]: audit 2024-09-06T14:13:15.261283+0000 mon.smithi052 (mon.0) 737 : audit [INF] from='client.? 172.21.15.52:0/308256203' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T14:13:16.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:16 smithi148 bash[25697]: audit 2024-09-06T14:13:15.261283+0000 mon.smithi052 (mon.0) 737 : audit [INF] from='client.? 172.21.15.52:0/308256203' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T14:13:16.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:16 smithi052 bash[19834]: cluster 2024-09-06T14:13:14.947518+0000 mgr.smithi052.grtqlq (mgr.14209) 163 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:16.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:16 smithi052 bash[19834]: cluster 2024-09-06T14:13:14.947518+0000 mgr.smithi052.grtqlq (mgr.14209) 163 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:16.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:16 smithi052 bash[19834]: audit 2024-09-06T14:13:15.257859+0000 mon.smithi052 (mon.0) 736 : audit [INF] from='client.? 172.21.15.52:0/308256203' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T14:13:16.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:16 smithi052 bash[19834]: audit 2024-09-06T14:13:15.257859+0000 mon.smithi052 (mon.0) 736 : audit [INF] from='client.? 172.21.15.52:0/308256203' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T14:13:16.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:16 smithi052 bash[19834]: audit 2024-09-06T14:13:15.261283+0000 mon.smithi052 (mon.0) 737 : audit [INF] from='client.? 172.21.15.52:0/308256203' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T14:13:16.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:16 smithi052 bash[19834]: audit 2024-09-06T14:13:15.261283+0000 mon.smithi052 (mon.0) 737 : audit [INF] from='client.? 172.21.15.52:0/308256203' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T14:13:16.581 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:13:16.581 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-06T14:13:16.582 DEBUG:teuthology.orchestra.run.smithi052:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-06T14:13:16.605 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-06T14:13:18.276 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:18 smithi052 bash[19834]: cluster 2024-09-06T14:13:16.948226+0000 mgr.smithi052.grtqlq (mgr.14209) 164 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:18.276 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:18 smithi052 bash[19834]: cluster 2024-09-06T14:13:16.948226+0000 mgr.smithi052.grtqlq (mgr.14209) 164 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:18.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:18 smithi148 bash[25697]: cluster 2024-09-06T14:13:16.948226+0000 mgr.smithi052.grtqlq (mgr.14209) 164 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:18.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:18 smithi148 bash[25697]: cluster 2024-09-06T14:13:16.948226+0000 mgr.smithi052.grtqlq (mgr.14209) 164 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:20.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:20 smithi148 bash[25697]: cluster 2024-09-06T14:13:18.948913+0000 mgr.smithi052.grtqlq (mgr.14209) 165 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:20.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:20 smithi148 bash[25697]: cluster 2024-09-06T14:13:18.948913+0000 mgr.smithi052.grtqlq (mgr.14209) 165 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:20.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:20 smithi052 bash[19834]: cluster 2024-09-06T14:13:18.948913+0000 mgr.smithi052.grtqlq (mgr.14209) 165 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:20.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:20 smithi052 bash[19834]: cluster 2024-09-06T14:13:18.948913+0000 mgr.smithi052.grtqlq (mgr.14209) 165 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:20.508 INFO:teuthology.orchestra.run.smithi148.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi148/config 2024-09-06T14:13:22.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:22 smithi052 bash[19834]: cluster 2024-09-06T14:13:20.949541+0000 mgr.smithi052.grtqlq (mgr.14209) 166 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:22.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:22 smithi052 bash[19834]: cluster 2024-09-06T14:13:20.949541+0000 mgr.smithi052.grtqlq (mgr.14209) 166 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:22.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:22 smithi148 bash[25697]: cluster 2024-09-06T14:13:20.949541+0000 mgr.smithi052.grtqlq (mgr.14209) 166 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:22.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:22 smithi148 bash[25697]: cluster 2024-09-06T14:13:20.949541+0000 mgr.smithi052.grtqlq (mgr.14209) 166 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:22.475 INFO:teuthology.orchestra.run.smithi148.stdout:[client.1] 2024-09-06T14:13:22.475 INFO:teuthology.orchestra.run.smithi148.stdout: key = AQACDttm5DRLHBAAdnVFV7WE1tpPVJcUGapxpw== 2024-09-06T14:13:23.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:23 smithi148 bash[25697]: audit 2024-09-06T14:13:22.083076+0000 mon.smithi052 (mon.0) 738 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:23.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:23 smithi148 bash[25697]: audit 2024-09-06T14:13:22.083076+0000 mon.smithi052 (mon.0) 738 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:23.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:23 smithi148 bash[25697]: audit 2024-09-06T14:13:22.474100+0000 mon.smithi148 (mon.1) 20 : audit [INF] from='client.? 172.21.15.148:0/1322590162' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T14:13:23.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:23 smithi148 bash[25697]: audit 2024-09-06T14:13:22.474100+0000 mon.smithi148 (mon.1) 20 : audit [INF] from='client.? 172.21.15.148:0/1322590162' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T14:13:23.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:23 smithi148 bash[25697]: audit 2024-09-06T14:13:22.474372+0000 mon.smithi052 (mon.0) 739 : audit [INF] 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-09-06T14:13:23.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:23 smithi148 bash[25697]: audit 2024-09-06T14:13:22.474372+0000 mon.smithi052 (mon.0) 739 : audit [INF] 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-09-06T14:13:23.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:23 smithi148 bash[25697]: audit 2024-09-06T14:13:22.477954+0000 mon.smithi052 (mon.0) 740 : audit [INF] 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-09-06T14:13:23.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:23 smithi148 bash[25697]: audit 2024-09-06T14:13:22.477954+0000 mon.smithi052 (mon.0) 740 : audit [INF] 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-09-06T14:13:23.327 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:23 smithi052 bash[19834]: audit 2024-09-06T14:13:22.083076+0000 mon.smithi052 (mon.0) 738 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:23.327 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:23 smithi052 bash[19834]: audit 2024-09-06T14:13:22.083076+0000 mon.smithi052 (mon.0) 738 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:23.327 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:23 smithi052 bash[19834]: audit 2024-09-06T14:13:22.474100+0000 mon.smithi148 (mon.1) 20 : audit [INF] from='client.? 172.21.15.148:0/1322590162' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T14:13:23.327 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:23 smithi052 bash[19834]: audit 2024-09-06T14:13:22.474100+0000 mon.smithi148 (mon.1) 20 : audit [INF] from='client.? 172.21.15.148:0/1322590162' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T14:13:23.327 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:23 smithi052 bash[19834]: audit 2024-09-06T14:13:22.474372+0000 mon.smithi052 (mon.0) 739 : audit [INF] 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-09-06T14:13:23.327 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:23 smithi052 bash[19834]: audit 2024-09-06T14:13:22.474372+0000 mon.smithi052 (mon.0) 739 : audit [INF] 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-09-06T14:13:23.327 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:23 smithi052 bash[19834]: audit 2024-09-06T14:13:22.477954+0000 mon.smithi052 (mon.0) 740 : audit [INF] 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-09-06T14:13:23.328 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:23 smithi052 bash[19834]: audit 2024-09-06T14:13:22.477954+0000 mon.smithi052 (mon.0) 740 : audit [INF] 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-09-06T14:13:23.568 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T14:13:23.568 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-06T14:13:23.568 DEBUG:teuthology.orchestra.run.smithi148:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-06T14:13:23.592 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph config log 1 --format=json 2024-09-06T14:13:24.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:24 smithi052 bash[19834]: cluster 2024-09-06T14:13:22.950083+0000 mgr.smithi052.grtqlq (mgr.14209) 167 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:24.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:24 smithi052 bash[19834]: cluster 2024-09-06T14:13:22.950083+0000 mgr.smithi052.grtqlq (mgr.14209) 167 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:24.282 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:24 smithi148 bash[25697]: cluster 2024-09-06T14:13:22.950083+0000 mgr.smithi052.grtqlq (mgr.14209) 167 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:24.283 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:24 smithi148 bash[25697]: cluster 2024-09-06T14:13:22.950083+0000 mgr.smithi052.grtqlq (mgr.14209) 167 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:26.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:26 smithi148 bash[25697]: cluster 2024-09-06T14:13:24.950714+0000 mgr.smithi052.grtqlq (mgr.14209) 168 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:26.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:26 smithi148 bash[25697]: cluster 2024-09-06T14:13:24.950714+0000 mgr.smithi052.grtqlq (mgr.14209) 168 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:26.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:26 smithi052 bash[19834]: cluster 2024-09-06T14:13:24.950714+0000 mgr.smithi052.grtqlq (mgr.14209) 168 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:26.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:26 smithi052 bash[19834]: cluster 2024-09-06T14:13:24.950714+0000 mgr.smithi052.grtqlq (mgr.14209) 168 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:28.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:28 smithi148 bash[25697]: cluster 2024-09-06T14:13:26.951501+0000 mgr.smithi052.grtqlq (mgr.14209) 169 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:28.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:28 smithi148 bash[25697]: cluster 2024-09-06T14:13:26.951501+0000 mgr.smithi052.grtqlq (mgr.14209) 169 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:28.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:28 smithi052 bash[19834]: cluster 2024-09-06T14:13:26.951501+0000 mgr.smithi052.grtqlq (mgr.14209) 169 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:28.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:28 smithi052 bash[19834]: cluster 2024-09-06T14:13:26.951501+0000 mgr.smithi052.grtqlq (mgr.14209) 169 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:28.644 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:30.067 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:13:30.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:30 smithi148 bash[25697]: cluster 2024-09-06T14:13:28.952351+0000 mgr.smithi052.grtqlq (mgr.14209) 170 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:30.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:30 smithi148 bash[25697]: cluster 2024-09-06T14:13:28.952351+0000 mgr.smithi052.grtqlq (mgr.14209) 170 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:30.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:30 smithi052 bash[19834]: cluster 2024-09-06T14:13:28.952351+0000 mgr.smithi052.grtqlq (mgr.14209) 170 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:30.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:30 smithi052 bash[19834]: cluster 2024-09-06T14:13:28.952351+0000 mgr.smithi052.grtqlq (mgr.14209) 170 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:30.751 INFO:teuthology.orchestra.run.smithi052.stdout:[{"version":20,"timestamp":"2024-09-06T14:13:05.389242+0000","name":"","changes":[{"name":"osd/host:smithi052/osd_memory_target","new_value":"3151433625"}]}] 2024-09-06T14:13:30.751 INFO:tasks.ceph_manager:config epoch is 20 2024-09-06T14:13:30.752 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-06T14:13:30.752 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-06T14:13:30.752 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph mgr dump --format=json 2024-09-06T14:13:31.318 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:31 smithi052 bash[19834]: audit 2024-09-06T14:13:30.072572+0000 mon.smithi052 (mon.0) 741 : audit [DBG] from='client.? 172.21.15.52:0/2962561154' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-06T14:13:31.318 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:31 smithi052 bash[19834]: audit 2024-09-06T14:13:30.072572+0000 mon.smithi052 (mon.0) 741 : audit [DBG] from='client.? 172.21.15.52:0/2962561154' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-06T14:13:31.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:31 smithi148 bash[25697]: audit 2024-09-06T14:13:30.072572+0000 mon.smithi052 (mon.0) 741 : audit [DBG] from='client.? 172.21.15.52:0/2962561154' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-06T14:13:31.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:31 smithi148 bash[25697]: audit 2024-09-06T14:13:30.072572+0000 mon.smithi052 (mon.0) 741 : audit [DBG] from='client.? 172.21.15.52:0/2962561154' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-06T14:13:32.348 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:32 smithi052 bash[19834]: cluster 2024-09-06T14:13:30.953067+0000 mgr.smithi052.grtqlq (mgr.14209) 171 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:32.348 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:32 smithi052 bash[19834]: cluster 2024-09-06T14:13:30.953067+0000 mgr.smithi052.grtqlq (mgr.14209) 171 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:32.354 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:32 smithi148 bash[25697]: cluster 2024-09-06T14:13:30.953067+0000 mgr.smithi052.grtqlq (mgr.14209) 171 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:32.354 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:32 smithi148 bash[25697]: cluster 2024-09-06T14:13:30.953067+0000 mgr.smithi052.grtqlq (mgr.14209) 171 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:34.090 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:34 smithi052 bash[19834]: cluster 2024-09-06T14:13:32.953819+0000 mgr.smithi052.grtqlq (mgr.14209) 172 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:34.090 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:34 smithi052 bash[19834]: cluster 2024-09-06T14:13:32.953819+0000 mgr.smithi052.grtqlq (mgr.14209) 172 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:34.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:34 smithi148 bash[25697]: cluster 2024-09-06T14:13:32.953819+0000 mgr.smithi052.grtqlq (mgr.14209) 172 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:34.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:34 smithi148 bash[25697]: cluster 2024-09-06T14:13:32.953819+0000 mgr.smithi052.grtqlq (mgr.14209) 172 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:36.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:36 smithi052 bash[19834]: cluster 2024-09-06T14:13:34.954513+0000 mgr.smithi052.grtqlq (mgr.14209) 173 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:36.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:36 smithi052 bash[19834]: cluster 2024-09-06T14:13:34.954513+0000 mgr.smithi052.grtqlq (mgr.14209) 173 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:36.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:36 smithi052 bash[19834]: audit 2024-09-06T14:13:35.716735+0000 mon.smithi052 (mon.0) 742 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:36.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:36 smithi052 bash[19834]: audit 2024-09-06T14:13:35.716735+0000 mon.smithi052 (mon.0) 742 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:36.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:36 smithi052 bash[19834]: audit 2024-09-06T14:13:35.724257+0000 mon.smithi052 (mon.0) 743 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:36.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:36 smithi052 bash[19834]: audit 2024-09-06T14:13:35.724257+0000 mon.smithi052 (mon.0) 743 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:36.340 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:36.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:36 smithi148 bash[25697]: cluster 2024-09-06T14:13:34.954513+0000 mgr.smithi052.grtqlq (mgr.14209) 173 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:36.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:36 smithi148 bash[25697]: cluster 2024-09-06T14:13:34.954513+0000 mgr.smithi052.grtqlq (mgr.14209) 173 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:36.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:36 smithi148 bash[25697]: audit 2024-09-06T14:13:35.716735+0000 mon.smithi052 (mon.0) 742 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:36.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:36 smithi148 bash[25697]: audit 2024-09-06T14:13:35.716735+0000 mon.smithi052 (mon.0) 742 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:36.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:36 smithi148 bash[25697]: audit 2024-09-06T14:13:35.724257+0000 mon.smithi052 (mon.0) 743 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:36.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:36 smithi148 bash[25697]: audit 2024-09-06T14:13:35.724257+0000 mon.smithi052 (mon.0) 743 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:37.906 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:13:38.083 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:37 smithi052 bash[19834]: audit 2024-09-06T14:13:36.782437+0000 mon.smithi052 (mon.0) 744 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:38.083 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:37 smithi052 bash[19834]: audit 2024-09-06T14:13:36.782437+0000 mon.smithi052 (mon.0) 744 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:38.083 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:37 smithi052 bash[19834]: audit 2024-09-06T14:13:36.793840+0000 mon.smithi052 (mon.0) 745 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:38.083 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:37 smithi052 bash[19834]: audit 2024-09-06T14:13:36.793840+0000 mon.smithi052 (mon.0) 745 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:38.083 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:37 smithi052 bash[19834]: cluster 2024-09-06T14:13:36.955082+0000 mgr.smithi052.grtqlq (mgr.14209) 174 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:38.083 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:37 smithi052 bash[19834]: cluster 2024-09-06T14:13:36.955082+0000 mgr.smithi052.grtqlq (mgr.14209) 174 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:38.084 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:37 smithi052 bash[19834]: audit 2024-09-06T14:13:37.083317+0000 mon.smithi052 (mon.0) 746 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:38.084 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:37 smithi052 bash[19834]: audit 2024-09-06T14:13:37.083317+0000 mon.smithi052 (mon.0) 746 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:37 smithi148 bash[25697]: audit 2024-09-06T14:13:36.782437+0000 mon.smithi052 (mon.0) 744 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:37 smithi148 bash[25697]: audit 2024-09-06T14:13:36.782437+0000 mon.smithi052 (mon.0) 744 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:37 smithi148 bash[25697]: audit 2024-09-06T14:13:36.793840+0000 mon.smithi052 (mon.0) 745 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:37 smithi148 bash[25697]: audit 2024-09-06T14:13:36.793840+0000 mon.smithi052 (mon.0) 745 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:13:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:37 smithi148 bash[25697]: cluster 2024-09-06T14:13:36.955082+0000 mgr.smithi052.grtqlq (mgr.14209) 174 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:37 smithi148 bash[25697]: cluster 2024-09-06T14:13:36.955082+0000 mgr.smithi052.grtqlq (mgr.14209) 174 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:37 smithi148 bash[25697]: audit 2024-09-06T14:13:37.083317+0000 mon.smithi052 (mon.0) 746 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:38.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:37 smithi148 bash[25697]: audit 2024-09-06T14:13:37.083317+0000 mon.smithi052 (mon.0) 746 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:38.558 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":19,"flags":0,"active_gid":14209,"active_name":"smithi052.grtqlq","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6800","nonce":824991352},{"type":"v1","addr":"172.21.15.52:6801","nonce":824991352}]},"active_addr":"172.21.15.52:6801/824991352","active_change":"2024-09-06T14:10:06.572779+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":14226,"name":"smithi148.bctpwo","mgr_features":4540719139924082687,"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, use commas to separate multiple","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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.27.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:10.4.0","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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:1.26.1","min":"","max":"","enum_allowed":[],"desc":"Nginx 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.7.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:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy 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.51.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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB 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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","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":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","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":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":false,"error_string":"No module named 'ceph.fs'","module_options":{}},{"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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, use commas to separate multiple","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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.27.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:10.4.0","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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:1.26.1","min":"","max":"","enum_allowed":[],"desc":"Nginx 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.7.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:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy 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.51.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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB 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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","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":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","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":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":false,"error_string":"No module named 'ceph.fs'","module_options":{}},{"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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.52:8443/","prometheus":"http://172.21.15.52: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.52:0","nonce":4078615516}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.52:0","nonce":3968283619}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.52:0","nonce":1990241980}]}]} 2024-09-06T14:13:38.563 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-06T14:13:38.563 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-06T14:13:38.563 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd dump --format=json 2024-09-06T14:13:38.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:38 smithi148 bash[25697]: audit 2024-09-06T14:13:37.900946+0000 mon.smithi052 (mon.0) 747 : audit [DBG] from='client.? 172.21.15.52:0/2226741175' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-06T14:13:38.935 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:38 smithi148 bash[25697]: audit 2024-09-06T14:13:37.900946+0000 mon.smithi052 (mon.0) 747 : audit [DBG] from='client.? 172.21.15.52:0/2226741175' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-06T14:13:38.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:38 smithi052 bash[19834]: audit 2024-09-06T14:13:37.900946+0000 mon.smithi052 (mon.0) 747 : audit [DBG] from='client.? 172.21.15.52:0/2226741175' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-06T14:13:38.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:38 smithi052 bash[19834]: audit 2024-09-06T14:13:37.900946+0000 mon.smithi052 (mon.0) 747 : audit [DBG] from='client.? 172.21.15.52:0/2226741175' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-06T14:13:40.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:39 smithi148 bash[25697]: cluster 2024-09-06T14:13:38.955714+0000 mgr.smithi052.grtqlq (mgr.14209) 175 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:40.185 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:39 smithi148 bash[25697]: cluster 2024-09-06T14:13:38.955714+0000 mgr.smithi052.grtqlq (mgr.14209) 175 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:40.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:39 smithi052 bash[19834]: cluster 2024-09-06T14:13:38.955714+0000 mgr.smithi052.grtqlq (mgr.14209) 175 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:40.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:39 smithi052 bash[19834]: cluster 2024-09-06T14:13:38.955714+0000 mgr.smithi052.grtqlq (mgr.14209) 175 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:42.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:42 smithi148 bash[25697]: cluster 2024-09-06T14:13:40.956454+0000 mgr.smithi052.grtqlq (mgr.14209) 176 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:42.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:42 smithi148 bash[25697]: cluster 2024-09-06T14:13:40.956454+0000 mgr.smithi052.grtqlq (mgr.14209) 176 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:42.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:42 smithi052 bash[19834]: cluster 2024-09-06T14:13:40.956454+0000 mgr.smithi052.grtqlq (mgr.14209) 176 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:42.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:42 smithi052 bash[19834]: cluster 2024-09-06T14:13:40.956454+0000 mgr.smithi052.grtqlq (mgr.14209) 176 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:43.392 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:44.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:44 smithi148 bash[25697]: cluster 2024-09-06T14:13:42.957138+0000 mgr.smithi052.grtqlq (mgr.14209) 177 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:44.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:44 smithi148 bash[25697]: cluster 2024-09-06T14:13:42.957138+0000 mgr.smithi052.grtqlq (mgr.14209) 177 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:44.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:44 smithi052 bash[19834]: cluster 2024-09-06T14:13:42.957138+0000 mgr.smithi052.grtqlq (mgr.14209) 177 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:44.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:44 smithi052 bash[19834]: cluster 2024-09-06T14:13:42.957138+0000 mgr.smithi052.grtqlq (mgr.14209) 177 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:44.978 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:13:44.978 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":40,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","created":"2024-09-06T14:07:00.183479+0000","modified":"2024-09-06T14:12:52.597965+0000","last_up_change":"2024-09-06T14:12:49.324337+0000","last_in_change":"2024-09-06T14:11:52.927278+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-09-06T14:12:35.146844+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,"is_stretch_pool":false,"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":"25","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":"0b03d858-24d5-46cc-9bb6-dcc97da9cb23","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6802","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6803","nonce":2272927964}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6804","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6805","nonce":2272927964}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6808","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6809","nonce":2272927964}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6806","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6807","nonce":2272927964}]},"public_addr":"172.21.15.52:6803/2272927964","cluster_addr":"172.21.15.52:6805/2272927964","heartbeat_back_addr":"172.21.15.52:6809/2272927964","heartbeat_front_addr":"172.21.15.52:6807/2272927964","state":["exists","up"]},{"osd":1,"uuid":"621a97f9-90db-4d75-9ee2-f7a66d4df631","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6800","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6801","nonce":2730797136}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6802","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6803","nonce":2730797136}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6806","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6807","nonce":2730797136}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6804","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6805","nonce":2730797136}]},"public_addr":"172.21.15.148:6801/2730797136","cluster_addr":"172.21.15.148:6803/2730797136","heartbeat_back_addr":"172.21.15.148:6807/2730797136","heartbeat_front_addr":"172.21.15.148:6805/2730797136","state":["exists","up"]},{"osd":2,"uuid":"cbe9e918-6fb4-4346-a621-cf4e5dd35da4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6808","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6809","nonce":3192758311}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6810","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6811","nonce":3192758311}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6814","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6815","nonce":3192758311}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6812","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6813","nonce":3192758311}]},"public_addr":"172.21.15.148:6809/3192758311","cluster_addr":"172.21.15.148:6811/3192758311","heartbeat_back_addr":"172.21.15.148:6815/3192758311","heartbeat_front_addr":"172.21.15.148:6813/3192758311","state":["exists","up"]},{"osd":3,"uuid":"d85722cb-20fc-4a8d-aff1-3ed6a385b56e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":29,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6810","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6811","nonce":3115152205}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6812","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6813","nonce":3115152205}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6816","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6817","nonce":3115152205}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6814","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6815","nonce":3115152205}]},"public_addr":"172.21.15.52:6811/3115152205","cluster_addr":"172.21.15.52:6813/3115152205","heartbeat_back_addr":"172.21.15.52:6817/3115152205","heartbeat_front_addr":"172.21.15.52:6815/3115152205","state":["exists","up"]},{"osd":4,"uuid":"ae37ad5c-ef09-402d-a4e8-016f4641caab","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6816","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6817","nonce":1856581464}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6818","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6819","nonce":1856581464}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6822","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6823","nonce":1856581464}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6820","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6821","nonce":1856581464}]},"public_addr":"172.21.15.148:6817/1856581464","cluster_addr":"172.21.15.148:6819/1856581464","heartbeat_back_addr":"172.21.15.148:6823/1856581464","heartbeat_front_addr":"172.21.15.148:6821/1856581464","state":["exists","up"]},{"osd":5,"uuid":"ef81b324-878c-49e1-8d5f-952c25272d5d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6818","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6819","nonce":4287363857}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6820","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6821","nonce":4287363857}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6824","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6825","nonce":4287363857}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6822","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6823","nonce":4287363857}]},"public_addr":"172.21.15.52:6819/4287363857","cluster_addr":"172.21.15.52:6821/4287363857","heartbeat_back_addr":"172.21.15.52:6825/4287363857","heartbeat_front_addr":"172.21.15.52:6823/4287363857","state":["exists","up"]},{"osd":6,"uuid":"74eabb68-bbb8-4a68-817f-5181bb516a13","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6824","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6825","nonce":4291268182}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6826","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6827","nonce":4291268182}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6830","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6831","nonce":4291268182}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6828","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6829","nonce":4291268182}]},"public_addr":"172.21.15.148:6825/4291268182","cluster_addr":"172.21.15.148:6827/4291268182","heartbeat_back_addr":"172.21.15.148:6831/4291268182","heartbeat_front_addr":"172.21.15.148:6829/4291268182","state":["exists","up"]},{"osd":7,"uuid":"a1025655-46a4-4f83-a404-7bd765ce1838","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6826","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6827","nonce":1806929927}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6828","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6829","nonce":1806929927}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6832","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6833","nonce":1806929927}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6830","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6831","nonce":1806929927}]},"public_addr":"172.21.15.52:6827/1806929927","cluster_addr":"172.21.15.52:6829/1806929927","heartbeat_back_addr":"172.21.15.52:6833/1806929927","heartbeat_front_addr":"172.21.15.52:6831/1806929927","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:29.593564+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:25.831977+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:32.774099+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:33.487344+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:37.105815+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:42.499059+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:41.646033+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:47.476589+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.52:6801/1882748323":"2024-09-07T14:10:06.572480+0000","172.21.15.52:6800/1882748323":"2024-09-07T14:10:06.572480+0000","172.21.15.52:0/3732016204":"2024-09-07T14:10:06.572480+0000","172.21.15.52:0/2548217816":"2024-09-07T14:08:13.756933+0000","172.21.15.52:6801/329925573":"2024-09-07T14:08:13.756933+0000","172.21.15.52:0/2982852453":"2024-09-07T14:08:13.756933+0000","172.21.15.52:0/3327776477":"2024-09-07T14:07:27.965036+0000","172.21.15.52:6800/329925573":"2024-09-07T14:08:13.756933+0000","172.21.15.52:0/3009250100":"2024-09-07T14:07:27.965036+0000","172.21.15.52:6801/2082577161":"2024-09-07T14:07:27.965036+0000","172.21.15.52:0/3779969442":"2024-09-07T14:10:06.572480+0000","172.21.15.52:6800/2082577161":"2024-09-07T14:07:27.965036+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-09-06T14:13:45.301 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:45 smithi052 bash[19834]: audit 2024-09-06T14:13:44.982499+0000 mon.smithi052 (mon.0) 748 : audit [DBG] from='client.? 172.21.15.52:0/1276488629' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:45.301 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:45 smithi052 bash[19834]: audit 2024-09-06T14:13:44.982499+0000 mon.smithi052 (mon.0) 748 : audit [DBG] from='client.? 172.21.15.52:0/1276488629' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:45.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:45 smithi148 bash[25697]: audit 2024-09-06T14:13:44.982499+0000 mon.smithi052 (mon.0) 748 : audit [DBG] from='client.? 172.21.15.52:0/1276488629' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:45.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:45 smithi148 bash[25697]: audit 2024-09-06T14:13:44.982499+0000 mon.smithi052 (mon.0) 748 : audit [DBG] from='client.? 172.21.15.52:0/1276488629' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:45.674 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-06T14:13:45.674 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd dump --format=json 2024-09-06T14:13:46.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:46 smithi148 bash[25697]: cluster 2024-09-06T14:13:44.957812+0000 mgr.smithi052.grtqlq (mgr.14209) 178 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:46.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:46 smithi148 bash[25697]: cluster 2024-09-06T14:13:44.957812+0000 mgr.smithi052.grtqlq (mgr.14209) 178 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:46.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:46 smithi052 bash[19834]: cluster 2024-09-06T14:13:44.957812+0000 mgr.smithi052.grtqlq (mgr.14209) 178 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:46.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:46 smithi052 bash[19834]: cluster 2024-09-06T14:13:44.957812+0000 mgr.smithi052.grtqlq (mgr.14209) 178 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:48.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:48 smithi148 bash[25697]: cluster 2024-09-06T14:13:46.958586+0000 mgr.smithi052.grtqlq (mgr.14209) 179 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:48.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:48 smithi148 bash[25697]: cluster 2024-09-06T14:13:46.958586+0000 mgr.smithi052.grtqlq (mgr.14209) 179 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:48.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:48 smithi052 bash[19834]: cluster 2024-09-06T14:13:46.958586+0000 mgr.smithi052.grtqlq (mgr.14209) 179 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:48.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:48 smithi052 bash[19834]: cluster 2024-09-06T14:13:46.958586+0000 mgr.smithi052.grtqlq (mgr.14209) 179 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:50.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:50 smithi148 bash[25697]: cluster 2024-09-06T14:13:48.959303+0000 mgr.smithi052.grtqlq (mgr.14209) 180 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:50.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:50 smithi148 bash[25697]: cluster 2024-09-06T14:13:48.959303+0000 mgr.smithi052.grtqlq (mgr.14209) 180 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:50.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:50 smithi052 bash[19834]: cluster 2024-09-06T14:13:48.959303+0000 mgr.smithi052.grtqlq (mgr.14209) 180 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:50.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:50 smithi052 bash[19834]: cluster 2024-09-06T14:13:48.959303+0000 mgr.smithi052.grtqlq (mgr.14209) 180 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:50.500 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:51.860 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:13:51.861 INFO:teuthology.orchestra.run.smithi052.stdout:{"epoch":40,"fsid":"11d261e0-6c59-11ef-bce4-c7b262605968","created":"2024-09-06T14:07:00.183479+0000","modified":"2024-09-06T14:12:52.597965+0000","last_up_change":"2024-09-06T14:12:49.324337+0000","last_in_change":"2024-09-06T14:11:52.927278+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-09-06T14:12:35.146844+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,"is_stretch_pool":false,"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":"25","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":"0b03d858-24d5-46cc-9bb6-dcc97da9cb23","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6802","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6803","nonce":2272927964}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6804","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6805","nonce":2272927964}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6808","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6809","nonce":2272927964}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6806","nonce":2272927964},{"type":"v1","addr":"172.21.15.52:6807","nonce":2272927964}]},"public_addr":"172.21.15.52:6803/2272927964","cluster_addr":"172.21.15.52:6805/2272927964","heartbeat_back_addr":"172.21.15.52:6809/2272927964","heartbeat_front_addr":"172.21.15.52:6807/2272927964","state":["exists","up"]},{"osd":1,"uuid":"621a97f9-90db-4d75-9ee2-f7a66d4df631","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6800","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6801","nonce":2730797136}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6802","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6803","nonce":2730797136}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6806","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6807","nonce":2730797136}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6804","nonce":2730797136},{"type":"v1","addr":"172.21.15.148:6805","nonce":2730797136}]},"public_addr":"172.21.15.148:6801/2730797136","cluster_addr":"172.21.15.148:6803/2730797136","heartbeat_back_addr":"172.21.15.148:6807/2730797136","heartbeat_front_addr":"172.21.15.148:6805/2730797136","state":["exists","up"]},{"osd":2,"uuid":"cbe9e918-6fb4-4346-a621-cf4e5dd35da4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6808","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6809","nonce":3192758311}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6810","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6811","nonce":3192758311}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6814","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6815","nonce":3192758311}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6812","nonce":3192758311},{"type":"v1","addr":"172.21.15.148:6813","nonce":3192758311}]},"public_addr":"172.21.15.148:6809/3192758311","cluster_addr":"172.21.15.148:6811/3192758311","heartbeat_back_addr":"172.21.15.148:6815/3192758311","heartbeat_front_addr":"172.21.15.148:6813/3192758311","state":["exists","up"]},{"osd":3,"uuid":"d85722cb-20fc-4a8d-aff1-3ed6a385b56e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":29,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6810","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6811","nonce":3115152205}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6812","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6813","nonce":3115152205}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6816","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6817","nonce":3115152205}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6814","nonce":3115152205},{"type":"v1","addr":"172.21.15.52:6815","nonce":3115152205}]},"public_addr":"172.21.15.52:6811/3115152205","cluster_addr":"172.21.15.52:6813/3115152205","heartbeat_back_addr":"172.21.15.52:6817/3115152205","heartbeat_front_addr":"172.21.15.52:6815/3115152205","state":["exists","up"]},{"osd":4,"uuid":"ae37ad5c-ef09-402d-a4e8-016f4641caab","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6816","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6817","nonce":1856581464}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6818","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6819","nonce":1856581464}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6822","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6823","nonce":1856581464}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6820","nonce":1856581464},{"type":"v1","addr":"172.21.15.148:6821","nonce":1856581464}]},"public_addr":"172.21.15.148:6817/1856581464","cluster_addr":"172.21.15.148:6819/1856581464","heartbeat_back_addr":"172.21.15.148:6823/1856581464","heartbeat_front_addr":"172.21.15.148:6821/1856581464","state":["exists","up"]},{"osd":5,"uuid":"ef81b324-878c-49e1-8d5f-952c25272d5d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6818","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6819","nonce":4287363857}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6820","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6821","nonce":4287363857}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6824","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6825","nonce":4287363857}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6822","nonce":4287363857},{"type":"v1","addr":"172.21.15.52:6823","nonce":4287363857}]},"public_addr":"172.21.15.52:6819/4287363857","cluster_addr":"172.21.15.52:6821/4287363857","heartbeat_back_addr":"172.21.15.52:6825/4287363857","heartbeat_front_addr":"172.21.15.52:6823/4287363857","state":["exists","up"]},{"osd":6,"uuid":"74eabb68-bbb8-4a68-817f-5181bb516a13","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6824","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6825","nonce":4291268182}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6826","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6827","nonce":4291268182}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6830","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6831","nonce":4291268182}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.148:6828","nonce":4291268182},{"type":"v1","addr":"172.21.15.148:6829","nonce":4291268182}]},"public_addr":"172.21.15.148:6825/4291268182","cluster_addr":"172.21.15.148:6827/4291268182","heartbeat_back_addr":"172.21.15.148:6831/4291268182","heartbeat_front_addr":"172.21.15.148:6829/4291268182","state":["exists","up"]},{"osd":7,"uuid":"a1025655-46a4-4f83-a404-7bd765ce1838","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6826","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6827","nonce":1806929927}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6828","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6829","nonce":1806929927}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6832","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6833","nonce":1806929927}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.52:6830","nonce":1806929927},{"type":"v1","addr":"172.21.15.52:6831","nonce":1806929927}]},"public_addr":"172.21.15.52:6827/1806929927","cluster_addr":"172.21.15.52:6829/1806929927","heartbeat_back_addr":"172.21.15.52:6833/1806929927","heartbeat_front_addr":"172.21.15.52:6831/1806929927","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:29.593564+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:25.831977+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:32.774099+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:33.487344+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:37.105815+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:42.499059+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:41.646033+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T14:12:47.476589+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.52:6801/1882748323":"2024-09-07T14:10:06.572480+0000","172.21.15.52:6800/1882748323":"2024-09-07T14:10:06.572480+0000","172.21.15.52:0/3732016204":"2024-09-07T14:10:06.572480+0000","172.21.15.52:0/2548217816":"2024-09-07T14:08:13.756933+0000","172.21.15.52:6801/329925573":"2024-09-07T14:08:13.756933+0000","172.21.15.52:0/2982852453":"2024-09-07T14:08:13.756933+0000","172.21.15.52:0/3327776477":"2024-09-07T14:07:27.965036+0000","172.21.15.52:6800/329925573":"2024-09-07T14:08:13.756933+0000","172.21.15.52:0/3009250100":"2024-09-07T14:07:27.965036+0000","172.21.15.52:6801/2082577161":"2024-09-07T14:07:27.965036+0000","172.21.15.52:0/3779969442":"2024-09-07T14:10:06.572480+0000","172.21.15.52:6800/2082577161":"2024-09-07T14:07:27.965036+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-09-06T14:13:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:52 smithi052 bash[19834]: cluster 2024-09-06T14:13:50.960070+0000 mgr.smithi052.grtqlq (mgr.14209) 181 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:52.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:52 smithi052 bash[19834]: cluster 2024-09-06T14:13:50.960070+0000 mgr.smithi052.grtqlq (mgr.14209) 181 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:52.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:52 smithi052 bash[19834]: audit 2024-09-06T14:13:51.864751+0000 mon.smithi052 (mon.0) 749 : audit [DBG] from='client.? 172.21.15.52:0/2322924409' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:52.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:52 smithi052 bash[19834]: audit 2024-09-06T14:13:51.864751+0000 mon.smithi052 (mon.0) 749 : audit [DBG] from='client.? 172.21.15.52:0/2322924409' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:52.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:52 smithi148 bash[25697]: cluster 2024-09-06T14:13:50.960070+0000 mgr.smithi052.grtqlq (mgr.14209) 181 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:52.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:52 smithi148 bash[25697]: cluster 2024-09-06T14:13:50.960070+0000 mgr.smithi052.grtqlq (mgr.14209) 181 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:52.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:52 smithi148 bash[25697]: audit 2024-09-06T14:13:51.864751+0000 mon.smithi052 (mon.0) 749 : audit [DBG] from='client.? 172.21.15.52:0/2322924409' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:52.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:52 smithi148 bash[25697]: audit 2024-09-06T14:13:51.864751+0000 mon.smithi052 (mon.0) 749 : audit [DBG] from='client.? 172.21.15.52:0/2322924409' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T14:13:52.510 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-06T14:13:52.511 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-06T14:13:52.511 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-06T14:13:52.512 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-06T14:13:52.512 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-06T14:13:52.513 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-06T14:13:52.513 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-09-06T14:13:52.513 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-09-06T14:13:53.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:53 smithi148 bash[25697]: audit 2024-09-06T14:13:52.083876+0000 mon.smithi052 (mon.0) 750 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:53.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:53 smithi148 bash[25697]: audit 2024-09-06T14:13:52.083876+0000 mon.smithi052 (mon.0) 750 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:53.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:53 smithi052 bash[19834]: audit 2024-09-06T14:13:52.083876+0000 mon.smithi052 (mon.0) 750 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:53.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:53 smithi052 bash[19834]: audit 2024-09-06T14:13:52.083876+0000 mon.smithi052 (mon.0) 750 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:13:54.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:54 smithi148 bash[25697]: cluster 2024-09-06T14:13:52.960710+0000 mgr.smithi052.grtqlq (mgr.14209) 182 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:54.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:54 smithi148 bash[25697]: cluster 2024-09-06T14:13:52.960710+0000 mgr.smithi052.grtqlq (mgr.14209) 182 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:54.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:54 smithi052 bash[19834]: cluster 2024-09-06T14:13:52.960710+0000 mgr.smithi052.grtqlq (mgr.14209) 182 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:54.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:54 smithi052 bash[19834]: cluster 2024-09-06T14:13:52.960710+0000 mgr.smithi052.grtqlq (mgr.14209) 182 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:56.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:56 smithi148 bash[25697]: cluster 2024-09-06T14:13:54.961463+0000 mgr.smithi052.grtqlq (mgr.14209) 183 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:56.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:56 smithi148 bash[25697]: cluster 2024-09-06T14:13:54.961463+0000 mgr.smithi052.grtqlq (mgr.14209) 183 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:56.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:56 smithi052 bash[19834]: cluster 2024-09-06T14:13:54.961463+0000 mgr.smithi052.grtqlq (mgr.14209) 183 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:56.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:56 smithi052 bash[19834]: cluster 2024-09-06T14:13:54.961463+0000 mgr.smithi052.grtqlq (mgr.14209) 183 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:57.470 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:57.470 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:57.471 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:57.471 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:57.471 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:57.472 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:57.472 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:57.473 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:13:58.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:58 smithi148 bash[25697]: cluster 2024-09-06T14:13:56.962222+0000 mgr.smithi052.grtqlq (mgr.14209) 184 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:58.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:13:58 smithi148 bash[25697]: cluster 2024-09-06T14:13:56.962222+0000 mgr.smithi052.grtqlq (mgr.14209) 184 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:58.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:58 smithi052 bash[19834]: cluster 2024-09-06T14:13:56.962222+0000 mgr.smithi052.grtqlq (mgr.14209) 184 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:13:58.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:13:58 smithi052 bash[19834]: cluster 2024-09-06T14:13:56.962222+0000 mgr.smithi052.grtqlq (mgr.14209) 184 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:00.146 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:00 smithi052 bash[19834]: cluster 2024-09-06T14:13:58.962902+0000 mgr.smithi052.grtqlq (mgr.14209) 185 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:00.146 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:00 smithi052 bash[19834]: cluster 2024-09-06T14:13:58.962902+0000 mgr.smithi052.grtqlq (mgr.14209) 185 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:00.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:00 smithi148 bash[25697]: cluster 2024-09-06T14:13:58.962902+0000 mgr.smithi052.grtqlq (mgr.14209) 185 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:00.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:00 smithi148 bash[25697]: cluster 2024-09-06T14:13:58.962902+0000 mgr.smithi052.grtqlq (mgr.14209) 185 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:01.262 INFO:teuthology.orchestra.run.smithi052.stdout:68719476758 2024-09-06T14:14:01.263 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-06T14:14:02.206 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:02 smithi052 bash[19834]: cluster 2024-09-06T14:14:00.963573+0000 mgr.smithi052.grtqlq (mgr.14209) 186 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:02.206 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:02 smithi052 bash[19834]: cluster 2024-09-06T14:14:00.963573+0000 mgr.smithi052.grtqlq (mgr.14209) 186 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:02.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:02 smithi148 bash[25697]: cluster 2024-09-06T14:14:00.963573+0000 mgr.smithi052.grtqlq (mgr.14209) 186 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:02.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:02 smithi148 bash[25697]: cluster 2024-09-06T14:14:00.963573+0000 mgr.smithi052.grtqlq (mgr.14209) 186 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:02.998 INFO:teuthology.orchestra.run.smithi052.stdout:137438953491 2024-09-06T14:14:02.998 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-06T14:14:03.192 INFO:teuthology.orchestra.run.smithi052.stdout:154618822673 2024-09-06T14:14:03.193 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-09-06T14:14:03.327 INFO:teuthology.orchestra.run.smithi052.stdout:133143986195 2024-09-06T14:14:03.327 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-09-06T14:14:04.153 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:04 smithi052 bash[19834]: cluster 2024-09-06T14:14:02.964213+0000 mgr.smithi052.grtqlq (mgr.14209) 187 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:04.153 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:04 smithi052 bash[19834]: cluster 2024-09-06T14:14:02.964213+0000 mgr.smithi052.grtqlq (mgr.14209) 187 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:04.183 INFO:teuthology.orchestra.run.smithi052.stdout:111669149716 2024-09-06T14:14:04.183 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-06T14:14:04.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:04 smithi148 bash[25697]: cluster 2024-09-06T14:14:02.964213+0000 mgr.smithi052.grtqlq (mgr.14209) 187 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:04.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:04 smithi148 bash[25697]: cluster 2024-09-06T14:14:02.964213+0000 mgr.smithi052.grtqlq (mgr.14209) 187 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:05.434 INFO:teuthology.orchestra.run.smithi052.stdout:94489280533 2024-09-06T14:14:05.434 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-06T14:14:05.613 INFO:teuthology.orchestra.run.smithi052.stdout:98784247828 2024-09-06T14:14:05.613 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-06T14:14:05.672 INFO:teuthology.orchestra.run.smithi052.stdout:85899345941 2024-09-06T14:14:05.673 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-06T14:14:06.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:06 smithi148 bash[25697]: cluster 2024-09-06T14:14:04.965022+0000 mgr.smithi052.grtqlq (mgr.14209) 188 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:06.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:06 smithi148 bash[25697]: cluster 2024-09-06T14:14:04.965022+0000 mgr.smithi052.grtqlq (mgr.14209) 188 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:06.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:06 smithi052 bash[19834]: cluster 2024-09-06T14:14:04.965022+0000 mgr.smithi052.grtqlq (mgr.14209) 188 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:06.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:06 smithi052 bash[19834]: cluster 2024-09-06T14:14:04.965022+0000 mgr.smithi052.grtqlq (mgr.14209) 188 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:08.151 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:08.152 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:08.156 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:08.156 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:08.159 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:08.394 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:08 smithi052 bash[19834]: cluster 2024-09-06T14:14:06.965904+0000 mgr.smithi052.grtqlq (mgr.14209) 189 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:08.394 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:08 smithi052 bash[19834]: cluster 2024-09-06T14:14:06.965904+0000 mgr.smithi052.grtqlq (mgr.14209) 189 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:08.395 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:08 smithi052 bash[19834]: audit 2024-09-06T14:14:07.084473+0000 mon.smithi052 (mon.0) 751 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:08.395 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:08 smithi052 bash[19834]: audit 2024-09-06T14:14:07.084473+0000 mon.smithi052 (mon.0) 751 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:08.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:08 smithi148 bash[25697]: cluster 2024-09-06T14:14:06.965904+0000 mgr.smithi052.grtqlq (mgr.14209) 189 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:08.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:08 smithi148 bash[25697]: cluster 2024-09-06T14:14:06.965904+0000 mgr.smithi052.grtqlq (mgr.14209) 189 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:08.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:08 smithi148 bash[25697]: audit 2024-09-06T14:14:07.084473+0000 mon.smithi052 (mon.0) 751 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:08.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:08 smithi148 bash[25697]: audit 2024-09-06T14:14:07.084473+0000 mon.smithi052 (mon.0) 751 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:10.145 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:10 smithi052 bash[19834]: cluster 2024-09-06T14:14:08.966811+0000 mgr.smithi052.grtqlq (mgr.14209) 190 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:10.145 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:10 smithi052 bash[19834]: cluster 2024-09-06T14:14:08.966811+0000 mgr.smithi052.grtqlq (mgr.14209) 190 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:10.205 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:10.206 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:10.206 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:10.241 INFO:teuthology.orchestra.run.smithi052.stdout:68719476760 2024-09-06T14:14:10.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:10 smithi148 bash[25697]: cluster 2024-09-06T14:14:08.966811+0000 mgr.smithi052.grtqlq (mgr.14209) 190 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:10.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:10 smithi148 bash[25697]: cluster 2024-09-06T14:14:08.966811+0000 mgr.smithi052.grtqlq (mgr.14209) 190 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:10.442 INFO:teuthology.orchestra.run.smithi052.stdout:111669149717 2024-09-06T14:14:10.674 INFO:teuthology.orchestra.run.smithi052.stdout:137438953492 2024-09-06T14:14:11.418 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:11 smithi052 bash[19834]: audit 2024-09-06T14:14:10.247589+0000 mon.smithi052 (mon.0) 752 : audit [DBG] from='client.? 172.21.15.52:0/1573155090' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-06T14:14:11.418 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:11 smithi052 bash[19834]: audit 2024-09-06T14:14:10.247589+0000 mon.smithi052 (mon.0) 752 : audit [DBG] from='client.? 172.21.15.52:0/1573155090' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-06T14:14:11.418 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:11 smithi052 bash[19834]: audit 2024-09-06T14:14:10.448350+0000 mon.smithi052 (mon.0) 753 : audit [DBG] from='client.? 172.21.15.52:0/526619499' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-06T14:14:11.418 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:11 smithi052 bash[19834]: audit 2024-09-06T14:14:10.448350+0000 mon.smithi052 (mon.0) 753 : audit [DBG] from='client.? 172.21.15.52:0/526619499' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-06T14:14:11.418 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:11 smithi052 bash[19834]: audit 2024-09-06T14:14:10.679776+0000 mon.smithi052 (mon.0) 754 : audit [DBG] from='client.? 172.21.15.52:0/4260773351' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-06T14:14:11.418 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:11 smithi052 bash[19834]: audit 2024-09-06T14:14:10.679776+0000 mon.smithi052 (mon.0) 754 : audit [DBG] from='client.? 172.21.15.52:0/4260773351' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-06T14:14:11.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:11 smithi148 bash[25697]: audit 2024-09-06T14:14:10.247589+0000 mon.smithi052 (mon.0) 752 : audit [DBG] from='client.? 172.21.15.52:0/1573155090' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-06T14:14:11.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:11 smithi148 bash[25697]: audit 2024-09-06T14:14:10.247589+0000 mon.smithi052 (mon.0) 752 : audit [DBG] from='client.? 172.21.15.52:0/1573155090' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-06T14:14:11.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:11 smithi148 bash[25697]: audit 2024-09-06T14:14:10.448350+0000 mon.smithi052 (mon.0) 753 : audit [DBG] from='client.? 172.21.15.52:0/526619499' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-06T14:14:11.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:11 smithi148 bash[25697]: audit 2024-09-06T14:14:10.448350+0000 mon.smithi052 (mon.0) 753 : audit [DBG] from='client.? 172.21.15.52:0/526619499' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-06T14:14:11.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:11 smithi148 bash[25697]: audit 2024-09-06T14:14:10.679776+0000 mon.smithi052 (mon.0) 754 : audit [DBG] from='client.? 172.21.15.52:0/4260773351' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-06T14:14:11.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:11 smithi148 bash[25697]: audit 2024-09-06T14:14:10.679776+0000 mon.smithi052 (mon.0) 754 : audit [DBG] from='client.? 172.21.15.52:0/4260773351' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-06T14:14:12.119 INFO:teuthology.orchestra.run.smithi052.stdout:133143986197 2024-09-06T14:14:12.286 INFO:teuthology.orchestra.run.smithi052.stdout:154618822676 2024-09-06T14:14:12.391 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:12 smithi052 bash[19834]: cluster 2024-09-06T14:14:10.967626+0000 mgr.smithi052.grtqlq (mgr.14209) 191 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:12.391 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:12 smithi052 bash[19834]: cluster 2024-09-06T14:14:10.967626+0000 mgr.smithi052.grtqlq (mgr.14209) 191 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:12.409 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476758 got 68719476760 for osd.1 2024-09-06T14:14:12.409 DEBUG:teuthology.parallel:result is None 2024-09-06T14:14:12.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:12 smithi148 bash[25697]: cluster 2024-09-06T14:14:10.967626+0000 mgr.smithi052.grtqlq (mgr.14209) 191 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:12.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:12 smithi148 bash[25697]: cluster 2024-09-06T14:14:10.967626+0000 mgr.smithi052.grtqlq (mgr.14209) 191 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:13.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:13 smithi148 bash[25697]: audit 2024-09-06T14:14:12.125309+0000 mon.smithi052 (mon.0) 755 : audit [DBG] from='client.? 172.21.15.52:0/769169107' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-06T14:14:13.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:13 smithi148 bash[25697]: audit 2024-09-06T14:14:12.125309+0000 mon.smithi052 (mon.0) 755 : audit [DBG] from='client.? 172.21.15.52:0/769169107' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-06T14:14:13.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:13 smithi148 bash[25697]: audit 2024-09-06T14:14:12.292249+0000 mon.smithi052 (mon.0) 756 : audit [DBG] from='client.? 172.21.15.52:0/2303325982' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-06T14:14:13.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:13 smithi148 bash[25697]: audit 2024-09-06T14:14:12.292249+0000 mon.smithi052 (mon.0) 756 : audit [DBG] from='client.? 172.21.15.52:0/2303325982' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-06T14:14:13.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:13 smithi052 bash[19834]: audit 2024-09-06T14:14:12.125309+0000 mon.smithi052 (mon.0) 755 : audit [DBG] from='client.? 172.21.15.52:0/769169107' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-06T14:14:13.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:13 smithi052 bash[19834]: audit 2024-09-06T14:14:12.125309+0000 mon.smithi052 (mon.0) 755 : audit [DBG] from='client.? 172.21.15.52:0/769169107' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-06T14:14:13.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:13 smithi052 bash[19834]: audit 2024-09-06T14:14:12.292249+0000 mon.smithi052 (mon.0) 756 : audit [DBG] from='client.? 172.21.15.52:0/2303325982' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-06T14:14:13.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:13 smithi052 bash[19834]: audit 2024-09-06T14:14:12.292249+0000 mon.smithi052 (mon.0) 756 : audit [DBG] from='client.? 172.21.15.52:0/2303325982' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-06T14:14:14.004 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953491 got 137438953492 for osd.5 2024-09-06T14:14:14.004 DEBUG:teuthology.parallel:result is None 2024-09-06T14:14:14.062 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149716 got 111669149717 for osd.4 2024-09-06T14:14:14.062 DEBUG:teuthology.parallel:result is None 2024-09-06T14:14:14.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:14 smithi148 bash[25697]: cluster 2024-09-06T14:14:12.968310+0000 mgr.smithi052.grtqlq (mgr.14209) 192 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:14.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:14 smithi148 bash[25697]: cluster 2024-09-06T14:14:12.968310+0000 mgr.smithi052.grtqlq (mgr.14209) 192 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:14.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:14 smithi052 bash[19834]: cluster 2024-09-06T14:14:12.968310+0000 mgr.smithi052.grtqlq (mgr.14209) 192 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:14.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:14 smithi052 bash[19834]: cluster 2024-09-06T14:14:12.968310+0000 mgr.smithi052.grtqlq (mgr.14209) 192 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:14.553 INFO:tasks.cephadm.ceph_manager.ceph:need seq 154618822673 got 154618822676 for osd.7 2024-09-06T14:14:14.553 DEBUG:teuthology.parallel:result is None 2024-09-06T14:14:14.683 INFO:tasks.cephadm.ceph_manager.ceph:need seq 133143986195 got 133143986197 for osd.6 2024-09-06T14:14:14.684 DEBUG:teuthology.parallel:result is None 2024-09-06T14:14:15.324 INFO:teuthology.orchestra.run.smithi052.stdout:94489280536 2024-09-06T14:14:15.492 INFO:teuthology.orchestra.run.smithi052.stdout:98784247830 2024-09-06T14:14:15.502 INFO:teuthology.orchestra.run.smithi052.stdout:85899345943 2024-09-06T14:14:16.395 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:16 smithi052 bash[19834]: cluster 2024-09-06T14:14:14.968972+0000 mgr.smithi052.grtqlq (mgr.14209) 193 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:16.395 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:16 smithi052 bash[19834]: cluster 2024-09-06T14:14:14.968972+0000 mgr.smithi052.grtqlq (mgr.14209) 193 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:16.395 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:16 smithi052 bash[19834]: audit 2024-09-06T14:14:15.330021+0000 mon.smithi052 (mon.0) 757 : audit [DBG] from='client.? 172.21.15.52:0/3300400057' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-06T14:14:16.396 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:16 smithi052 bash[19834]: audit 2024-09-06T14:14:15.330021+0000 mon.smithi052 (mon.0) 757 : audit [DBG] from='client.? 172.21.15.52:0/3300400057' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-06T14:14:16.396 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:16 smithi052 bash[19834]: audit 2024-09-06T14:14:15.498123+0000 mon.smithi052 (mon.0) 758 : audit [DBG] from='client.? 172.21.15.52:0/3167353865' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-06T14:14:16.396 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:16 smithi052 bash[19834]: audit 2024-09-06T14:14:15.498123+0000 mon.smithi052 (mon.0) 758 : audit [DBG] from='client.? 172.21.15.52:0/3167353865' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-06T14:14:16.396 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:16 smithi052 bash[19834]: audit 2024-09-06T14:14:15.509008+0000 mon.smithi052 (mon.0) 759 : audit [DBG] from='client.? 172.21.15.52:0/1560733227' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-06T14:14:16.396 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:16 smithi052 bash[19834]: audit 2024-09-06T14:14:15.509008+0000 mon.smithi052 (mon.0) 759 : audit [DBG] from='client.? 172.21.15.52:0/1560733227' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-06T14:14:16.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:16 smithi148 bash[25697]: cluster 2024-09-06T14:14:14.968972+0000 mgr.smithi052.grtqlq (mgr.14209) 193 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:16.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:16 smithi148 bash[25697]: cluster 2024-09-06T14:14:14.968972+0000 mgr.smithi052.grtqlq (mgr.14209) 193 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:16.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:16 smithi148 bash[25697]: audit 2024-09-06T14:14:15.330021+0000 mon.smithi052 (mon.0) 757 : audit [DBG] from='client.? 172.21.15.52:0/3300400057' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-06T14:14:16.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:16 smithi148 bash[25697]: audit 2024-09-06T14:14:15.330021+0000 mon.smithi052 (mon.0) 757 : audit [DBG] from='client.? 172.21.15.52:0/3300400057' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-06T14:14:16.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:16 smithi148 bash[25697]: audit 2024-09-06T14:14:15.498123+0000 mon.smithi052 (mon.0) 758 : audit [DBG] from='client.? 172.21.15.52:0/3167353865' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-06T14:14:16.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:16 smithi148 bash[25697]: audit 2024-09-06T14:14:15.498123+0000 mon.smithi052 (mon.0) 758 : audit [DBG] from='client.? 172.21.15.52:0/3167353865' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-06T14:14:16.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:16 smithi148 bash[25697]: audit 2024-09-06T14:14:15.509008+0000 mon.smithi052 (mon.0) 759 : audit [DBG] from='client.? 172.21.15.52:0/1560733227' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-06T14:14:16.435 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:16 smithi148 bash[25697]: audit 2024-09-06T14:14:15.509008+0000 mon.smithi052 (mon.0) 759 : audit [DBG] from='client.? 172.21.15.52:0/1560733227' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-06T14:14:16.450 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280533 got 94489280536 for osd.2 2024-09-06T14:14:16.450 DEBUG:teuthology.parallel:result is None 2024-09-06T14:14:17.210 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247828 got 98784247830 for osd.3 2024-09-06T14:14:17.211 DEBUG:teuthology.parallel:result is None 2024-09-06T14:14:17.226 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345941 got 85899345943 for osd.0 2024-09-06T14:14:17.226 DEBUG:teuthology.parallel:result is None 2024-09-06T14:14:17.226 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-06T14:14:17.226 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph pg dump --format=json 2024-09-06T14:14:18.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:18 smithi148 bash[25697]: cluster 2024-09-06T14:14:16.969678+0000 mgr.smithi052.grtqlq (mgr.14209) 194 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:18.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:18 smithi148 bash[25697]: cluster 2024-09-06T14:14:16.969678+0000 mgr.smithi052.grtqlq (mgr.14209) 194 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:18.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:18 smithi052 bash[19834]: cluster 2024-09-06T14:14:16.969678+0000 mgr.smithi052.grtqlq (mgr.14209) 194 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:18.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:18 smithi052 bash[19834]: cluster 2024-09-06T14:14:16.969678+0000 mgr.smithi052.grtqlq (mgr.14209) 194 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:20.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:20 smithi148 bash[25697]: cluster 2024-09-06T14:14:18.970382+0000 mgr.smithi052.grtqlq (mgr.14209) 195 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:20.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:20 smithi148 bash[25697]: cluster 2024-09-06T14:14:18.970382+0000 mgr.smithi052.grtqlq (mgr.14209) 195 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:20.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:20 smithi052 bash[19834]: cluster 2024-09-06T14:14:18.970382+0000 mgr.smithi052.grtqlq (mgr.14209) 195 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:20.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:20 smithi052 bash[19834]: cluster 2024-09-06T14:14:18.970382+0000 mgr.smithi052.grtqlq (mgr.14209) 195 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:22.092 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:22.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:22 smithi148 bash[25697]: cluster 2024-09-06T14:14:20.971017+0000 mgr.smithi052.grtqlq (mgr.14209) 196 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:22.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:22 smithi148 bash[25697]: cluster 2024-09-06T14:14:20.971017+0000 mgr.smithi052.grtqlq (mgr.14209) 196 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:22.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:22 smithi148 bash[25697]: audit 2024-09-06T14:14:22.084770+0000 mon.smithi052 (mon.0) 760 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:22.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:22 smithi148 bash[25697]: audit 2024-09-06T14:14:22.084770+0000 mon.smithi052 (mon.0) 760 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:22.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:22 smithi052 bash[19834]: cluster 2024-09-06T14:14:20.971017+0000 mgr.smithi052.grtqlq (mgr.14209) 196 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:22.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:22 smithi052 bash[19834]: cluster 2024-09-06T14:14:20.971017+0000 mgr.smithi052.grtqlq (mgr.14209) 196 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:22.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:22 smithi052 bash[19834]: audit 2024-09-06T14:14:22.084770+0000 mon.smithi052 (mon.0) 760 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:22.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:22 smithi052 bash[19834]: audit 2024-09-06T14:14:22.084770+0000 mon.smithi052 (mon.0) 760 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:23.505 INFO:teuthology.orchestra.run.smithi052.stderr:dumped all 2024-09-06T14:14:23.505 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:14:24.165 INFO:teuthology.orchestra.run.smithi052.stdout:{"pg_ready":true,"pg_map":{"version":159,"stamp":"2024-09-06T14:14:22.971340+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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"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":152,"ondisk_log_size":152,"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":241940,"kb_used_data":4876,"kb_used_omap":12,"kb_used_meta":236851,"kb_avail":749686508,"statfs":{"total":767926730752,"available":767678984192,"internally_reserved":0,"allocated":4993024,"data_stored":3026920,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12752,"internal_metadata":242535984},"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.004132"},"pg_stats":[{"pgid":"1.0","version":"24'152","reported_seq":210,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-06T14:12:52.606028+0000","last_change":"2024-09-06T14:12:52.605526+0000","last_active":"2024-09-06T14:12:52.606028+0000","last_peered":"2024-09-06T14:12:52.606028+0000","last_clean":"2024-09-06T14:12:52.606028+0000","last_became_active":"2024-09-06T14:12:52.604895+0000","last_became_peered":"2024-09-06T14:12:52.604895+0000","last_unstale":"2024-09-06T14:12:52.606028+0000","last_undegraded":"2024-09-06T14:12:52.606028+0000","last_fullsized":"2024-09-06T14:12:52.606028+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":23,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-06T14:12:35.216213+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-06T14:12:35.216213+0000","last_clean_scrub_stamp":"2024-09-06T14:12:35.216213+0000","objects_scrubbed":0,"log_size":152,"log_dups_size":0,"ondisk_log_size":152,"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-09-07T15:41:16.942409+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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"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,2,3],"acting":[7,2,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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"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":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":36,"seq":154618822678,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28000,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713056,"statfs":{"total":95990841344,"available":95962169344,"internally_reserved":0,"allocated":995328,"data_stored":747345,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":32,"seq":137438953495,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27432,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713624,"statfs":{"total":95990841344,"available":95962750976,"internally_reserved":0,"allocated":401408,"data_stored":156977,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":31,"seq":133143986199,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31584,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709472,"statfs":{"total":95990841344,"available":95958499328,"internally_reserved":0,"allocated":401408,"data_stored":156977,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"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":4,"up_from":26,"seq":111669149720,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27428,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713628,"statfs":{"total":95990841344,"available":95962755072,"internally_reserved":0,"allocated":401408,"data_stored":156977,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":23,"seq":98784247832,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32160,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708896,"statfs":{"total":95990841344,"available":95957909504,"internally_reserved":0,"allocated":995328,"data_stored":747345,"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":2,"up_from":22,"seq":94489280537,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32172,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708884,"statfs":{"total":95990841344,"available":95957897216,"internally_reserved":0,"allocated":995328,"data_stored":747345,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":20,"seq":85899345945,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31580,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709476,"statfs":{"total":95990841344,"available":95958503424,"internally_reserved":0,"allocated":401408,"data_stored":156977,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":16,"seq":68719476762,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31584,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709472,"statfs":{"total":95990841344,"available":95958499328,"internally_reserved":0,"allocated":401408,"data_stored":156977,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"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-09-06T14:14:24.166 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph pg dump --format=json 2024-09-06T14:14:24.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:24 smithi148 bash[25697]: cluster 2024-09-06T14:14:22.971668+0000 mgr.smithi052.grtqlq (mgr.14209) 197 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:24.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:24 smithi148 bash[25697]: cluster 2024-09-06T14:14:22.971668+0000 mgr.smithi052.grtqlq (mgr.14209) 197 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:24.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:24 smithi052 bash[19834]: cluster 2024-09-06T14:14:22.971668+0000 mgr.smithi052.grtqlq (mgr.14209) 197 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:24.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:24 smithi052 bash[19834]: cluster 2024-09-06T14:14:22.971668+0000 mgr.smithi052.grtqlq (mgr.14209) 197 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:25.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:25 smithi148 bash[25697]: audit 2024-09-06T14:14:23.510669+0000 mgr.smithi052.grtqlq (mgr.14209) 198 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:14:25.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:25 smithi148 bash[25697]: audit 2024-09-06T14:14:23.510669+0000 mgr.smithi052.grtqlq (mgr.14209) 198 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:14:25.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:25 smithi052 bash[19834]: audit 2024-09-06T14:14:23.510669+0000 mgr.smithi052.grtqlq (mgr.14209) 198 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:14:25.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:25 smithi052 bash[19834]: audit 2024-09-06T14:14:23.510669+0000 mgr.smithi052.grtqlq (mgr.14209) 198 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:14:26.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:26 smithi148 bash[25697]: cluster 2024-09-06T14:14:24.972310+0000 mgr.smithi052.grtqlq (mgr.14209) 199 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:26.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:26 smithi148 bash[25697]: cluster 2024-09-06T14:14:24.972310+0000 mgr.smithi052.grtqlq (mgr.14209) 199 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:26.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:26 smithi052 bash[19834]: cluster 2024-09-06T14:14:24.972310+0000 mgr.smithi052.grtqlq (mgr.14209) 199 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:26.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:26 smithi052 bash[19834]: cluster 2024-09-06T14:14:24.972310+0000 mgr.smithi052.grtqlq (mgr.14209) 199 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:28.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:28 smithi148 bash[25697]: cluster 2024-09-06T14:14:26.972760+0000 mgr.smithi052.grtqlq (mgr.14209) 200 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:28.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:28 smithi148 bash[25697]: cluster 2024-09-06T14:14:26.972760+0000 mgr.smithi052.grtqlq (mgr.14209) 200 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:28.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:28 smithi052 bash[19834]: cluster 2024-09-06T14:14:26.972760+0000 mgr.smithi052.grtqlq (mgr.14209) 200 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:28.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:28 smithi052 bash[19834]: cluster 2024-09-06T14:14:26.972760+0000 mgr.smithi052.grtqlq (mgr.14209) 200 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:28.985 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:30.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:30 smithi148 bash[25697]: cluster 2024-09-06T14:14:28.973354+0000 mgr.smithi052.grtqlq (mgr.14209) 201 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:30.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:30 smithi148 bash[25697]: cluster 2024-09-06T14:14:28.973354+0000 mgr.smithi052.grtqlq (mgr.14209) 201 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:30.434 INFO:teuthology.orchestra.run.smithi052.stderr:dumped all 2024-09-06T14:14:30.435 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:14:30.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:30 smithi052 bash[19834]: cluster 2024-09-06T14:14:28.973354+0000 mgr.smithi052.grtqlq (mgr.14209) 201 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:30.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:30 smithi052 bash[19834]: cluster 2024-09-06T14:14:28.973354+0000 mgr.smithi052.grtqlq (mgr.14209) 201 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:31.106 INFO:teuthology.orchestra.run.smithi052.stdout:{"pg_ready":true,"pg_map":{"version":162,"stamp":"2024-09-06T14:14:28.973030+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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"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":152,"ondisk_log_size":152,"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":241940,"kb_used_data":4876,"kb_used_omap":12,"kb_used_meta":236851,"kb_avail":749686508,"statfs":{"total":767926730752,"available":767678984192,"internally_reserved":0,"allocated":4993024,"data_stored":3026920,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12752,"internal_metadata":242535984},"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.003703"},"pg_stats":[{"pgid":"1.0","version":"24'152","reported_seq":210,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-06T14:12:52.606028+0000","last_change":"2024-09-06T14:12:52.605526+0000","last_active":"2024-09-06T14:12:52.606028+0000","last_peered":"2024-09-06T14:12:52.606028+0000","last_clean":"2024-09-06T14:12:52.606028+0000","last_became_active":"2024-09-06T14:12:52.604895+0000","last_became_peered":"2024-09-06T14:12:52.604895+0000","last_unstale":"2024-09-06T14:12:52.606028+0000","last_undegraded":"2024-09-06T14:12:52.606028+0000","last_fullsized":"2024-09-06T14:12:52.606028+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":23,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-06T14:12:35.216213+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-06T14:12:35.216213+0000","last_clean_scrub_stamp":"2024-09-06T14:12:35.216213+0000","objects_scrubbed":0,"log_size":152,"log_dups_size":0,"ondisk_log_size":152,"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-09-07T15:41:16.942409+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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"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,2,3],"acting":[7,2,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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"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":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":36,"seq":154618822679,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28000,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713056,"statfs":{"total":95990841344,"available":95962169344,"internally_reserved":0,"allocated":995328,"data_stored":747345,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":32,"seq":137438953496,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27432,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713624,"statfs":{"total":95990841344,"available":95962750976,"internally_reserved":0,"allocated":401408,"data_stored":156977,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":31,"seq":133143986200,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31584,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709472,"statfs":{"total":95990841344,"available":95958499328,"internally_reserved":0,"allocated":401408,"data_stored":156977,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"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":4,"up_from":26,"seq":111669149721,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27428,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713628,"statfs":{"total":95990841344,"available":95962755072,"internally_reserved":0,"allocated":401408,"data_stored":156977,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":23,"seq":98784247833,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32160,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708896,"statfs":{"total":95990841344,"available":95957909504,"internally_reserved":0,"allocated":995328,"data_stored":747345,"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":2,"up_from":22,"seq":94489280538,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32172,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708884,"statfs":{"total":95990841344,"available":95957897216,"internally_reserved":0,"allocated":995328,"data_stored":747345,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":20,"seq":85899345946,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31580,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709476,"statfs":{"total":95990841344,"available":95958503424,"internally_reserved":0,"allocated":401408,"data_stored":156977,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":16,"seq":68719476764,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31584,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709472,"statfs":{"total":95990841344,"available":95958499328,"internally_reserved":0,"allocated":401408,"data_stored":156977,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"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-09-06T14:14:31.107 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-06T14:14:31.107 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-06T14:14:31.107 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-06T14:14:31.107 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:14:32.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:32 smithi148 bash[25697]: audit 2024-09-06T14:14:30.439717+0000 mgr.smithi052.grtqlq (mgr.14209) 202 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:14:32.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:32 smithi148 bash[25697]: audit 2024-09-06T14:14:30.439717+0000 mgr.smithi052.grtqlq (mgr.14209) 202 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:14:32.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:32 smithi148 bash[25697]: cluster 2024-09-06T14:14:30.974014+0000 mgr.smithi052.grtqlq (mgr.14209) 203 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:32.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:32 smithi148 bash[25697]: cluster 2024-09-06T14:14:30.974014+0000 mgr.smithi052.grtqlq (mgr.14209) 203 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:32.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:32 smithi052 bash[19834]: audit 2024-09-06T14:14:30.439717+0000 mgr.smithi052.grtqlq (mgr.14209) 202 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:14:32.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:32 smithi052 bash[19834]: audit 2024-09-06T14:14:30.439717+0000 mgr.smithi052.grtqlq (mgr.14209) 202 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:14:32.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:32 smithi052 bash[19834]: cluster 2024-09-06T14:14:30.974014+0000 mgr.smithi052.grtqlq (mgr.14209) 203 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:32.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:32 smithi052 bash[19834]: cluster 2024-09-06T14:14:30.974014+0000 mgr.smithi052.grtqlq (mgr.14209) 203 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:34.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:34 smithi148 bash[25697]: cluster 2024-09-06T14:14:32.974674+0000 mgr.smithi052.grtqlq (mgr.14209) 204 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:34.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:34 smithi148 bash[25697]: cluster 2024-09-06T14:14:32.974674+0000 mgr.smithi052.grtqlq (mgr.14209) 204 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:34.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:34 smithi052 bash[19834]: cluster 2024-09-06T14:14:32.974674+0000 mgr.smithi052.grtqlq (mgr.14209) 204 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:34.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:34 smithi052 bash[19834]: cluster 2024-09-06T14:14:32.974674+0000 mgr.smithi052.grtqlq (mgr.14209) 204 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:35.922 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:36.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:36 smithi148 bash[25697]: cluster 2024-09-06T14:14:34.975317+0000 mgr.smithi052.grtqlq (mgr.14209) 205 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:36.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:36 smithi148 bash[25697]: cluster 2024-09-06T14:14:34.975317+0000 mgr.smithi052.grtqlq (mgr.14209) 205 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:36.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:36 smithi052 bash[19834]: cluster 2024-09-06T14:14:34.975317+0000 mgr.smithi052.grtqlq (mgr.14209) 205 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:36.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:36 smithi052 bash[19834]: cluster 2024-09-06T14:14:34.975317+0000 mgr.smithi052.grtqlq (mgr.14209) 205 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:37.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:37 smithi148 bash[25697]: audit 2024-09-06T14:14:37.085141+0000 mon.smithi052 (mon.0) 761 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:37.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:37 smithi148 bash[25697]: audit 2024-09-06T14:14:37.085141+0000 mon.smithi052 (mon.0) 761 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:37.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:37 smithi052 bash[19834]: audit 2024-09-06T14:14:37.085141+0000 mon.smithi052 (mon.0) 761 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:37.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:37 smithi052 bash[19834]: audit 2024-09-06T14:14:37.085141+0000 mon.smithi052 (mon.0) 761 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:37.474 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:14:37.474 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:14:38.436 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:38 smithi148 bash[25697]: cluster 2024-09-06T14:14:36.976026+0000 mgr.smithi052.grtqlq (mgr.14209) 206 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:38.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:38 smithi148 bash[25697]: cluster 2024-09-06T14:14:36.976026+0000 mgr.smithi052.grtqlq (mgr.14209) 206 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:38.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:38 smithi148 bash[25697]: audit 2024-09-06T14:14:37.335188+0000 mon.smithi052 (mon.0) 762 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:14:38.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:38 smithi148 bash[25697]: audit 2024-09-06T14:14:37.335188+0000 mon.smithi052 (mon.0) 762 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:14:38.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:38 smithi148 bash[25697]: audit 2024-09-06T14:14:37.480181+0000 mon.smithi052 (mon.0) 763 : audit [DBG] from='client.? 172.21.15.52:0/1040694514' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:38.437 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:38 smithi148 bash[25697]: audit 2024-09-06T14:14:37.480181+0000 mon.smithi052 (mon.0) 763 : audit [DBG] from='client.? 172.21.15.52:0/1040694514' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:38.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:38 smithi052 bash[19834]: cluster 2024-09-06T14:14:36.976026+0000 mgr.smithi052.grtqlq (mgr.14209) 206 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:38.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:38 smithi052 bash[19834]: cluster 2024-09-06T14:14:36.976026+0000 mgr.smithi052.grtqlq (mgr.14209) 206 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:38.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:38 smithi052 bash[19834]: audit 2024-09-06T14:14:37.335188+0000 mon.smithi052 (mon.0) 762 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:14:38.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:38 smithi052 bash[19834]: audit 2024-09-06T14:14:37.335188+0000 mon.smithi052 (mon.0) 762 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:14:38.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:38 smithi052 bash[19834]: audit 2024-09-06T14:14:37.480181+0000 mon.smithi052 (mon.0) 763 : audit [DBG] from='client.? 172.21.15.52:0/1040694514' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:38.438 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:38 smithi052 bash[19834]: audit 2024-09-06T14:14:37.480181+0000 mon.smithi052 (mon.0) 763 : audit [DBG] from='client.? 172.21.15.52:0/1040694514' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:40.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:40 smithi148 bash[25697]: cluster 2024-09-06T14:14:38.976781+0000 mgr.smithi052.grtqlq (mgr.14209) 207 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:40.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:40 smithi148 bash[25697]: cluster 2024-09-06T14:14:38.976781+0000 mgr.smithi052.grtqlq (mgr.14209) 207 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:40.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:40 smithi052 bash[19834]: cluster 2024-09-06T14:14:38.976781+0000 mgr.smithi052.grtqlq (mgr.14209) 207 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:40.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:40 smithi052 bash[19834]: cluster 2024-09-06T14:14:38.976781+0000 mgr.smithi052.grtqlq (mgr.14209) 207 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:41.126 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:14:42.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:42 smithi148 bash[25697]: cluster 2024-09-06T14:14:40.977486+0000 mgr.smithi052.grtqlq (mgr.14209) 208 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:42.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:42 smithi148 bash[25697]: cluster 2024-09-06T14:14:40.977486+0000 mgr.smithi052.grtqlq (mgr.14209) 208 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:42.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:42 smithi052 bash[19834]: cluster 2024-09-06T14:14:40.977486+0000 mgr.smithi052.grtqlq (mgr.14209) 208 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:42.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:42 smithi052 bash[19834]: cluster 2024-09-06T14:14:40.977486+0000 mgr.smithi052.grtqlq (mgr.14209) 208 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:44.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:43 smithi148 bash[25697]: audit 2024-09-06T14:14:42.888705+0000 mon.smithi052 (mon.0) 764 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:43 smithi148 bash[25697]: audit 2024-09-06T14:14:42.888705+0000 mon.smithi052 (mon.0) 764 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:43 smithi148 bash[25697]: audit 2024-09-06T14:14:42.893149+0000 mon.smithi052 (mon.0) 765 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:43 smithi148 bash[25697]: audit 2024-09-06T14:14:42.893149+0000 mon.smithi052 (mon.0) 765 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:43 smithi148 bash[25697]: cluster 2024-09-06T14:14:42.977871+0000 mgr.smithi052.grtqlq (mgr.14209) 209 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:44.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:43 smithi148 bash[25697]: cluster 2024-09-06T14:14:42.977871+0000 mgr.smithi052.grtqlq (mgr.14209) 209 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:44.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:43 smithi148 bash[25697]: audit 2024-09-06T14:14:43.395877+0000 mon.smithi052 (mon.0) 766 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:43 smithi148 bash[25697]: audit 2024-09-06T14:14:43.395877+0000 mon.smithi052 (mon.0) 766 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:43 smithi148 bash[25697]: audit 2024-09-06T14:14:43.400764+0000 mon.smithi052 (mon.0) 767 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:43 smithi148 bash[25697]: audit 2024-09-06T14:14:43.400764+0000 mon.smithi052 (mon.0) 767 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:43 smithi052 bash[19834]: audit 2024-09-06T14:14:42.888705+0000 mon.smithi052 (mon.0) 764 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:43 smithi052 bash[19834]: audit 2024-09-06T14:14:42.888705+0000 mon.smithi052 (mon.0) 764 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:43 smithi052 bash[19834]: audit 2024-09-06T14:14:42.893149+0000 mon.smithi052 (mon.0) 765 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:43 smithi052 bash[19834]: audit 2024-09-06T14:14:42.893149+0000 mon.smithi052 (mon.0) 765 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:43 smithi052 bash[19834]: cluster 2024-09-06T14:14:42.977871+0000 mgr.smithi052.grtqlq (mgr.14209) 209 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:44.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:43 smithi052 bash[19834]: cluster 2024-09-06T14:14:42.977871+0000 mgr.smithi052.grtqlq (mgr.14209) 209 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:44.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:43 smithi052 bash[19834]: audit 2024-09-06T14:14:43.395877+0000 mon.smithi052 (mon.0) 766 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:43 smithi052 bash[19834]: audit 2024-09-06T14:14:43.395877+0000 mon.smithi052 (mon.0) 766 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:43 smithi052 bash[19834]: audit 2024-09-06T14:14:43.400764+0000 mon.smithi052 (mon.0) 767 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:44.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:43 smithi052 bash[19834]: audit 2024-09-06T14:14:43.400764+0000 mon.smithi052 (mon.0) 767 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:45.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:44 smithi148 bash[25697]: audit 2024-09-06T14:14:44.019669+0000 mon.smithi052 (mon.0) 768 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:14:45.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:44 smithi148 bash[25697]: audit 2024-09-06T14:14:44.019669+0000 mon.smithi052 (mon.0) 768 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:14:45.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:44 smithi148 bash[25697]: audit 2024-09-06T14:14:44.020730+0000 mon.smithi052 (mon.0) 769 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:14:45.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:44 smithi148 bash[25697]: audit 2024-09-06T14:14:44.020730+0000 mon.smithi052 (mon.0) 769 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:14:45.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:44 smithi148 bash[25697]: audit 2024-09-06T14:14:44.027961+0000 mon.smithi052 (mon.0) 770 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:45.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:44 smithi148 bash[25697]: audit 2024-09-06T14:14:44.027961+0000 mon.smithi052 (mon.0) 770 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:45.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:44 smithi148 bash[25697]: audit 2024-09-06T14:14:44.032233+0000 mon.smithi052 (mon.0) 771 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:14:45.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:44 smithi148 bash[25697]: audit 2024-09-06T14:14:44.032233+0000 mon.smithi052 (mon.0) 771 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:14:45.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:44 smithi052 bash[19834]: audit 2024-09-06T14:14:44.019669+0000 mon.smithi052 (mon.0) 768 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:14:45.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:44 smithi052 bash[19834]: audit 2024-09-06T14:14:44.019669+0000 mon.smithi052 (mon.0) 768 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:14:45.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:44 smithi052 bash[19834]: audit 2024-09-06T14:14:44.020730+0000 mon.smithi052 (mon.0) 769 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:14:45.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:44 smithi052 bash[19834]: audit 2024-09-06T14:14:44.020730+0000 mon.smithi052 (mon.0) 769 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:14:45.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:44 smithi052 bash[19834]: audit 2024-09-06T14:14:44.027961+0000 mon.smithi052 (mon.0) 770 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:45.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:44 smithi052 bash[19834]: audit 2024-09-06T14:14:44.027961+0000 mon.smithi052 (mon.0) 770 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:14:45.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:44 smithi052 bash[19834]: audit 2024-09-06T14:14:44.032233+0000 mon.smithi052 (mon.0) 771 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:14:45.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:44 smithi052 bash[19834]: audit 2024-09-06T14:14:44.032233+0000 mon.smithi052 (mon.0) 771 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:14:45.545 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:46.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:45 smithi148 bash[25697]: cluster 2024-09-06T14:14:44.978487+0000 mgr.smithi052.grtqlq (mgr.14209) 210 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:46.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:45 smithi148 bash[25697]: cluster 2024-09-06T14:14:44.978487+0000 mgr.smithi052.grtqlq (mgr.14209) 210 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:46.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:45 smithi052 bash[19834]: cluster 2024-09-06T14:14:44.978487+0000 mgr.smithi052.grtqlq (mgr.14209) 210 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:46.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:45 smithi052 bash[19834]: cluster 2024-09-06T14:14:44.978487+0000 mgr.smithi052.grtqlq (mgr.14209) 210 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:47.042 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:14:47.042 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:14:48.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:48 smithi148 bash[25697]: cluster 2024-09-06T14:14:46.979106+0000 mgr.smithi052.grtqlq (mgr.14209) 211 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:48.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:48 smithi148 bash[25697]: cluster 2024-09-06T14:14:46.979106+0000 mgr.smithi052.grtqlq (mgr.14209) 211 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:48.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:48 smithi148 bash[25697]: audit 2024-09-06T14:14:47.048085+0000 mon.smithi052 (mon.0) 772 : audit [DBG] from='client.? 172.21.15.52:0/1620360893' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:48.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:48 smithi148 bash[25697]: audit 2024-09-06T14:14:47.048085+0000 mon.smithi052 (mon.0) 772 : audit [DBG] from='client.? 172.21.15.52:0/1620360893' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:48.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:48 smithi052 bash[19834]: cluster 2024-09-06T14:14:46.979106+0000 mgr.smithi052.grtqlq (mgr.14209) 211 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:48.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:48 smithi052 bash[19834]: cluster 2024-09-06T14:14:46.979106+0000 mgr.smithi052.grtqlq (mgr.14209) 211 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:48.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:48 smithi052 bash[19834]: audit 2024-09-06T14:14:47.048085+0000 mon.smithi052 (mon.0) 772 : audit [DBG] from='client.? 172.21.15.52:0/1620360893' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:48.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:48 smithi052 bash[19834]: audit 2024-09-06T14:14:47.048085+0000 mon.smithi052 (mon.0) 772 : audit [DBG] from='client.? 172.21.15.52:0/1620360893' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:50.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:50 smithi148 bash[25697]: cluster 2024-09-06T14:14:48.979798+0000 mgr.smithi052.grtqlq (mgr.14209) 212 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:50.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:50 smithi148 bash[25697]: cluster 2024-09-06T14:14:48.979798+0000 mgr.smithi052.grtqlq (mgr.14209) 212 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:50.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:50 smithi052 bash[19834]: cluster 2024-09-06T14:14:48.979798+0000 mgr.smithi052.grtqlq (mgr.14209) 212 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:50.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:50 smithi052 bash[19834]: cluster 2024-09-06T14:14:48.979798+0000 mgr.smithi052.grtqlq (mgr.14209) 212 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:50.755 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:14:52.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:52 smithi148 bash[25697]: cluster 2024-09-06T14:14:50.980221+0000 mgr.smithi052.grtqlq (mgr.14209) 213 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:52.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:52 smithi148 bash[25697]: cluster 2024-09-06T14:14:50.980221+0000 mgr.smithi052.grtqlq (mgr.14209) 213 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:52.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:52 smithi052 bash[19834]: cluster 2024-09-06T14:14:50.980221+0000 mgr.smithi052.grtqlq (mgr.14209) 213 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:52.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:52 smithi052 bash[19834]: cluster 2024-09-06T14:14:50.980221+0000 mgr.smithi052.grtqlq (mgr.14209) 213 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:53.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:53 smithi148 bash[25697]: audit 2024-09-06T14:14:52.085547+0000 mon.smithi052 (mon.0) 773 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:53.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:53 smithi148 bash[25697]: audit 2024-09-06T14:14:52.085547+0000 mon.smithi052 (mon.0) 773 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:53.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:53 smithi052 bash[19834]: audit 2024-09-06T14:14:52.085547+0000 mon.smithi052 (mon.0) 773 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:53.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:53 smithi052 bash[19834]: audit 2024-09-06T14:14:52.085547+0000 mon.smithi052 (mon.0) 773 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:14:54.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:54 smithi148 bash[25697]: cluster 2024-09-06T14:14:52.980899+0000 mgr.smithi052.grtqlq (mgr.14209) 214 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:54.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:54 smithi148 bash[25697]: cluster 2024-09-06T14:14:52.980899+0000 mgr.smithi052.grtqlq (mgr.14209) 214 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:54.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:54 smithi052 bash[19834]: cluster 2024-09-06T14:14:52.980899+0000 mgr.smithi052.grtqlq (mgr.14209) 214 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:54.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:54 smithi052 bash[19834]: cluster 2024-09-06T14:14:52.980899+0000 mgr.smithi052.grtqlq (mgr.14209) 214 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:55.586 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:14:56.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:56 smithi148 bash[25697]: cluster 2024-09-06T14:14:54.981580+0000 mgr.smithi052.grtqlq (mgr.14209) 215 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:56.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:56 smithi148 bash[25697]: cluster 2024-09-06T14:14:54.981580+0000 mgr.smithi052.grtqlq (mgr.14209) 215 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:56.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:56 smithi052 bash[19834]: cluster 2024-09-06T14:14:54.981580+0000 mgr.smithi052.grtqlq (mgr.14209) 215 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:56.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:56 smithi052 bash[19834]: cluster 2024-09-06T14:14:54.981580+0000 mgr.smithi052.grtqlq (mgr.14209) 215 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:57.046 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:14:57.046 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:14:57.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:57 smithi148 bash[25697]: audit 2024-09-06T14:14:57.052079+0000 mon.smithi052 (mon.0) 774 : audit [DBG] from='client.? 172.21.15.52:0/1500588279' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:57.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:57 smithi148 bash[25697]: audit 2024-09-06T14:14:57.052079+0000 mon.smithi052 (mon.0) 774 : audit [DBG] from='client.? 172.21.15.52:0/1500588279' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:57.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:57 smithi052 bash[19834]: audit 2024-09-06T14:14:57.052079+0000 mon.smithi052 (mon.0) 774 : audit [DBG] from='client.? 172.21.15.52:0/1500588279' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:57.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:57 smithi052 bash[19834]: audit 2024-09-06T14:14:57.052079+0000 mon.smithi052 (mon.0) 774 : audit [DBG] from='client.? 172.21.15.52:0/1500588279' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:14:58.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:58 smithi148 bash[25697]: cluster 2024-09-06T14:14:56.982191+0000 mgr.smithi052.grtqlq (mgr.14209) 216 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:58.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:14:58 smithi148 bash[25697]: cluster 2024-09-06T14:14:56.982191+0000 mgr.smithi052.grtqlq (mgr.14209) 216 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:58.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:58 smithi052 bash[19834]: cluster 2024-09-06T14:14:56.982191+0000 mgr.smithi052.grtqlq (mgr.14209) 216 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:14:58.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:14:58 smithi052 bash[19834]: cluster 2024-09-06T14:14:56.982191+0000 mgr.smithi052.grtqlq (mgr.14209) 216 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:00.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:00 smithi148 bash[25697]: cluster 2024-09-06T14:14:58.982835+0000 mgr.smithi052.grtqlq (mgr.14209) 217 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:00.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:00 smithi148 bash[25697]: cluster 2024-09-06T14:14:58.982835+0000 mgr.smithi052.grtqlq (mgr.14209) 217 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:00.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:00 smithi052 bash[19834]: cluster 2024-09-06T14:14:58.982835+0000 mgr.smithi052.grtqlq (mgr.14209) 217 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:00.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:00 smithi052 bash[19834]: cluster 2024-09-06T14:14:58.982835+0000 mgr.smithi052.grtqlq (mgr.14209) 217 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:00.760 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:15:02.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:02 smithi148 bash[25697]: cluster 2024-09-06T14:15:00.983227+0000 mgr.smithi052.grtqlq (mgr.14209) 218 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:02.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:02 smithi148 bash[25697]: cluster 2024-09-06T14:15:00.983227+0000 mgr.smithi052.grtqlq (mgr.14209) 218 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:02.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:02 smithi052 bash[19834]: cluster 2024-09-06T14:15:00.983227+0000 mgr.smithi052.grtqlq (mgr.14209) 218 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:02.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:02 smithi052 bash[19834]: cluster 2024-09-06T14:15:00.983227+0000 mgr.smithi052.grtqlq (mgr.14209) 218 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:04.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:04 smithi148 bash[25697]: cluster 2024-09-06T14:15:02.983812+0000 mgr.smithi052.grtqlq (mgr.14209) 219 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:04.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:04 smithi148 bash[25697]: cluster 2024-09-06T14:15:02.983812+0000 mgr.smithi052.grtqlq (mgr.14209) 219 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:04.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:04 smithi052 bash[19834]: cluster 2024-09-06T14:15:02.983812+0000 mgr.smithi052.grtqlq (mgr.14209) 219 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:04.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:04 smithi052 bash[19834]: cluster 2024-09-06T14:15:02.983812+0000 mgr.smithi052.grtqlq (mgr.14209) 219 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:05.582 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:15:06.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:06 smithi148 bash[25697]: cluster 2024-09-06T14:15:04.984531+0000 mgr.smithi052.grtqlq (mgr.14209) 220 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:06.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:06 smithi148 bash[25697]: cluster 2024-09-06T14:15:04.984531+0000 mgr.smithi052.grtqlq (mgr.14209) 220 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:06.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:06 smithi052 bash[19834]: cluster 2024-09-06T14:15:04.984531+0000 mgr.smithi052.grtqlq (mgr.14209) 220 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:06.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:06 smithi052 bash[19834]: cluster 2024-09-06T14:15:04.984531+0000 mgr.smithi052.grtqlq (mgr.14209) 220 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:07.098 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:15:07.098 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:15:08.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:08 smithi148 bash[25697]: cluster 2024-09-06T14:15:06.985188+0000 mgr.smithi052.grtqlq (mgr.14209) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:08.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:08 smithi148 bash[25697]: cluster 2024-09-06T14:15:06.985188+0000 mgr.smithi052.grtqlq (mgr.14209) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:08.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:08 smithi148 bash[25697]: audit 2024-09-06T14:15:07.085880+0000 mon.smithi052 (mon.0) 775 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:08.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:08 smithi148 bash[25697]: audit 2024-09-06T14:15:07.085880+0000 mon.smithi052 (mon.0) 775 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:08.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:08 smithi148 bash[25697]: audit 2024-09-06T14:15:07.104256+0000 mon.smithi052 (mon.0) 776 : audit [DBG] from='client.? 172.21.15.52:0/3988965917' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:08.434 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:08 smithi148 bash[25697]: audit 2024-09-06T14:15:07.104256+0000 mon.smithi052 (mon.0) 776 : audit [DBG] from='client.? 172.21.15.52:0/3988965917' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:08.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:08 smithi052 bash[19834]: cluster 2024-09-06T14:15:06.985188+0000 mgr.smithi052.grtqlq (mgr.14209) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:08.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:08 smithi052 bash[19834]: cluster 2024-09-06T14:15:06.985188+0000 mgr.smithi052.grtqlq (mgr.14209) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:08.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:08 smithi052 bash[19834]: audit 2024-09-06T14:15:07.085880+0000 mon.smithi052 (mon.0) 775 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:08.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:08 smithi052 bash[19834]: audit 2024-09-06T14:15:07.085880+0000 mon.smithi052 (mon.0) 775 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:08.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:08 smithi052 bash[19834]: audit 2024-09-06T14:15:07.104256+0000 mon.smithi052 (mon.0) 776 : audit [DBG] from='client.? 172.21.15.52:0/3988965917' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:08.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:08 smithi052 bash[19834]: audit 2024-09-06T14:15:07.104256+0000 mon.smithi052 (mon.0) 776 : audit [DBG] from='client.? 172.21.15.52:0/3988965917' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:10.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:10 smithi148 bash[25697]: cluster 2024-09-06T14:15:08.985838+0000 mgr.smithi052.grtqlq (mgr.14209) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:10.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:10 smithi148 bash[25697]: cluster 2024-09-06T14:15:08.985838+0000 mgr.smithi052.grtqlq (mgr.14209) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:10.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:10 smithi052 bash[19834]: cluster 2024-09-06T14:15:08.985838+0000 mgr.smithi052.grtqlq (mgr.14209) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:10.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:10 smithi052 bash[19834]: cluster 2024-09-06T14:15:08.985838+0000 mgr.smithi052.grtqlq (mgr.14209) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:10.718 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:15:12.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:12 smithi148 bash[25697]: cluster 2024-09-06T14:15:10.986496+0000 mgr.smithi052.grtqlq (mgr.14209) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:12.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:12 smithi148 bash[25697]: cluster 2024-09-06T14:15:10.986496+0000 mgr.smithi052.grtqlq (mgr.14209) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:12 smithi052 bash[19834]: cluster 2024-09-06T14:15:10.986496+0000 mgr.smithi052.grtqlq (mgr.14209) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:12.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:12 smithi052 bash[19834]: cluster 2024-09-06T14:15:10.986496+0000 mgr.smithi052.grtqlq (mgr.14209) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:14.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:14 smithi148 bash[25697]: cluster 2024-09-06T14:15:12.986939+0000 mgr.smithi052.grtqlq (mgr.14209) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:14.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:14 smithi148 bash[25697]: cluster 2024-09-06T14:15:12.986939+0000 mgr.smithi052.grtqlq (mgr.14209) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:14.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:14 smithi052 bash[19834]: cluster 2024-09-06T14:15:12.986939+0000 mgr.smithi052.grtqlq (mgr.14209) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:14.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:14 smithi052 bash[19834]: cluster 2024-09-06T14:15:12.986939+0000 mgr.smithi052.grtqlq (mgr.14209) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:15.543 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:15:16.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:16 smithi148 bash[25697]: cluster 2024-09-06T14:15:14.987533+0000 mgr.smithi052.grtqlq (mgr.14209) 225 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:16.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:16 smithi148 bash[25697]: cluster 2024-09-06T14:15:14.987533+0000 mgr.smithi052.grtqlq (mgr.14209) 225 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:16.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:16 smithi052 bash[19834]: cluster 2024-09-06T14:15:14.987533+0000 mgr.smithi052.grtqlq (mgr.14209) 225 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:16.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:16 smithi052 bash[19834]: cluster 2024-09-06T14:15:14.987533+0000 mgr.smithi052.grtqlq (mgr.14209) 225 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:16.936 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:15:16.936 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:15:17.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:17 smithi148 bash[25697]: audit 2024-09-06T14:15:16.942393+0000 mon.smithi052 (mon.0) 777 : audit [DBG] from='client.? 172.21.15.52:0/4250835580' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:17.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:17 smithi148 bash[25697]: audit 2024-09-06T14:15:16.942393+0000 mon.smithi052 (mon.0) 777 : audit [DBG] from='client.? 172.21.15.52:0/4250835580' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:17.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:17 smithi052 bash[19834]: audit 2024-09-06T14:15:16.942393+0000 mon.smithi052 (mon.0) 777 : audit [DBG] from='client.? 172.21.15.52:0/4250835580' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:17.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:17 smithi052 bash[19834]: audit 2024-09-06T14:15:16.942393+0000 mon.smithi052 (mon.0) 777 : audit [DBG] from='client.? 172.21.15.52:0/4250835580' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:18.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:18 smithi148 bash[25697]: cluster 2024-09-06T14:15:16.988080+0000 mgr.smithi052.grtqlq (mgr.14209) 226 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:18.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:18 smithi148 bash[25697]: cluster 2024-09-06T14:15:16.988080+0000 mgr.smithi052.grtqlq (mgr.14209) 226 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:18.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:18 smithi052 bash[19834]: cluster 2024-09-06T14:15:16.988080+0000 mgr.smithi052.grtqlq (mgr.14209) 226 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:18.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:18 smithi052 bash[19834]: cluster 2024-09-06T14:15:16.988080+0000 mgr.smithi052.grtqlq (mgr.14209) 226 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:20.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:20 smithi148 bash[25697]: cluster 2024-09-06T14:15:18.988673+0000 mgr.smithi052.grtqlq (mgr.14209) 227 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:20.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:20 smithi148 bash[25697]: cluster 2024-09-06T14:15:18.988673+0000 mgr.smithi052.grtqlq (mgr.14209) 227 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:20.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:20 smithi052 bash[19834]: cluster 2024-09-06T14:15:18.988673+0000 mgr.smithi052.grtqlq (mgr.14209) 227 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:20.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:20 smithi052 bash[19834]: cluster 2024-09-06T14:15:18.988673+0000 mgr.smithi052.grtqlq (mgr.14209) 227 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:20.570 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:15:22.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:22 smithi148 bash[25697]: cluster 2024-09-06T14:15:20.989364+0000 mgr.smithi052.grtqlq (mgr.14209) 228 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:22.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:22 smithi148 bash[25697]: cluster 2024-09-06T14:15:20.989364+0000 mgr.smithi052.grtqlq (mgr.14209) 228 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:22.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:22 smithi148 bash[25697]: audit 2024-09-06T14:15:22.086729+0000 mon.smithi052 (mon.0) 778 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:22.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:22 smithi148 bash[25697]: audit 2024-09-06T14:15:22.086729+0000 mon.smithi052 (mon.0) 778 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:22.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:22 smithi052 bash[19834]: cluster 2024-09-06T14:15:20.989364+0000 mgr.smithi052.grtqlq (mgr.14209) 228 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:22.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:22 smithi052 bash[19834]: cluster 2024-09-06T14:15:20.989364+0000 mgr.smithi052.grtqlq (mgr.14209) 228 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:22.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:22 smithi052 bash[19834]: audit 2024-09-06T14:15:22.086729+0000 mon.smithi052 (mon.0) 778 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:22.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:22 smithi052 bash[19834]: audit 2024-09-06T14:15:22.086729+0000 mon.smithi052 (mon.0) 778 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:24.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:24 smithi148 bash[25697]: cluster 2024-09-06T14:15:22.990035+0000 mgr.smithi052.grtqlq (mgr.14209) 229 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:24.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:24 smithi148 bash[25697]: cluster 2024-09-06T14:15:22.990035+0000 mgr.smithi052.grtqlq (mgr.14209) 229 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:24.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:24 smithi052 bash[19834]: cluster 2024-09-06T14:15:22.990035+0000 mgr.smithi052.grtqlq (mgr.14209) 229 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:24.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:24 smithi052 bash[19834]: cluster 2024-09-06T14:15:22.990035+0000 mgr.smithi052.grtqlq (mgr.14209) 229 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:25.389 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:15:26.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:26 smithi148 bash[25697]: cluster 2024-09-06T14:15:24.990716+0000 mgr.smithi052.grtqlq (mgr.14209) 230 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:26.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:26 smithi148 bash[25697]: cluster 2024-09-06T14:15:24.990716+0000 mgr.smithi052.grtqlq (mgr.14209) 230 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:26.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:26 smithi052 bash[19834]: cluster 2024-09-06T14:15:24.990716+0000 mgr.smithi052.grtqlq (mgr.14209) 230 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:26.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:26 smithi052 bash[19834]: cluster 2024-09-06T14:15:24.990716+0000 mgr.smithi052.grtqlq (mgr.14209) 230 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:26.822 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:15:26.822 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:15:27.425 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:27 smithi052 bash[19834]: audit 2024-09-06T14:15:26.828198+0000 mon.smithi052 (mon.0) 779 : audit [DBG] from='client.? 172.21.15.52:0/3687887643' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:27.425 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:27 smithi052 bash[19834]: audit 2024-09-06T14:15:26.828198+0000 mon.smithi052 (mon.0) 779 : audit [DBG] from='client.? 172.21.15.52:0/3687887643' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:27.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:27 smithi148 bash[25697]: audit 2024-09-06T14:15:26.828198+0000 mon.smithi052 (mon.0) 779 : audit [DBG] from='client.? 172.21.15.52:0/3687887643' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:27.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:27 smithi148 bash[25697]: audit 2024-09-06T14:15:26.828198+0000 mon.smithi052 (mon.0) 779 : audit [DBG] from='client.? 172.21.15.52:0/3687887643' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:28.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:28 smithi148 bash[25697]: cluster 2024-09-06T14:15:26.991304+0000 mgr.smithi052.grtqlq (mgr.14209) 231 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:28.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:28 smithi148 bash[25697]: cluster 2024-09-06T14:15:26.991304+0000 mgr.smithi052.grtqlq (mgr.14209) 231 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:28.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:28 smithi052 bash[19834]: cluster 2024-09-06T14:15:26.991304+0000 mgr.smithi052.grtqlq (mgr.14209) 231 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:28.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:28 smithi052 bash[19834]: cluster 2024-09-06T14:15:26.991304+0000 mgr.smithi052.grtqlq (mgr.14209) 231 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:30.427 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:15:30.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:30 smithi148 bash[25697]: cluster 2024-09-06T14:15:28.991867+0000 mgr.smithi052.grtqlq (mgr.14209) 232 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:30.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:30 smithi148 bash[25697]: cluster 2024-09-06T14:15:28.991867+0000 mgr.smithi052.grtqlq (mgr.14209) 232 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:30.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:30 smithi052 bash[19834]: cluster 2024-09-06T14:15:28.991867+0000 mgr.smithi052.grtqlq (mgr.14209) 232 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:30.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:30 smithi052 bash[19834]: cluster 2024-09-06T14:15:28.991867+0000 mgr.smithi052.grtqlq (mgr.14209) 232 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:32.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:32 smithi148 bash[25697]: cluster 2024-09-06T14:15:30.992524+0000 mgr.smithi052.grtqlq (mgr.14209) 233 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:32.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:32 smithi148 bash[25697]: cluster 2024-09-06T14:15:30.992524+0000 mgr.smithi052.grtqlq (mgr.14209) 233 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:32.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:32 smithi052 bash[19834]: cluster 2024-09-06T14:15:30.992524+0000 mgr.smithi052.grtqlq (mgr.14209) 233 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:32.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:32 smithi052 bash[19834]: cluster 2024-09-06T14:15:30.992524+0000 mgr.smithi052.grtqlq (mgr.14209) 233 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:34.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:34 smithi148 bash[25697]: cluster 2024-09-06T14:15:32.993118+0000 mgr.smithi052.grtqlq (mgr.14209) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:34.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:34 smithi148 bash[25697]: cluster 2024-09-06T14:15:32.993118+0000 mgr.smithi052.grtqlq (mgr.14209) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:34.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:34 smithi052 bash[19834]: cluster 2024-09-06T14:15:32.993118+0000 mgr.smithi052.grtqlq (mgr.14209) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:34.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:34 smithi052 bash[19834]: cluster 2024-09-06T14:15:32.993118+0000 mgr.smithi052.grtqlq (mgr.14209) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:35.259 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:15:36.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:36 smithi148 bash[25697]: cluster 2024-09-06T14:15:34.993772+0000 mgr.smithi052.grtqlq (mgr.14209) 235 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:36.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:36 smithi148 bash[25697]: cluster 2024-09-06T14:15:34.993772+0000 mgr.smithi052.grtqlq (mgr.14209) 235 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:36.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:36 smithi052 bash[19834]: cluster 2024-09-06T14:15:34.993772+0000 mgr.smithi052.grtqlq (mgr.14209) 235 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:36.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:36 smithi052 bash[19834]: cluster 2024-09-06T14:15:34.993772+0000 mgr.smithi052.grtqlq (mgr.14209) 235 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:36.701 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:15:36.701 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:15:37.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:37 smithi148 bash[25697]: audit 2024-09-06T14:15:36.708226+0000 mon.smithi052 (mon.0) 780 : audit [DBG] from='client.? 172.21.15.52:0/744579753' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:37.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:37 smithi148 bash[25697]: audit 2024-09-06T14:15:36.708226+0000 mon.smithi052 (mon.0) 780 : audit [DBG] from='client.? 172.21.15.52:0/744579753' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:37.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:37 smithi148 bash[25697]: audit 2024-09-06T14:15:37.086839+0000 mon.smithi052 (mon.0) 781 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:37.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:37 smithi148 bash[25697]: audit 2024-09-06T14:15:37.086839+0000 mon.smithi052 (mon.0) 781 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:37.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:37 smithi052 bash[19834]: audit 2024-09-06T14:15:36.708226+0000 mon.smithi052 (mon.0) 780 : audit [DBG] from='client.? 172.21.15.52:0/744579753' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:37.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:37 smithi052 bash[19834]: audit 2024-09-06T14:15:36.708226+0000 mon.smithi052 (mon.0) 780 : audit [DBG] from='client.? 172.21.15.52:0/744579753' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:37.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:37 smithi052 bash[19834]: audit 2024-09-06T14:15:37.086839+0000 mon.smithi052 (mon.0) 781 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:37.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:37 smithi052 bash[19834]: audit 2024-09-06T14:15:37.086839+0000 mon.smithi052 (mon.0) 781 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:38.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:38 smithi148 bash[25697]: cluster 2024-09-06T14:15:36.994516+0000 mgr.smithi052.grtqlq (mgr.14209) 236 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:38.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:38 smithi148 bash[25697]: cluster 2024-09-06T14:15:36.994516+0000 mgr.smithi052.grtqlq (mgr.14209) 236 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:38.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:38 smithi052 bash[19834]: cluster 2024-09-06T14:15:36.994516+0000 mgr.smithi052.grtqlq (mgr.14209) 236 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:38.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:38 smithi052 bash[19834]: cluster 2024-09-06T14:15:36.994516+0000 mgr.smithi052.grtqlq (mgr.14209) 236 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:40.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:40 smithi148 bash[25697]: cluster 2024-09-06T14:15:38.995159+0000 mgr.smithi052.grtqlq (mgr.14209) 237 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:40.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:40 smithi148 bash[25697]: cluster 2024-09-06T14:15:38.995159+0000 mgr.smithi052.grtqlq (mgr.14209) 237 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:40.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:40 smithi052 bash[19834]: cluster 2024-09-06T14:15:38.995159+0000 mgr.smithi052.grtqlq (mgr.14209) 237 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:40.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:40 smithi052 bash[19834]: cluster 2024-09-06T14:15:38.995159+0000 mgr.smithi052.grtqlq (mgr.14209) 237 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:40.443 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:15:42.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:42 smithi148 bash[25697]: cluster 2024-09-06T14:15:40.995867+0000 mgr.smithi052.grtqlq (mgr.14209) 238 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:42.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:42 smithi148 bash[25697]: cluster 2024-09-06T14:15:40.995867+0000 mgr.smithi052.grtqlq (mgr.14209) 238 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:42.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:42 smithi052 bash[19834]: cluster 2024-09-06T14:15:40.995867+0000 mgr.smithi052.grtqlq (mgr.14209) 238 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:42.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:42 smithi052 bash[19834]: cluster 2024-09-06T14:15:40.995867+0000 mgr.smithi052.grtqlq (mgr.14209) 238 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:44.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:44 smithi148 bash[25697]: cluster 2024-09-06T14:15:42.996666+0000 mgr.smithi052.grtqlq (mgr.14209) 239 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:44.433 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:44 smithi148 bash[25697]: cluster 2024-09-06T14:15:42.996666+0000 mgr.smithi052.grtqlq (mgr.14209) 239 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:44.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:44 smithi052 bash[19834]: cluster 2024-09-06T14:15:42.996666+0000 mgr.smithi052.grtqlq (mgr.14209) 239 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:44.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:44 smithi052 bash[19834]: cluster 2024-09-06T14:15:42.996666+0000 mgr.smithi052.grtqlq (mgr.14209) 239 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:45.266 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:15:45.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:45 smithi148 bash[25697]: audit 2024-09-06T14:15:44.516101+0000 mon.smithi052 (mon.0) 782 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:15:45.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:45 smithi148 bash[25697]: audit 2024-09-06T14:15:44.516101+0000 mon.smithi052 (mon.0) 782 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:15:45.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:45 smithi052 bash[19834]: audit 2024-09-06T14:15:44.516101+0000 mon.smithi052 (mon.0) 782 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:15:45.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:45 smithi052 bash[19834]: audit 2024-09-06T14:15:44.516101+0000 mon.smithi052 (mon.0) 782 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:15:46.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:46 smithi148 bash[25697]: cluster 2024-09-06T14:15:44.997489+0000 mgr.smithi052.grtqlq (mgr.14209) 240 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:46.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:46 smithi148 bash[25697]: cluster 2024-09-06T14:15:44.997489+0000 mgr.smithi052.grtqlq (mgr.14209) 240 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:46.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:46 smithi052 bash[19834]: cluster 2024-09-06T14:15:44.997489+0000 mgr.smithi052.grtqlq (mgr.14209) 240 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:46.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:46 smithi052 bash[19834]: cluster 2024-09-06T14:15:44.997489+0000 mgr.smithi052.grtqlq (mgr.14209) 240 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:46.733 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:15:46.733 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:15:47.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:47 smithi148 bash[25697]: audit 2024-09-06T14:15:46.739265+0000 mon.smithi052 (mon.0) 783 : audit [DBG] from='client.? 172.21.15.52:0/65759614' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:47.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:47 smithi148 bash[25697]: audit 2024-09-06T14:15:46.739265+0000 mon.smithi052 (mon.0) 783 : audit [DBG] from='client.? 172.21.15.52:0/65759614' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:47.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:47 smithi052 bash[19834]: audit 2024-09-06T14:15:46.739265+0000 mon.smithi052 (mon.0) 783 : audit [DBG] from='client.? 172.21.15.52:0/65759614' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:47.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:47 smithi052 bash[19834]: audit 2024-09-06T14:15:46.739265+0000 mon.smithi052 (mon.0) 783 : audit [DBG] from='client.? 172.21.15.52:0/65759614' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:48.624 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:48 smithi148 bash[25697]: cluster 2024-09-06T14:15:46.998177+0000 mgr.smithi052.grtqlq (mgr.14209) 241 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:48.624 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:48 smithi148 bash[25697]: cluster 2024-09-06T14:15:46.998177+0000 mgr.smithi052.grtqlq (mgr.14209) 241 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:48.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:48 smithi052 bash[19834]: cluster 2024-09-06T14:15:46.998177+0000 mgr.smithi052.grtqlq (mgr.14209) 241 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:48.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:48 smithi052 bash[19834]: cluster 2024-09-06T14:15:46.998177+0000 mgr.smithi052.grtqlq (mgr.14209) 241 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:50.371 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:15:50.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:50 smithi148 bash[25697]: cluster 2024-09-06T14:15:48.998598+0000 mgr.smithi052.grtqlq (mgr.14209) 242 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:50.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:50 smithi148 bash[25697]: cluster 2024-09-06T14:15:48.998598+0000 mgr.smithi052.grtqlq (mgr.14209) 242 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:50.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:50 smithi148 bash[25697]: audit 2024-09-06T14:15:50.113893+0000 mon.smithi052 (mon.0) 784 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:50.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:50 smithi148 bash[25697]: audit 2024-09-06T14:15:50.113893+0000 mon.smithi052 (mon.0) 784 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:50.683 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:50 smithi148 bash[25697]: audit 2024-09-06T14:15:50.118435+0000 mon.smithi052 (mon.0) 785 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:50.683 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:50 smithi148 bash[25697]: audit 2024-09-06T14:15:50.118435+0000 mon.smithi052 (mon.0) 785 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:50.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:50 smithi052 bash[19834]: cluster 2024-09-06T14:15:48.998598+0000 mgr.smithi052.grtqlq (mgr.14209) 242 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:50.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:50 smithi052 bash[19834]: cluster 2024-09-06T14:15:48.998598+0000 mgr.smithi052.grtqlq (mgr.14209) 242 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:50.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:50 smithi052 bash[19834]: audit 2024-09-06T14:15:50.113893+0000 mon.smithi052 (mon.0) 784 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:50.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:50 smithi052 bash[19834]: audit 2024-09-06T14:15:50.113893+0000 mon.smithi052 (mon.0) 784 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:50.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:50 smithi052 bash[19834]: audit 2024-09-06T14:15:50.118435+0000 mon.smithi052 (mon.0) 785 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:50.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:50 smithi052 bash[19834]: audit 2024-09-06T14:15:50.118435+0000 mon.smithi052 (mon.0) 785 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.182 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:50.772200+0000 mon.smithi052 (mon.0) 786 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:50.772200+0000 mon.smithi052 (mon.0) 786 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:50.777160+0000 mon.smithi052 (mon.0) 787 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:50.777160+0000 mon.smithi052 (mon.0) 787 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: cluster 2024-09-06T14:15:50.999181+0000 mgr.smithi052.grtqlq (mgr.14209) 243 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:52.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: cluster 2024-09-06T14:15:50.999181+0000 mgr.smithi052.grtqlq (mgr.14209) 243 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:52.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:51.387261+0000 mon.smithi052 (mon.0) 788 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:15:52.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:51.387261+0000 mon.smithi052 (mon.0) 788 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:15:52.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:51.388528+0000 mon.smithi052 (mon.0) 789 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:15:52.183 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:51.388528+0000 mon.smithi052 (mon.0) 789 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:15:52.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:51.395156+0000 mon.smithi052 (mon.0) 790 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:51.395156+0000 mon.smithi052 (mon.0) 790 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:51.399474+0000 mon.smithi052 (mon.0) 791 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:15:52.184 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:51 smithi148 bash[25697]: audit 2024-09-06T14:15:51.399474+0000 mon.smithi052 (mon.0) 791 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:15:52.186 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:50.772200+0000 mon.smithi052 (mon.0) 786 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:50.772200+0000 mon.smithi052 (mon.0) 786 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:50.777160+0000 mon.smithi052 (mon.0) 787 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:50.777160+0000 mon.smithi052 (mon.0) 787 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: cluster 2024-09-06T14:15:50.999181+0000 mgr.smithi052.grtqlq (mgr.14209) 243 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: cluster 2024-09-06T14:15:50.999181+0000 mgr.smithi052.grtqlq (mgr.14209) 243 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:51.387261+0000 mon.smithi052 (mon.0) 788 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:51.387261+0000 mon.smithi052 (mon.0) 788 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:51.388528+0000 mon.smithi052 (mon.0) 789 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:51.388528+0000 mon.smithi052 (mon.0) 789 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:51.395156+0000 mon.smithi052 (mon.0) 790 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:51.395156+0000 mon.smithi052 (mon.0) 790 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:15:52.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:51.399474+0000 mon.smithi052 (mon.0) 791 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:15:52.188 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:51 smithi052 bash[19834]: audit 2024-09-06T14:15:51.399474+0000 mon.smithi052 (mon.0) 791 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:15:53.182 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:52 smithi148 bash[25697]: audit 2024-09-06T14:15:52.087378+0000 mon.smithi052 (mon.0) 792 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:53.182 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:52 smithi148 bash[25697]: audit 2024-09-06T14:15:52.087378+0000 mon.smithi052 (mon.0) 792 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:53.186 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:52 smithi052 bash[19834]: audit 2024-09-06T14:15:52.087378+0000 mon.smithi052 (mon.0) 792 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:53.187 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:52 smithi052 bash[19834]: audit 2024-09-06T14:15:52.087378+0000 mon.smithi052 (mon.0) 792 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:15:53.932 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:53 smithi148 bash[25697]: cluster 2024-09-06T14:15:52.999863+0000 mgr.smithi052.grtqlq (mgr.14209) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:53.932 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:53 smithi148 bash[25697]: cluster 2024-09-06T14:15:52.999863+0000 mgr.smithi052.grtqlq (mgr.14209) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:54.186 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:53 smithi052 bash[19834]: cluster 2024-09-06T14:15:52.999863+0000 mgr.smithi052.grtqlq (mgr.14209) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:54.186 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:53 smithi052 bash[19834]: cluster 2024-09-06T14:15:52.999863+0000 mgr.smithi052.grtqlq (mgr.14209) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:55.194 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:15:56.330 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:56 smithi052 bash[19834]: cluster 2024-09-06T14:15:55.000637+0000 mgr.smithi052.grtqlq (mgr.14209) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:56.330 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:56 smithi052 bash[19834]: cluster 2024-09-06T14:15:55.000637+0000 mgr.smithi052.grtqlq (mgr.14209) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:56.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:56 smithi148 bash[25697]: cluster 2024-09-06T14:15:55.000637+0000 mgr.smithi052.grtqlq (mgr.14209) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:56.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:56 smithi148 bash[25697]: cluster 2024-09-06T14:15:55.000637+0000 mgr.smithi052.grtqlq (mgr.14209) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:56.700 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:15:56.700 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:15:57.335 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:57 smithi052 bash[19834]: audit 2024-09-06T14:15:56.706649+0000 mon.smithi052 (mon.0) 793 : audit [DBG] from='client.? 172.21.15.52:0/2422448290' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:57.336 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:57 smithi052 bash[19834]: audit 2024-09-06T14:15:56.706649+0000 mon.smithi052 (mon.0) 793 : audit [DBG] from='client.? 172.21.15.52:0/2422448290' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:57.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:57 smithi148 bash[25697]: audit 2024-09-06T14:15:56.706649+0000 mon.smithi052 (mon.0) 793 : audit [DBG] from='client.? 172.21.15.52:0/2422448290' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:57.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:57 smithi148 bash[25697]: audit 2024-09-06T14:15:56.706649+0000 mon.smithi052 (mon.0) 793 : audit [DBG] from='client.? 172.21.15.52:0/2422448290' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:15:58.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:58 smithi148 bash[25697]: cluster 2024-09-06T14:15:57.001459+0000 mgr.smithi052.grtqlq (mgr.14209) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:58.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:15:58 smithi148 bash[25697]: cluster 2024-09-06T14:15:57.001459+0000 mgr.smithi052.grtqlq (mgr.14209) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:58.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:58 smithi052 bash[19834]: cluster 2024-09-06T14:15:57.001459+0000 mgr.smithi052.grtqlq (mgr.14209) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:15:58.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:15:58 smithi052 bash[19834]: cluster 2024-09-06T14:15:57.001459+0000 mgr.smithi052.grtqlq (mgr.14209) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:00.339 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:16:00.350 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:00 smithi052 bash[19834]: cluster 2024-09-06T14:15:59.002162+0000 mgr.smithi052.grtqlq (mgr.14209) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:00.351 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:00 smithi052 bash[19834]: cluster 2024-09-06T14:15:59.002162+0000 mgr.smithi052.grtqlq (mgr.14209) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:00.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:00 smithi148 bash[25697]: cluster 2024-09-06T14:15:59.002162+0000 mgr.smithi052.grtqlq (mgr.14209) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:00.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:00 smithi148 bash[25697]: cluster 2024-09-06T14:15:59.002162+0000 mgr.smithi052.grtqlq (mgr.14209) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:02.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:02 smithi148 bash[25697]: cluster 2024-09-06T14:16:01.002855+0000 mgr.smithi052.grtqlq (mgr.14209) 248 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:02.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:02 smithi148 bash[25697]: cluster 2024-09-06T14:16:01.002855+0000 mgr.smithi052.grtqlq (mgr.14209) 248 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:02.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:02 smithi052 bash[19834]: cluster 2024-09-06T14:16:01.002855+0000 mgr.smithi052.grtqlq (mgr.14209) 248 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:02.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:02 smithi052 bash[19834]: cluster 2024-09-06T14:16:01.002855+0000 mgr.smithi052.grtqlq (mgr.14209) 248 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:04.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:04 smithi148 bash[25697]: cluster 2024-09-06T14:16:03.003533+0000 mgr.smithi052.grtqlq (mgr.14209) 249 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:04.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:04 smithi148 bash[25697]: cluster 2024-09-06T14:16:03.003533+0000 mgr.smithi052.grtqlq (mgr.14209) 249 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:04.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:04 smithi052 bash[19834]: cluster 2024-09-06T14:16:03.003533+0000 mgr.smithi052.grtqlq (mgr.14209) 249 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:04.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:04 smithi052 bash[19834]: cluster 2024-09-06T14:16:03.003533+0000 mgr.smithi052.grtqlq (mgr.14209) 249 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:05.169 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:16:06.371 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:06 smithi052 bash[19834]: cluster 2024-09-06T14:16:05.004191+0000 mgr.smithi052.grtqlq (mgr.14209) 250 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:06.371 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:06 smithi052 bash[19834]: cluster 2024-09-06T14:16:05.004191+0000 mgr.smithi052.grtqlq (mgr.14209) 250 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:06.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:06 smithi148 bash[25697]: cluster 2024-09-06T14:16:05.004191+0000 mgr.smithi052.grtqlq (mgr.14209) 250 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:06.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:06 smithi148 bash[25697]: cluster 2024-09-06T14:16:05.004191+0000 mgr.smithi052.grtqlq (mgr.14209) 250 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:06.750 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:16:06.750 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:16:07.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:07 smithi148 bash[25697]: audit 2024-09-06T14:16:06.756674+0000 mon.smithi052 (mon.0) 794 : audit [DBG] from='client.? 172.21.15.52:0/2288904662' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:07.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:07 smithi148 bash[25697]: audit 2024-09-06T14:16:06.756674+0000 mon.smithi052 (mon.0) 794 : audit [DBG] from='client.? 172.21.15.52:0/2288904662' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:07.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:07 smithi052 bash[19834]: audit 2024-09-06T14:16:06.756674+0000 mon.smithi052 (mon.0) 794 : audit [DBG] from='client.? 172.21.15.52:0/2288904662' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:07.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:07 smithi052 bash[19834]: audit 2024-09-06T14:16:06.756674+0000 mon.smithi052 (mon.0) 794 : audit [DBG] from='client.? 172.21.15.52:0/2288904662' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:08.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:08 smithi148 bash[25697]: cluster 2024-09-06T14:16:07.004891+0000 mgr.smithi052.grtqlq (mgr.14209) 251 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:08.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:08 smithi148 bash[25697]: cluster 2024-09-06T14:16:07.004891+0000 mgr.smithi052.grtqlq (mgr.14209) 251 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:08.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:08 smithi148 bash[25697]: audit 2024-09-06T14:16:07.090401+0000 mon.smithi052 (mon.0) 795 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:08.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:08 smithi148 bash[25697]: audit 2024-09-06T14:16:07.090401+0000 mon.smithi052 (mon.0) 795 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:08.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:08 smithi052 bash[19834]: cluster 2024-09-06T14:16:07.004891+0000 mgr.smithi052.grtqlq (mgr.14209) 251 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:08.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:08 smithi052 bash[19834]: cluster 2024-09-06T14:16:07.004891+0000 mgr.smithi052.grtqlq (mgr.14209) 251 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:08.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:08 smithi052 bash[19834]: audit 2024-09-06T14:16:07.090401+0000 mon.smithi052 (mon.0) 795 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:08.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:08 smithi052 bash[19834]: audit 2024-09-06T14:16:07.090401+0000 mon.smithi052 (mon.0) 795 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:10.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:10 smithi148 bash[25697]: cluster 2024-09-06T14:16:09.005567+0000 mgr.smithi052.grtqlq (mgr.14209) 252 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:10.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:10 smithi148 bash[25697]: cluster 2024-09-06T14:16:09.005567+0000 mgr.smithi052.grtqlq (mgr.14209) 252 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:10.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:10 smithi052 bash[19834]: cluster 2024-09-06T14:16:09.005567+0000 mgr.smithi052.grtqlq (mgr.14209) 252 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:10.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:10 smithi052 bash[19834]: cluster 2024-09-06T14:16:09.005567+0000 mgr.smithi052.grtqlq (mgr.14209) 252 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:10.461 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:16:12.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:12 smithi148 bash[25697]: cluster 2024-09-06T14:16:11.006241+0000 mgr.smithi052.grtqlq (mgr.14209) 253 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:12.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:12 smithi148 bash[25697]: cluster 2024-09-06T14:16:11.006241+0000 mgr.smithi052.grtqlq (mgr.14209) 253 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:12 smithi052 bash[19834]: cluster 2024-09-06T14:16:11.006241+0000 mgr.smithi052.grtqlq (mgr.14209) 253 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:12 smithi052 bash[19834]: cluster 2024-09-06T14:16:11.006241+0000 mgr.smithi052.grtqlq (mgr.14209) 253 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:14.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:14 smithi148 bash[25697]: cluster 2024-09-06T14:16:13.006922+0000 mgr.smithi052.grtqlq (mgr.14209) 254 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:14.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:14 smithi148 bash[25697]: cluster 2024-09-06T14:16:13.006922+0000 mgr.smithi052.grtqlq (mgr.14209) 254 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:14.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:14 smithi052 bash[19834]: cluster 2024-09-06T14:16:13.006922+0000 mgr.smithi052.grtqlq (mgr.14209) 254 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:14.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:14 smithi052 bash[19834]: cluster 2024-09-06T14:16:13.006922+0000 mgr.smithi052.grtqlq (mgr.14209) 254 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:15.287 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:16:16.361 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:16 smithi052 bash[19834]: cluster 2024-09-06T14:16:15.007668+0000 mgr.smithi052.grtqlq (mgr.14209) 255 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:16.362 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:16 smithi052 bash[19834]: cluster 2024-09-06T14:16:15.007668+0000 mgr.smithi052.grtqlq (mgr.14209) 255 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:16.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:16 smithi148 bash[25697]: cluster 2024-09-06T14:16:15.007668+0000 mgr.smithi052.grtqlq (mgr.14209) 255 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:16.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:16 smithi148 bash[25697]: cluster 2024-09-06T14:16:15.007668+0000 mgr.smithi052.grtqlq (mgr.14209) 255 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:16.711 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:16:16.712 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:16:17.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:17 smithi148 bash[25697]: audit 2024-09-06T14:16:16.717208+0000 mon.smithi052 (mon.0) 796 : audit [DBG] from='client.? 172.21.15.52:0/3589776756' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:17.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:17 smithi148 bash[25697]: audit 2024-09-06T14:16:16.717208+0000 mon.smithi052 (mon.0) 796 : audit [DBG] from='client.? 172.21.15.52:0/3589776756' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:17.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:17 smithi052 bash[19834]: audit 2024-09-06T14:16:16.717208+0000 mon.smithi052 (mon.0) 796 : audit [DBG] from='client.? 172.21.15.52:0/3589776756' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:17.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:17 smithi052 bash[19834]: audit 2024-09-06T14:16:16.717208+0000 mon.smithi052 (mon.0) 796 : audit [DBG] from='client.? 172.21.15.52:0/3589776756' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:18.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:18 smithi148 bash[25697]: cluster 2024-09-06T14:16:17.008504+0000 mgr.smithi052.grtqlq (mgr.14209) 256 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:18.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:18 smithi148 bash[25697]: cluster 2024-09-06T14:16:17.008504+0000 mgr.smithi052.grtqlq (mgr.14209) 256 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:18.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:18 smithi052 bash[19834]: cluster 2024-09-06T14:16:17.008504+0000 mgr.smithi052.grtqlq (mgr.14209) 256 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:18.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:18 smithi052 bash[19834]: cluster 2024-09-06T14:16:17.008504+0000 mgr.smithi052.grtqlq (mgr.14209) 256 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:20.352 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:16:20.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:20 smithi148 bash[25697]: cluster 2024-09-06T14:16:19.009322+0000 mgr.smithi052.grtqlq (mgr.14209) 257 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:20.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:20 smithi148 bash[25697]: cluster 2024-09-06T14:16:19.009322+0000 mgr.smithi052.grtqlq (mgr.14209) 257 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:20.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:20 smithi052 bash[19834]: cluster 2024-09-06T14:16:19.009322+0000 mgr.smithi052.grtqlq (mgr.14209) 257 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:20.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:20 smithi052 bash[19834]: cluster 2024-09-06T14:16:19.009322+0000 mgr.smithi052.grtqlq (mgr.14209) 257 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:22.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:22 smithi148 bash[25697]: cluster 2024-09-06T14:16:21.010035+0000 mgr.smithi052.grtqlq (mgr.14209) 258 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:22.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:22 smithi148 bash[25697]: cluster 2024-09-06T14:16:21.010035+0000 mgr.smithi052.grtqlq (mgr.14209) 258 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:22.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:22 smithi148 bash[25697]: audit 2024-09-06T14:16:22.088227+0000 mon.smithi052 (mon.0) 797 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:22.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:22 smithi148 bash[25697]: audit 2024-09-06T14:16:22.088227+0000 mon.smithi052 (mon.0) 797 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:22.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:22 smithi052 bash[19834]: cluster 2024-09-06T14:16:21.010035+0000 mgr.smithi052.grtqlq (mgr.14209) 258 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:22.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:22 smithi052 bash[19834]: cluster 2024-09-06T14:16:21.010035+0000 mgr.smithi052.grtqlq (mgr.14209) 258 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:22.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:22 smithi052 bash[19834]: audit 2024-09-06T14:16:22.088227+0000 mon.smithi052 (mon.0) 797 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:22.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:22 smithi052 bash[19834]: audit 2024-09-06T14:16:22.088227+0000 mon.smithi052 (mon.0) 797 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:24.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:24 smithi148 bash[25697]: cluster 2024-09-06T14:16:23.010755+0000 mgr.smithi052.grtqlq (mgr.14209) 259 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:24.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:24 smithi148 bash[25697]: cluster 2024-09-06T14:16:23.010755+0000 mgr.smithi052.grtqlq (mgr.14209) 259 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:24.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:24 smithi052 bash[19834]: cluster 2024-09-06T14:16:23.010755+0000 mgr.smithi052.grtqlq (mgr.14209) 259 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:24.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:24 smithi052 bash[19834]: cluster 2024-09-06T14:16:23.010755+0000 mgr.smithi052.grtqlq (mgr.14209) 259 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:25.178 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:16:26.389 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:26 smithi052 bash[19834]: cluster 2024-09-06T14:16:25.011421+0000 mgr.smithi052.grtqlq (mgr.14209) 260 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:26.389 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:26 smithi052 bash[19834]: cluster 2024-09-06T14:16:25.011421+0000 mgr.smithi052.grtqlq (mgr.14209) 260 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:26.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:26 smithi148 bash[25697]: cluster 2024-09-06T14:16:25.011421+0000 mgr.smithi052.grtqlq (mgr.14209) 260 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:26.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:26 smithi148 bash[25697]: cluster 2024-09-06T14:16:25.011421+0000 mgr.smithi052.grtqlq (mgr.14209) 260 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:26.731 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:16:26.731 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:16:27.401 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:27 smithi052 bash[19834]: audit 2024-09-06T14:16:26.737746+0000 mon.smithi052 (mon.0) 798 : audit [DBG] from='client.? 172.21.15.52:0/4413164' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:27.401 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:27 smithi052 bash[19834]: audit 2024-09-06T14:16:26.737746+0000 mon.smithi052 (mon.0) 798 : audit [DBG] from='client.? 172.21.15.52:0/4413164' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:27.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:27 smithi148 bash[25697]: audit 2024-09-06T14:16:26.737746+0000 mon.smithi052 (mon.0) 798 : audit [DBG] from='client.? 172.21.15.52:0/4413164' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:27.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:27 smithi148 bash[25697]: audit 2024-09-06T14:16:26.737746+0000 mon.smithi052 (mon.0) 798 : audit [DBG] from='client.? 172.21.15.52:0/4413164' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:28.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:28 smithi148 bash[25697]: cluster 2024-09-06T14:16:27.012115+0000 mgr.smithi052.grtqlq (mgr.14209) 261 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:28.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:28 smithi148 bash[25697]: cluster 2024-09-06T14:16:27.012115+0000 mgr.smithi052.grtqlq (mgr.14209) 261 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:28.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:28 smithi052 bash[19834]: cluster 2024-09-06T14:16:27.012115+0000 mgr.smithi052.grtqlq (mgr.14209) 261 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:28.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:28 smithi052 bash[19834]: cluster 2024-09-06T14:16:27.012115+0000 mgr.smithi052.grtqlq (mgr.14209) 261 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:30.403 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:16:30.415 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:30 smithi052 bash[19834]: cluster 2024-09-06T14:16:29.012782+0000 mgr.smithi052.grtqlq (mgr.14209) 262 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:30.415 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:30 smithi052 bash[19834]: cluster 2024-09-06T14:16:29.012782+0000 mgr.smithi052.grtqlq (mgr.14209) 262 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:30.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:30 smithi148 bash[25697]: cluster 2024-09-06T14:16:29.012782+0000 mgr.smithi052.grtqlq (mgr.14209) 262 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:30.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:30 smithi148 bash[25697]: cluster 2024-09-06T14:16:29.012782+0000 mgr.smithi052.grtqlq (mgr.14209) 262 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:32.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:32 smithi148 bash[25697]: cluster 2024-09-06T14:16:31.013506+0000 mgr.smithi052.grtqlq (mgr.14209) 263 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:32.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:32 smithi148 bash[25697]: cluster 2024-09-06T14:16:31.013506+0000 mgr.smithi052.grtqlq (mgr.14209) 263 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:32.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:32 smithi052 bash[19834]: cluster 2024-09-06T14:16:31.013506+0000 mgr.smithi052.grtqlq (mgr.14209) 263 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:32.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:32 smithi052 bash[19834]: cluster 2024-09-06T14:16:31.013506+0000 mgr.smithi052.grtqlq (mgr.14209) 263 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:34.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:34 smithi148 bash[25697]: cluster 2024-09-06T14:16:33.014154+0000 mgr.smithi052.grtqlq (mgr.14209) 264 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:34.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:34 smithi148 bash[25697]: cluster 2024-09-06T14:16:33.014154+0000 mgr.smithi052.grtqlq (mgr.14209) 264 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:34.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:34 smithi052 bash[19834]: cluster 2024-09-06T14:16:33.014154+0000 mgr.smithi052.grtqlq (mgr.14209) 264 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:34.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:34 smithi052 bash[19834]: cluster 2024-09-06T14:16:33.014154+0000 mgr.smithi052.grtqlq (mgr.14209) 264 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:35.242 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:16:36.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:36 smithi052 bash[19834]: cluster 2024-09-06T14:16:35.014910+0000 mgr.smithi052.grtqlq (mgr.14209) 265 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:36.408 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:36 smithi052 bash[19834]: cluster 2024-09-06T14:16:35.014910+0000 mgr.smithi052.grtqlq (mgr.14209) 265 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:36.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:36 smithi148 bash[25697]: cluster 2024-09-06T14:16:35.014910+0000 mgr.smithi052.grtqlq (mgr.14209) 265 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:36.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:36 smithi148 bash[25697]: cluster 2024-09-06T14:16:35.014910+0000 mgr.smithi052.grtqlq (mgr.14209) 265 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:36.748 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:16:36.748 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:16:37.425 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:37 smithi052 bash[19834]: audit 2024-09-06T14:16:36.754832+0000 mon.smithi052 (mon.0) 799 : audit [DBG] from='client.? 172.21.15.52:0/1709783640' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:37.425 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:37 smithi052 bash[19834]: audit 2024-09-06T14:16:36.754832+0000 mon.smithi052 (mon.0) 799 : audit [DBG] from='client.? 172.21.15.52:0/1709783640' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:37.425 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:37 smithi052 bash[19834]: audit 2024-09-06T14:16:37.088571+0000 mon.smithi052 (mon.0) 800 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:37.426 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:37 smithi052 bash[19834]: audit 2024-09-06T14:16:37.088571+0000 mon.smithi052 (mon.0) 800 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:37.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:37 smithi148 bash[25697]: audit 2024-09-06T14:16:36.754832+0000 mon.smithi052 (mon.0) 799 : audit [DBG] from='client.? 172.21.15.52:0/1709783640' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:37.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:37 smithi148 bash[25697]: audit 2024-09-06T14:16:36.754832+0000 mon.smithi052 (mon.0) 799 : audit [DBG] from='client.? 172.21.15.52:0/1709783640' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:37.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:37 smithi148 bash[25697]: audit 2024-09-06T14:16:37.088571+0000 mon.smithi052 (mon.0) 800 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:37.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:37 smithi148 bash[25697]: audit 2024-09-06T14:16:37.088571+0000 mon.smithi052 (mon.0) 800 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:38.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:38 smithi148 bash[25697]: cluster 2024-09-06T14:16:37.015620+0000 mgr.smithi052.grtqlq (mgr.14209) 266 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:38.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:38 smithi148 bash[25697]: cluster 2024-09-06T14:16:37.015620+0000 mgr.smithi052.grtqlq (mgr.14209) 266 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:38.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:38 smithi052 bash[19834]: cluster 2024-09-06T14:16:37.015620+0000 mgr.smithi052.grtqlq (mgr.14209) 266 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:38.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:38 smithi052 bash[19834]: cluster 2024-09-06T14:16:37.015620+0000 mgr.smithi052.grtqlq (mgr.14209) 266 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:40.428 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:16:40.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:40 smithi148 bash[25697]: cluster 2024-09-06T14:16:39.016388+0000 mgr.smithi052.grtqlq (mgr.14209) 267 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:40.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:40 smithi148 bash[25697]: cluster 2024-09-06T14:16:39.016388+0000 mgr.smithi052.grtqlq (mgr.14209) 267 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:40.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:40 smithi052 bash[19834]: cluster 2024-09-06T14:16:39.016388+0000 mgr.smithi052.grtqlq (mgr.14209) 267 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:40.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:40 smithi052 bash[19834]: cluster 2024-09-06T14:16:39.016388+0000 mgr.smithi052.grtqlq (mgr.14209) 267 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:42.431 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:42 smithi148 bash[25697]: cluster 2024-09-06T14:16:41.017098+0000 mgr.smithi052.grtqlq (mgr.14209) 268 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:42.432 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:42 smithi148 bash[25697]: cluster 2024-09-06T14:16:41.017098+0000 mgr.smithi052.grtqlq (mgr.14209) 268 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:42.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:42 smithi052 bash[19834]: cluster 2024-09-06T14:16:41.017098+0000 mgr.smithi052.grtqlq (mgr.14209) 268 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:42.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:42 smithi052 bash[19834]: cluster 2024-09-06T14:16:41.017098+0000 mgr.smithi052.grtqlq (mgr.14209) 268 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:44.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:44 smithi052 bash[19834]: cluster 2024-09-06T14:16:43.017902+0000 mgr.smithi052.grtqlq (mgr.14209) 269 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:44.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:44 smithi052 bash[19834]: cluster 2024-09-06T14:16:43.017902+0000 mgr.smithi052.grtqlq (mgr.14209) 269 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:44.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:44 smithi148 bash[25697]: cluster 2024-09-06T14:16:43.017902+0000 mgr.smithi052.grtqlq (mgr.14209) 269 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:44.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:44 smithi148 bash[25697]: cluster 2024-09-06T14:16:43.017902+0000 mgr.smithi052.grtqlq (mgr.14209) 269 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:45.255 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:16:46.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:46 smithi052 bash[19834]: cluster 2024-09-06T14:16:45.018613+0000 mgr.smithi052.grtqlq (mgr.14209) 270 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:46.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:46 smithi052 bash[19834]: cluster 2024-09-06T14:16:45.018613+0000 mgr.smithi052.grtqlq (mgr.14209) 270 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:46.646 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:16:46.647 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:16:46.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:46 smithi148 bash[25697]: cluster 2024-09-06T14:16:45.018613+0000 mgr.smithi052.grtqlq (mgr.14209) 270 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:46.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:46 smithi148 bash[25697]: cluster 2024-09-06T14:16:45.018613+0000 mgr.smithi052.grtqlq (mgr.14209) 270 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:47.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:47 smithi148 bash[25697]: audit 2024-09-06T14:16:46.653595+0000 mon.smithi052 (mon.0) 801 : audit [DBG] from='client.? 172.21.15.52:0/512586660' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:47.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:47 smithi148 bash[25697]: audit 2024-09-06T14:16:46.653595+0000 mon.smithi052 (mon.0) 801 : audit [DBG] from='client.? 172.21.15.52:0/512586660' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:47.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:47 smithi052 bash[19834]: audit 2024-09-06T14:16:46.653595+0000 mon.smithi052 (mon.0) 801 : audit [DBG] from='client.? 172.21.15.52:0/512586660' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:47.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:47 smithi052 bash[19834]: audit 2024-09-06T14:16:46.653595+0000 mon.smithi052 (mon.0) 801 : audit [DBG] from='client.? 172.21.15.52:0/512586660' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:48.626 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:48 smithi148 bash[25697]: cluster 2024-09-06T14:16:47.019292+0000 mgr.smithi052.grtqlq (mgr.14209) 271 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:48.626 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:48 smithi148 bash[25697]: cluster 2024-09-06T14:16:47.019292+0000 mgr.smithi052.grtqlq (mgr.14209) 271 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:48.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:48 smithi052 bash[19834]: cluster 2024-09-06T14:16:47.019292+0000 mgr.smithi052.grtqlq (mgr.14209) 271 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:48.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:48 smithi052 bash[19834]: cluster 2024-09-06T14:16:47.019292+0000 mgr.smithi052.grtqlq (mgr.14209) 271 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:50.336 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:16:50.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:50 smithi148 bash[25697]: cluster 2024-09-06T14:16:49.019963+0000 mgr.smithi052.grtqlq (mgr.14209) 272 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:50.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:50 smithi148 bash[25697]: cluster 2024-09-06T14:16:49.019963+0000 mgr.smithi052.grtqlq (mgr.14209) 272 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:50.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:50 smithi052 bash[19834]: cluster 2024-09-06T14:16:49.019963+0000 mgr.smithi052.grtqlq (mgr.14209) 272 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:50.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:50 smithi052 bash[19834]: cluster 2024-09-06T14:16:49.019963+0000 mgr.smithi052.grtqlq (mgr.14209) 272 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:52.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:52 smithi148 bash[25697]: cluster 2024-09-06T14:16:51.020665+0000 mgr.smithi052.grtqlq (mgr.14209) 273 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:52.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:52 smithi148 bash[25697]: cluster 2024-09-06T14:16:51.020665+0000 mgr.smithi052.grtqlq (mgr.14209) 273 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:52.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:52 smithi148 bash[25697]: audit 2024-09-06T14:16:51.907844+0000 mon.smithi052 (mon.0) 802 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:16:52.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:52 smithi148 bash[25697]: audit 2024-09-06T14:16:51.907844+0000 mon.smithi052 (mon.0) 802 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:16:52.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:52 smithi148 bash[25697]: audit 2024-09-06T14:16:52.088989+0000 mon.smithi052 (mon.0) 803 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:52.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:52 smithi148 bash[25697]: audit 2024-09-06T14:16:52.088989+0000 mon.smithi052 (mon.0) 803 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:52.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:52 smithi052 bash[19834]: cluster 2024-09-06T14:16:51.020665+0000 mgr.smithi052.grtqlq (mgr.14209) 273 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:52.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:52 smithi052 bash[19834]: cluster 2024-09-06T14:16:51.020665+0000 mgr.smithi052.grtqlq (mgr.14209) 273 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:52.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:52 smithi052 bash[19834]: audit 2024-09-06T14:16:51.907844+0000 mon.smithi052 (mon.0) 802 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:16:52.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:52 smithi052 bash[19834]: audit 2024-09-06T14:16:51.907844+0000 mon.smithi052 (mon.0) 802 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:16:52.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:52 smithi052 bash[19834]: audit 2024-09-06T14:16:52.088989+0000 mon.smithi052 (mon.0) 803 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:52.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:52 smithi052 bash[19834]: audit 2024-09-06T14:16:52.088989+0000 mon.smithi052 (mon.0) 803 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:16:54.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:54 smithi148 bash[25697]: cluster 2024-09-06T14:16:53.021341+0000 mgr.smithi052.grtqlq (mgr.14209) 274 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:54.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:54 smithi148 bash[25697]: cluster 2024-09-06T14:16:53.021341+0000 mgr.smithi052.grtqlq (mgr.14209) 274 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:54.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:54 smithi052 bash[19834]: cluster 2024-09-06T14:16:53.021341+0000 mgr.smithi052.grtqlq (mgr.14209) 274 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:54.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:54 smithi052 bash[19834]: cluster 2024-09-06T14:16:53.021341+0000 mgr.smithi052.grtqlq (mgr.14209) 274 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:55.169 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:16:56.513 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:56 smithi052 bash[19834]: cluster 2024-09-06T14:16:55.022005+0000 mgr.smithi052.grtqlq (mgr.14209) 275 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:56.513 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:56 smithi052 bash[19834]: cluster 2024-09-06T14:16:55.022005+0000 mgr.smithi052.grtqlq (mgr.14209) 275 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:56.676 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:16:56.676 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:16:56.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:56 smithi148 bash[25697]: cluster 2024-09-06T14:16:55.022005+0000 mgr.smithi052.grtqlq (mgr.14209) 275 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:56.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:56 smithi148 bash[25697]: cluster 2024-09-06T14:16:55.022005+0000 mgr.smithi052.grtqlq (mgr.14209) 275 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:57.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:57 smithi148 bash[25697]: audit 2024-09-06T14:16:56.683753+0000 mon.smithi052 (mon.0) 804 : audit [DBG] from='client.? 172.21.15.52:0/3753422287' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:57.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:57 smithi148 bash[25697]: audit 2024-09-06T14:16:56.683753+0000 mon.smithi052 (mon.0) 804 : audit [DBG] from='client.? 172.21.15.52:0/3753422287' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:57.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:57 smithi148 bash[25697]: audit 2024-09-06T14:16:57.079208+0000 mon.smithi052 (mon.0) 805 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:57.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:57 smithi148 bash[25697]: audit 2024-09-06T14:16:57.079208+0000 mon.smithi052 (mon.0) 805 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:57.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:57 smithi148 bash[25697]: audit 2024-09-06T14:16:57.083353+0000 mon.smithi052 (mon.0) 806 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:57.682 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:57 smithi148 bash[25697]: audit 2024-09-06T14:16:57.083353+0000 mon.smithi052 (mon.0) 806 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:57.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:57 smithi052 bash[19834]: audit 2024-09-06T14:16:56.683753+0000 mon.smithi052 (mon.0) 804 : audit [DBG] from='client.? 172.21.15.52:0/3753422287' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:57.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:57 smithi052 bash[19834]: audit 2024-09-06T14:16:56.683753+0000 mon.smithi052 (mon.0) 804 : audit [DBG] from='client.? 172.21.15.52:0/3753422287' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:16:57.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:57 smithi052 bash[19834]: audit 2024-09-06T14:16:57.079208+0000 mon.smithi052 (mon.0) 805 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:57.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:57 smithi052 bash[19834]: audit 2024-09-06T14:16:57.079208+0000 mon.smithi052 (mon.0) 805 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:57.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:57 smithi052 bash[19834]: audit 2024-09-06T14:16:57.083353+0000 mon.smithi052 (mon.0) 806 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:57.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:57 smithi052 bash[19834]: audit 2024-09-06T14:16:57.083353+0000 mon.smithi052 (mon.0) 806 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.627 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: cluster 2024-09-06T14:16:57.022409+0000 mgr.smithi052.grtqlq (mgr.14209) 276 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:58.627 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: cluster 2024-09-06T14:16:57.022409+0000 mgr.smithi052.grtqlq (mgr.14209) 276 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:58.627 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:57.520322+0000 mon.smithi052 (mon.0) 807 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:57.520322+0000 mon.smithi052 (mon.0) 807 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:57.529205+0000 mon.smithi052 (mon.0) 808 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:57.529205+0000 mon.smithi052 (mon.0) 808 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:58.136035+0000 mon.smithi052 (mon.0) 809 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:58.136035+0000 mon.smithi052 (mon.0) 809 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:58.137541+0000 mon.smithi052 (mon.0) 810 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:58.137541+0000 mon.smithi052 (mon.0) 810 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:58.147296+0000 mon.smithi052 (mon.0) 811 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:58.147296+0000 mon.smithi052 (mon.0) 811 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:58.153916+0000 mon.smithi052 (mon.0) 812 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:16:58.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:16:58 smithi148 bash[25697]: audit 2024-09-06T14:16:58.153916+0000 mon.smithi052 (mon.0) 812 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:16:58.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: cluster 2024-09-06T14:16:57.022409+0000 mgr.smithi052.grtqlq (mgr.14209) 276 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: cluster 2024-09-06T14:16:57.022409+0000 mgr.smithi052.grtqlq (mgr.14209) 276 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:57.520322+0000 mon.smithi052 (mon.0) 807 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:57.520322+0000 mon.smithi052 (mon.0) 807 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:57.529205+0000 mon.smithi052 (mon.0) 808 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:57.529205+0000 mon.smithi052 (mon.0) 808 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:58.136035+0000 mon.smithi052 (mon.0) 809 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:58.136035+0000 mon.smithi052 (mon.0) 809 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:58.137541+0000 mon.smithi052 (mon.0) 810 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:58.137541+0000 mon.smithi052 (mon.0) 810 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:58.147296+0000 mon.smithi052 (mon.0) 811 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:58.147296+0000 mon.smithi052 (mon.0) 811 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:16:58.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:58.153916+0000 mon.smithi052 (mon.0) 812 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:16:58.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:16:58 smithi052 bash[19834]: audit 2024-09-06T14:16:58.153916+0000 mon.smithi052 (mon.0) 812 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:17:00.361 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:17:00.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:00 smithi148 bash[25697]: cluster 2024-09-06T14:16:59.022995+0000 mgr.smithi052.grtqlq (mgr.14209) 277 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:00.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:00 smithi148 bash[25697]: cluster 2024-09-06T14:16:59.022995+0000 mgr.smithi052.grtqlq (mgr.14209) 277 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:00.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:00 smithi052 bash[19834]: cluster 2024-09-06T14:16:59.022995+0000 mgr.smithi052.grtqlq (mgr.14209) 277 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:00.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:00 smithi052 bash[19834]: cluster 2024-09-06T14:16:59.022995+0000 mgr.smithi052.grtqlq (mgr.14209) 277 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:02.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:02 smithi148 bash[25697]: cluster 2024-09-06T14:17:01.023674+0000 mgr.smithi052.grtqlq (mgr.14209) 278 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:02.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:02 smithi148 bash[25697]: cluster 2024-09-06T14:17:01.023674+0000 mgr.smithi052.grtqlq (mgr.14209) 278 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:02.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:02 smithi052 bash[19834]: cluster 2024-09-06T14:17:01.023674+0000 mgr.smithi052.grtqlq (mgr.14209) 278 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:02.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:02 smithi052 bash[19834]: cluster 2024-09-06T14:17:01.023674+0000 mgr.smithi052.grtqlq (mgr.14209) 278 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:04.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:04 smithi148 bash[25697]: cluster 2024-09-06T14:17:03.024437+0000 mgr.smithi052.grtqlq (mgr.14209) 279 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:04.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:04 smithi148 bash[25697]: cluster 2024-09-06T14:17:03.024437+0000 mgr.smithi052.grtqlq (mgr.14209) 279 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:04.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:04 smithi052 bash[19834]: cluster 2024-09-06T14:17:03.024437+0000 mgr.smithi052.grtqlq (mgr.14209) 279 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:04.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:04 smithi052 bash[19834]: cluster 2024-09-06T14:17:03.024437+0000 mgr.smithi052.grtqlq (mgr.14209) 279 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:05.184 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:17:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:06 smithi148 bash[25697]: cluster 2024-09-06T14:17:05.025127+0000 mgr.smithi052.grtqlq (mgr.14209) 280 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:06 smithi148 bash[25697]: cluster 2024-09-06T14:17:05.025127+0000 mgr.smithi052.grtqlq (mgr.14209) 280 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:06.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:06 smithi052 bash[19834]: cluster 2024-09-06T14:17:05.025127+0000 mgr.smithi052.grtqlq (mgr.14209) 280 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:06.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:06 smithi052 bash[19834]: cluster 2024-09-06T14:17:05.025127+0000 mgr.smithi052.grtqlq (mgr.14209) 280 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:06.814 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:17:06.814 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:17:07.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:07 smithi148 bash[25697]: audit 2024-09-06T14:17:06.821293+0000 mon.smithi052 (mon.0) 813 : audit [DBG] from='client.? 172.21.15.52:0/3682275219' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:07.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:07 smithi148 bash[25697]: audit 2024-09-06T14:17:06.821293+0000 mon.smithi052 (mon.0) 813 : audit [DBG] from='client.? 172.21.15.52:0/3682275219' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:07.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:07 smithi148 bash[25697]: audit 2024-09-06T14:17:07.089314+0000 mon.smithi052 (mon.0) 814 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:07.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:07 smithi148 bash[25697]: audit 2024-09-06T14:17:07.089314+0000 mon.smithi052 (mon.0) 814 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:07.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:07 smithi052 bash[19834]: audit 2024-09-06T14:17:06.821293+0000 mon.smithi052 (mon.0) 813 : audit [DBG] from='client.? 172.21.15.52:0/3682275219' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:07.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:07 smithi052 bash[19834]: audit 2024-09-06T14:17:06.821293+0000 mon.smithi052 (mon.0) 813 : audit [DBG] from='client.? 172.21.15.52:0/3682275219' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:07.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:07 smithi052 bash[19834]: audit 2024-09-06T14:17:07.089314+0000 mon.smithi052 (mon.0) 814 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:07.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:07 smithi052 bash[19834]: audit 2024-09-06T14:17:07.089314+0000 mon.smithi052 (mon.0) 814 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:08.627 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:08 smithi148 bash[25697]: cluster 2024-09-06T14:17:07.025728+0000 mgr.smithi052.grtqlq (mgr.14209) 281 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:08.627 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:08 smithi148 bash[25697]: cluster 2024-09-06T14:17:07.025728+0000 mgr.smithi052.grtqlq (mgr.14209) 281 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:08.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:08 smithi052 bash[19834]: cluster 2024-09-06T14:17:07.025728+0000 mgr.smithi052.grtqlq (mgr.14209) 281 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:08.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:08 smithi052 bash[19834]: cluster 2024-09-06T14:17:07.025728+0000 mgr.smithi052.grtqlq (mgr.14209) 281 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:10.480 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:17:10.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:10 smithi148 bash[25697]: cluster 2024-09-06T14:17:09.026417+0000 mgr.smithi052.grtqlq (mgr.14209) 282 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:10.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:10 smithi148 bash[25697]: cluster 2024-09-06T14:17:09.026417+0000 mgr.smithi052.grtqlq (mgr.14209) 282 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:10.685 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:10 smithi052 bash[19834]: cluster 2024-09-06T14:17:09.026417+0000 mgr.smithi052.grtqlq (mgr.14209) 282 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:10.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:10 smithi052 bash[19834]: cluster 2024-09-06T14:17:09.026417+0000 mgr.smithi052.grtqlq (mgr.14209) 282 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:12 smithi052 bash[19834]: cluster 2024-09-06T14:17:11.027300+0000 mgr.smithi052.grtqlq (mgr.14209) 283 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:12 smithi052 bash[19834]: cluster 2024-09-06T14:17:11.027300+0000 mgr.smithi052.grtqlq (mgr.14209) 283 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:12.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:12 smithi148 bash[25697]: cluster 2024-09-06T14:17:11.027300+0000 mgr.smithi052.grtqlq (mgr.14209) 283 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:12.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:12 smithi148 bash[25697]: cluster 2024-09-06T14:17:11.027300+0000 mgr.smithi052.grtqlq (mgr.14209) 283 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:14.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:14 smithi148 bash[25697]: cluster 2024-09-06T14:17:13.028002+0000 mgr.smithi052.grtqlq (mgr.14209) 284 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:14.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:14 smithi148 bash[25697]: cluster 2024-09-06T14:17:13.028002+0000 mgr.smithi052.grtqlq (mgr.14209) 284 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:14.689 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:14 smithi052 bash[19834]: cluster 2024-09-06T14:17:13.028002+0000 mgr.smithi052.grtqlq (mgr.14209) 284 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:14.690 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:14 smithi052 bash[19834]: cluster 2024-09-06T14:17:13.028002+0000 mgr.smithi052.grtqlq (mgr.14209) 284 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:15.309 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:17:16.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:16 smithi148 bash[25697]: cluster 2024-09-06T14:17:15.028793+0000 mgr.smithi052.grtqlq (mgr.14209) 285 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:16.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:16 smithi148 bash[25697]: cluster 2024-09-06T14:17:15.028793+0000 mgr.smithi052.grtqlq (mgr.14209) 285 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:16.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:16 smithi052 bash[19834]: cluster 2024-09-06T14:17:15.028793+0000 mgr.smithi052.grtqlq (mgr.14209) 285 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:16.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:16 smithi052 bash[19834]: cluster 2024-09-06T14:17:15.028793+0000 mgr.smithi052.grtqlq (mgr.14209) 285 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:16.754 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:17:16.754 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:17:17.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:17 smithi148 bash[25697]: audit 2024-09-06T14:17:16.761473+0000 mon.smithi052 (mon.0) 815 : audit [DBG] from='client.? 172.21.15.52:0/3104946452' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:17.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:17 smithi148 bash[25697]: audit 2024-09-06T14:17:16.761473+0000 mon.smithi052 (mon.0) 815 : audit [DBG] from='client.? 172.21.15.52:0/3104946452' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:17.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:17 smithi052 bash[19834]: audit 2024-09-06T14:17:16.761473+0000 mon.smithi052 (mon.0) 815 : audit [DBG] from='client.? 172.21.15.52:0/3104946452' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:17.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:17 smithi052 bash[19834]: audit 2024-09-06T14:17:16.761473+0000 mon.smithi052 (mon.0) 815 : audit [DBG] from='client.? 172.21.15.52:0/3104946452' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:18.627 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:18 smithi148 bash[25697]: cluster 2024-09-06T14:17:17.029625+0000 mgr.smithi052.grtqlq (mgr.14209) 286 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:18.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:18 smithi148 bash[25697]: cluster 2024-09-06T14:17:17.029625+0000 mgr.smithi052.grtqlq (mgr.14209) 286 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:18.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:18 smithi052 bash[19834]: cluster 2024-09-06T14:17:17.029625+0000 mgr.smithi052.grtqlq (mgr.14209) 286 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:18.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:18 smithi052 bash[19834]: cluster 2024-09-06T14:17:17.029625+0000 mgr.smithi052.grtqlq (mgr.14209) 286 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:20.422 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:17:20.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:20 smithi148 bash[25697]: cluster 2024-09-06T14:17:19.030482+0000 mgr.smithi052.grtqlq (mgr.14209) 287 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:20.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:20 smithi148 bash[25697]: cluster 2024-09-06T14:17:19.030482+0000 mgr.smithi052.grtqlq (mgr.14209) 287 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:20.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:20 smithi052 bash[19834]: cluster 2024-09-06T14:17:19.030482+0000 mgr.smithi052.grtqlq (mgr.14209) 287 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:20.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:20 smithi052 bash[19834]: cluster 2024-09-06T14:17:19.030482+0000 mgr.smithi052.grtqlq (mgr.14209) 287 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:22.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:22 smithi148 bash[25697]: cluster 2024-09-06T14:17:21.031333+0000 mgr.smithi052.grtqlq (mgr.14209) 288 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:22.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:22 smithi148 bash[25697]: cluster 2024-09-06T14:17:21.031333+0000 mgr.smithi052.grtqlq (mgr.14209) 288 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:22.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:22 smithi148 bash[25697]: audit 2024-09-06T14:17:22.089854+0000 mon.smithi052 (mon.0) 816 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:22.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:22 smithi148 bash[25697]: audit 2024-09-06T14:17:22.089854+0000 mon.smithi052 (mon.0) 816 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:22.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:22 smithi052 bash[19834]: cluster 2024-09-06T14:17:21.031333+0000 mgr.smithi052.grtqlq (mgr.14209) 288 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:22.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:22 smithi052 bash[19834]: cluster 2024-09-06T14:17:21.031333+0000 mgr.smithi052.grtqlq (mgr.14209) 288 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:22.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:22 smithi052 bash[19834]: audit 2024-09-06T14:17:22.089854+0000 mon.smithi052 (mon.0) 816 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:22.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:22 smithi052 bash[19834]: audit 2024-09-06T14:17:22.089854+0000 mon.smithi052 (mon.0) 816 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:24.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:24 smithi148 bash[25697]: cluster 2024-09-06T14:17:23.032154+0000 mgr.smithi052.grtqlq (mgr.14209) 289 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:24.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:24 smithi148 bash[25697]: cluster 2024-09-06T14:17:23.032154+0000 mgr.smithi052.grtqlq (mgr.14209) 289 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:24.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:24 smithi052 bash[19834]: cluster 2024-09-06T14:17:23.032154+0000 mgr.smithi052.grtqlq (mgr.14209) 289 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:24.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:24 smithi052 bash[19834]: cluster 2024-09-06T14:17:23.032154+0000 mgr.smithi052.grtqlq (mgr.14209) 289 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:25.255 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:17:26.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:26 smithi148 bash[25697]: cluster 2024-09-06T14:17:25.032967+0000 mgr.smithi052.grtqlq (mgr.14209) 290 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:26.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:26 smithi148 bash[25697]: cluster 2024-09-06T14:17:25.032967+0000 mgr.smithi052.grtqlq (mgr.14209) 290 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:26.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:26 smithi052 bash[19834]: cluster 2024-09-06T14:17:25.032967+0000 mgr.smithi052.grtqlq (mgr.14209) 290 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:26.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:26 smithi052 bash[19834]: cluster 2024-09-06T14:17:25.032967+0000 mgr.smithi052.grtqlq (mgr.14209) 290 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:26.730 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:17:26.730 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:17:27.632 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:27 smithi052 bash[19834]: audit 2024-09-06T14:17:26.736928+0000 mon.smithi052 (mon.0) 817 : audit [DBG] from='client.? 172.21.15.52:0/1622813357' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:27.632 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:27 smithi052 bash[19834]: audit 2024-09-06T14:17:26.736928+0000 mon.smithi052 (mon.0) 817 : audit [DBG] from='client.? 172.21.15.52:0/1622813357' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:27.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:27 smithi148 bash[25697]: audit 2024-09-06T14:17:26.736928+0000 mon.smithi052 (mon.0) 817 : audit [DBG] from='client.? 172.21.15.52:0/1622813357' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:27.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:27 smithi148 bash[25697]: audit 2024-09-06T14:17:26.736928+0000 mon.smithi052 (mon.0) 817 : audit [DBG] from='client.? 172.21.15.52:0/1622813357' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:28.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:28 smithi148 bash[25697]: cluster 2024-09-06T14:17:27.033793+0000 mgr.smithi052.grtqlq (mgr.14209) 291 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:28.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:28 smithi148 bash[25697]: cluster 2024-09-06T14:17:27.033793+0000 mgr.smithi052.grtqlq (mgr.14209) 291 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:28.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:28 smithi052 bash[19834]: cluster 2024-09-06T14:17:27.033793+0000 mgr.smithi052.grtqlq (mgr.14209) 291 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:28.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:28 smithi052 bash[19834]: cluster 2024-09-06T14:17:27.033793+0000 mgr.smithi052.grtqlq (mgr.14209) 291 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:30.395 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:17:30.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:30 smithi148 bash[25697]: cluster 2024-09-06T14:17:29.034615+0000 mgr.smithi052.grtqlq (mgr.14209) 292 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:30.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:30 smithi148 bash[25697]: cluster 2024-09-06T14:17:29.034615+0000 mgr.smithi052.grtqlq (mgr.14209) 292 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:30.685 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:30 smithi052 bash[19834]: cluster 2024-09-06T14:17:29.034615+0000 mgr.smithi052.grtqlq (mgr.14209) 292 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:30.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:30 smithi052 bash[19834]: cluster 2024-09-06T14:17:29.034615+0000 mgr.smithi052.grtqlq (mgr.14209) 292 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:32.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:32 smithi148 bash[25697]: cluster 2024-09-06T14:17:31.035444+0000 mgr.smithi052.grtqlq (mgr.14209) 293 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:32.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:32 smithi148 bash[25697]: cluster 2024-09-06T14:17:31.035444+0000 mgr.smithi052.grtqlq (mgr.14209) 293 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:32.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:32 smithi052 bash[19834]: cluster 2024-09-06T14:17:31.035444+0000 mgr.smithi052.grtqlq (mgr.14209) 293 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:32.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:32 smithi052 bash[19834]: cluster 2024-09-06T14:17:31.035444+0000 mgr.smithi052.grtqlq (mgr.14209) 293 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:34.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:34 smithi148 bash[25697]: cluster 2024-09-06T14:17:33.036117+0000 mgr.smithi052.grtqlq (mgr.14209) 294 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:34.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:34 smithi148 bash[25697]: cluster 2024-09-06T14:17:33.036117+0000 mgr.smithi052.grtqlq (mgr.14209) 294 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:34.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:34 smithi052 bash[19834]: cluster 2024-09-06T14:17:33.036117+0000 mgr.smithi052.grtqlq (mgr.14209) 294 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:34.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:34 smithi052 bash[19834]: cluster 2024-09-06T14:17:33.036117+0000 mgr.smithi052.grtqlq (mgr.14209) 294 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:35.224 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:17:36.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:36 smithi148 bash[25697]: cluster 2024-09-06T14:17:35.036763+0000 mgr.smithi052.grtqlq (mgr.14209) 295 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:36.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:36 smithi148 bash[25697]: cluster 2024-09-06T14:17:35.036763+0000 mgr.smithi052.grtqlq (mgr.14209) 295 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:36.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:36 smithi052 bash[19834]: cluster 2024-09-06T14:17:35.036763+0000 mgr.smithi052.grtqlq (mgr.14209) 295 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:36.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:36 smithi052 bash[19834]: cluster 2024-09-06T14:17:35.036763+0000 mgr.smithi052.grtqlq (mgr.14209) 295 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:36.721 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:17:36.721 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:17:37.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:37 smithi148 bash[25697]: audit 2024-09-06T14:17:36.727931+0000 mon.smithi052 (mon.0) 818 : audit [DBG] from='client.? 172.21.15.52:0/1215235583' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:37.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:37 smithi148 bash[25697]: audit 2024-09-06T14:17:36.727931+0000 mon.smithi052 (mon.0) 818 : audit [DBG] from='client.? 172.21.15.52:0/1215235583' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:37.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:37 smithi148 bash[25697]: audit 2024-09-06T14:17:37.090292+0000 mon.smithi052 (mon.0) 819 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:37.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:37 smithi148 bash[25697]: audit 2024-09-06T14:17:37.090292+0000 mon.smithi052 (mon.0) 819 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:37.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:37 smithi052 bash[19834]: audit 2024-09-06T14:17:36.727931+0000 mon.smithi052 (mon.0) 818 : audit [DBG] from='client.? 172.21.15.52:0/1215235583' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:37.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:37 smithi052 bash[19834]: audit 2024-09-06T14:17:36.727931+0000 mon.smithi052 (mon.0) 818 : audit [DBG] from='client.? 172.21.15.52:0/1215235583' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:37.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:37 smithi052 bash[19834]: audit 2024-09-06T14:17:37.090292+0000 mon.smithi052 (mon.0) 819 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:37.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:37 smithi052 bash[19834]: audit 2024-09-06T14:17:37.090292+0000 mon.smithi052 (mon.0) 819 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:38.628 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:38 smithi148 bash[25697]: cluster 2024-09-06T14:17:37.037552+0000 mgr.smithi052.grtqlq (mgr.14209) 296 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:38.629 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:38 smithi148 bash[25697]: cluster 2024-09-06T14:17:37.037552+0000 mgr.smithi052.grtqlq (mgr.14209) 296 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:38.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:38 smithi052 bash[19834]: cluster 2024-09-06T14:17:37.037552+0000 mgr.smithi052.grtqlq (mgr.14209) 296 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:38.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:38 smithi052 bash[19834]: cluster 2024-09-06T14:17:37.037552+0000 mgr.smithi052.grtqlq (mgr.14209) 296 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:40.376 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:17:40.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:40 smithi148 bash[25697]: cluster 2024-09-06T14:17:39.038246+0000 mgr.smithi052.grtqlq (mgr.14209) 297 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:40.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:40 smithi148 bash[25697]: cluster 2024-09-06T14:17:39.038246+0000 mgr.smithi052.grtqlq (mgr.14209) 297 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:40.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:40 smithi052 bash[19834]: cluster 2024-09-06T14:17:39.038246+0000 mgr.smithi052.grtqlq (mgr.14209) 297 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:40.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:40 smithi052 bash[19834]: cluster 2024-09-06T14:17:39.038246+0000 mgr.smithi052.grtqlq (mgr.14209) 297 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:42.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:42 smithi148 bash[25697]: cluster 2024-09-06T14:17:41.039054+0000 mgr.smithi052.grtqlq (mgr.14209) 298 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:42.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:42 smithi148 bash[25697]: cluster 2024-09-06T14:17:41.039054+0000 mgr.smithi052.grtqlq (mgr.14209) 298 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:42.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:42 smithi052 bash[19834]: cluster 2024-09-06T14:17:41.039054+0000 mgr.smithi052.grtqlq (mgr.14209) 298 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:42.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:42 smithi052 bash[19834]: cluster 2024-09-06T14:17:41.039054+0000 mgr.smithi052.grtqlq (mgr.14209) 298 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:44.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:44 smithi148 bash[25697]: cluster 2024-09-06T14:17:43.039860+0000 mgr.smithi052.grtqlq (mgr.14209) 299 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:44.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:44 smithi148 bash[25697]: cluster 2024-09-06T14:17:43.039860+0000 mgr.smithi052.grtqlq (mgr.14209) 299 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:44.685 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:44 smithi052 bash[19834]: cluster 2024-09-06T14:17:43.039860+0000 mgr.smithi052.grtqlq (mgr.14209) 299 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:44.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:44 smithi052 bash[19834]: cluster 2024-09-06T14:17:43.039860+0000 mgr.smithi052.grtqlq (mgr.14209) 299 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:45.192 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:17:46.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:46 smithi148 bash[25697]: cluster 2024-09-06T14:17:45.040570+0000 mgr.smithi052.grtqlq (mgr.14209) 300 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:46.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:46 smithi148 bash[25697]: cluster 2024-09-06T14:17:45.040570+0000 mgr.smithi052.grtqlq (mgr.14209) 300 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:46.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:46 smithi052 bash[19834]: cluster 2024-09-06T14:17:45.040570+0000 mgr.smithi052.grtqlq (mgr.14209) 300 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:46.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:46 smithi052 bash[19834]: cluster 2024-09-06T14:17:45.040570+0000 mgr.smithi052.grtqlq (mgr.14209) 300 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:46.709 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:17:46.709 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:17:47.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:47 smithi148 bash[25697]: audit 2024-09-06T14:17:46.715688+0000 mon.smithi052 (mon.0) 820 : audit [DBG] from='client.? 172.21.15.52:0/1730774706' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:47.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:47 smithi148 bash[25697]: audit 2024-09-06T14:17:46.715688+0000 mon.smithi052 (mon.0) 820 : audit [DBG] from='client.? 172.21.15.52:0/1730774706' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:47.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:47 smithi052 bash[19834]: audit 2024-09-06T14:17:46.715688+0000 mon.smithi052 (mon.0) 820 : audit [DBG] from='client.? 172.21.15.52:0/1730774706' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:47.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:47 smithi052 bash[19834]: audit 2024-09-06T14:17:46.715688+0000 mon.smithi052 (mon.0) 820 : audit [DBG] from='client.? 172.21.15.52:0/1730774706' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:48.629 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:48 smithi148 bash[25697]: cluster 2024-09-06T14:17:47.041216+0000 mgr.smithi052.grtqlq (mgr.14209) 301 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:48.629 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:48 smithi148 bash[25697]: cluster 2024-09-06T14:17:47.041216+0000 mgr.smithi052.grtqlq (mgr.14209) 301 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:48.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:48 smithi052 bash[19834]: cluster 2024-09-06T14:17:47.041216+0000 mgr.smithi052.grtqlq (mgr.14209) 301 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:48.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:48 smithi052 bash[19834]: cluster 2024-09-06T14:17:47.041216+0000 mgr.smithi052.grtqlq (mgr.14209) 301 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:50.380 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:17:50.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:50 smithi148 bash[25697]: cluster 2024-09-06T14:17:49.041986+0000 mgr.smithi052.grtqlq (mgr.14209) 302 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:50.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:50 smithi148 bash[25697]: cluster 2024-09-06T14:17:49.041986+0000 mgr.smithi052.grtqlq (mgr.14209) 302 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:50.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:50 smithi052 bash[19834]: cluster 2024-09-06T14:17:49.041986+0000 mgr.smithi052.grtqlq (mgr.14209) 302 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:50.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:50 smithi052 bash[19834]: cluster 2024-09-06T14:17:49.041986+0000 mgr.smithi052.grtqlq (mgr.14209) 302 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:52.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:52 smithi148 bash[25697]: cluster 2024-09-06T14:17:51.042843+0000 mgr.smithi052.grtqlq (mgr.14209) 303 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:52.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:52 smithi148 bash[25697]: cluster 2024-09-06T14:17:51.042843+0000 mgr.smithi052.grtqlq (mgr.14209) 303 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:52.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:52 smithi148 bash[25697]: audit 2024-09-06T14:17:52.090728+0000 mon.smithi052 (mon.0) 821 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:52.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:52 smithi148 bash[25697]: audit 2024-09-06T14:17:52.090728+0000 mon.smithi052 (mon.0) 821 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:52.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:52 smithi052 bash[19834]: cluster 2024-09-06T14:17:51.042843+0000 mgr.smithi052.grtqlq (mgr.14209) 303 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:52.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:52 smithi052 bash[19834]: cluster 2024-09-06T14:17:51.042843+0000 mgr.smithi052.grtqlq (mgr.14209) 303 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:52.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:52 smithi052 bash[19834]: audit 2024-09-06T14:17:52.090728+0000 mon.smithi052 (mon.0) 821 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:52.687 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:52 smithi052 bash[19834]: audit 2024-09-06T14:17:52.090728+0000 mon.smithi052 (mon.0) 821 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:17:54.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:54 smithi148 bash[25697]: cluster 2024-09-06T14:17:53.043638+0000 mgr.smithi052.grtqlq (mgr.14209) 304 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:54.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:54 smithi148 bash[25697]: cluster 2024-09-06T14:17:53.043638+0000 mgr.smithi052.grtqlq (mgr.14209) 304 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:54.685 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:54 smithi052 bash[19834]: cluster 2024-09-06T14:17:53.043638+0000 mgr.smithi052.grtqlq (mgr.14209) 304 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:54.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:54 smithi052 bash[19834]: cluster 2024-09-06T14:17:53.043638+0000 mgr.smithi052.grtqlq (mgr.14209) 304 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:55.207 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:17:56.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:56 smithi148 bash[25697]: cluster 2024-09-06T14:17:55.044463+0000 mgr.smithi052.grtqlq (mgr.14209) 305 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:56.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:56 smithi148 bash[25697]: cluster 2024-09-06T14:17:55.044463+0000 mgr.smithi052.grtqlq (mgr.14209) 305 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:56.685 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:56 smithi052 bash[19834]: cluster 2024-09-06T14:17:55.044463+0000 mgr.smithi052.grtqlq (mgr.14209) 305 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:56.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:56 smithi052 bash[19834]: cluster 2024-09-06T14:17:55.044463+0000 mgr.smithi052.grtqlq (mgr.14209) 305 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:56.696 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:17:56.696 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:17:57.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:57 smithi148 bash[25697]: audit 2024-09-06T14:17:56.703071+0000 mon.smithi052 (mon.0) 822 : audit [DBG] from='client.? 172.21.15.52:0/90839273' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:57.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:57 smithi148 bash[25697]: audit 2024-09-06T14:17:56.703071+0000 mon.smithi052 (mon.0) 822 : audit [DBG] from='client.? 172.21.15.52:0/90839273' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:57.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:57 smithi052 bash[19834]: audit 2024-09-06T14:17:56.703071+0000 mon.smithi052 (mon.0) 822 : audit [DBG] from='client.? 172.21.15.52:0/90839273' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:57.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:57 smithi052 bash[19834]: audit 2024-09-06T14:17:56.703071+0000 mon.smithi052 (mon.0) 822 : audit [DBG] from='client.? 172.21.15.52:0/90839273' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:17:58.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:58 smithi148 bash[25697]: cluster 2024-09-06T14:17:57.045195+0000 mgr.smithi052.grtqlq (mgr.14209) 306 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:58.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:58 smithi148 bash[25697]: cluster 2024-09-06T14:17:57.045195+0000 mgr.smithi052.grtqlq (mgr.14209) 306 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:58.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:58 smithi052 bash[19834]: cluster 2024-09-06T14:17:57.045195+0000 mgr.smithi052.grtqlq (mgr.14209) 306 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:58.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:58 smithi052 bash[19834]: cluster 2024-09-06T14:17:57.045195+0000 mgr.smithi052.grtqlq (mgr.14209) 306 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:59.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:59 smithi148 bash[25697]: audit 2024-09-06T14:17:58.680219+0000 mon.smithi052 (mon.0) 823 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:17:59.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:59 smithi148 bash[25697]: audit 2024-09-06T14:17:58.680219+0000 mon.smithi052 (mon.0) 823 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:17:59.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:59 smithi148 bash[25697]: cluster 2024-09-06T14:17:59.045844+0000 mgr.smithi052.grtqlq (mgr.14209) 307 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:59.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:59 smithi148 bash[25697]: cluster 2024-09-06T14:17:59.045844+0000 mgr.smithi052.grtqlq (mgr.14209) 307 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:59.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:59 smithi148 bash[25697]: audit 2024-09-06T14:17:59.297732+0000 mon.smithi052 (mon.0) 824 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:17:59.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:59 smithi148 bash[25697]: audit 2024-09-06T14:17:59.297732+0000 mon.smithi052 (mon.0) 824 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:17:59.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:59 smithi148 bash[25697]: audit 2024-09-06T14:17:59.303186+0000 mon.smithi052 (mon.0) 825 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:17:59.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:17:59 smithi148 bash[25697]: audit 2024-09-06T14:17:59.303186+0000 mon.smithi052 (mon.0) 825 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:17:59.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:59 smithi052 bash[19834]: audit 2024-09-06T14:17:58.680219+0000 mon.smithi052 (mon.0) 823 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:17:59.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:59 smithi052 bash[19834]: audit 2024-09-06T14:17:58.680219+0000 mon.smithi052 (mon.0) 823 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:17:59.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:59 smithi052 bash[19834]: cluster 2024-09-06T14:17:59.045844+0000 mgr.smithi052.grtqlq (mgr.14209) 307 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:59.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:59 smithi052 bash[19834]: cluster 2024-09-06T14:17:59.045844+0000 mgr.smithi052.grtqlq (mgr.14209) 307 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:17:59.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:59 smithi052 bash[19834]: audit 2024-09-06T14:17:59.297732+0000 mon.smithi052 (mon.0) 824 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:17:59.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:59 smithi052 bash[19834]: audit 2024-09-06T14:17:59.297732+0000 mon.smithi052 (mon.0) 824 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:17:59.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:59 smithi052 bash[19834]: audit 2024-09-06T14:17:59.303186+0000 mon.smithi052 (mon.0) 825 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:17:59.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:17:59 smithi052 bash[19834]: audit 2024-09-06T14:17:59.303186+0000 mon.smithi052 (mon.0) 825 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:00.298 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:18:02.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:02 smithi148 bash[25697]: cluster 2024-09-06T14:18:01.046540+0000 mgr.smithi052.grtqlq (mgr.14209) 308 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:02.430 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:02 smithi148 bash[25697]: cluster 2024-09-06T14:18:01.046540+0000 mgr.smithi052.grtqlq (mgr.14209) 308 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:02.435 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:02 smithi052 bash[19834]: cluster 2024-09-06T14:18:01.046540+0000 mgr.smithi052.grtqlq (mgr.14209) 308 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:02.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:02 smithi052 bash[19834]: cluster 2024-09-06T14:18:01.046540+0000 mgr.smithi052.grtqlq (mgr.14209) 308 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:04.411 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:18:04.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:04 smithi148 bash[25697]: cluster 2024-09-06T14:18:03.047208+0000 mgr.smithi052.grtqlq (mgr.14209) 309 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:04.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:04 smithi148 bash[25697]: cluster 2024-09-06T14:18:03.047208+0000 mgr.smithi052.grtqlq (mgr.14209) 309 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:04.435 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:04 smithi052 bash[19834]: cluster 2024-09-06T14:18:03.047208+0000 mgr.smithi052.grtqlq (mgr.14209) 309 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:04.435 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:04 smithi052 bash[19834]: cluster 2024-09-06T14:18:03.047208+0000 mgr.smithi052.grtqlq (mgr.14209) 309 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:05.570 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:05 smithi052 bash[19834]: audit 2024-09-06T14:18:04.256737+0000 mon.smithi052 (mon.0) 826 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:05.570 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:05 smithi052 bash[19834]: audit 2024-09-06T14:18:04.256737+0000 mon.smithi052 (mon.0) 826 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:05.570 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:05 smithi052 bash[19834]: audit 2024-09-06T14:18:04.266694+0000 mon.smithi052 (mon.0) 827 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:05.570 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:05 smithi052 bash[19834]: audit 2024-09-06T14:18:04.266694+0000 mon.smithi052 (mon.0) 827 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:05.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:05 smithi148 bash[25697]: audit 2024-09-06T14:18:04.256737+0000 mon.smithi052 (mon.0) 826 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:05.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:05 smithi148 bash[25697]: audit 2024-09-06T14:18:04.256737+0000 mon.smithi052 (mon.0) 826 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:05.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:05 smithi148 bash[25697]: audit 2024-09-06T14:18:04.266694+0000 mon.smithi052 (mon.0) 827 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:05.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:05 smithi148 bash[25697]: audit 2024-09-06T14:18:04.266694+0000 mon.smithi052 (mon.0) 827 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:05.902 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:18:05.903 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:18:06.609 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: cluster 2024-09-06T14:18:05.047635+0000 mgr.smithi052.grtqlq (mgr.14209) 310 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:06.609 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: cluster 2024-09-06T14:18:05.047635+0000 mgr.smithi052.grtqlq (mgr.14209) 310 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:06.609 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:05.314268+0000 mon.smithi052 (mon.0) 828 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.609 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:05.314268+0000 mon.smithi052 (mon.0) 828 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.609 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:05.318950+0000 mon.smithi052 (mon.0) 829 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.609 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:05.318950+0000 mon.smithi052 (mon.0) 829 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.610 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:05.910106+0000 mon.smithi052 (mon.0) 830 : audit [DBG] from='client.? 172.21.15.52:0/2647042942' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:06.610 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:05.910106+0000 mon.smithi052 (mon.0) 830 : audit [DBG] from='client.? 172.21.15.52:0/2647042942' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:06.610 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:05.995493+0000 mon.smithi052 (mon.0) 831 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:18:06.610 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:05.995493+0000 mon.smithi052 (mon.0) 831 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:18:06.610 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:05.996342+0000 mon.smithi052 (mon.0) 832 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:18:06.610 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:05.996342+0000 mon.smithi052 (mon.0) 832 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:18:06.610 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:06.001447+0000 mon.smithi052 (mon.0) 833 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.610 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:06.001447+0000 mon.smithi052 (mon.0) 833 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.610 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:06.004094+0000 mon.smithi052 (mon.0) 834 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:18:06.610 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:06 smithi052 bash[19834]: audit 2024-09-06T14:18:06.004094+0000 mon.smithi052 (mon.0) 834 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:18:06.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: cluster 2024-09-06T14:18:05.047635+0000 mgr.smithi052.grtqlq (mgr.14209) 310 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:06.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: cluster 2024-09-06T14:18:05.047635+0000 mgr.smithi052.grtqlq (mgr.14209) 310 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:06.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:05.314268+0000 mon.smithi052 (mon.0) 828 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:05.314268+0000 mon.smithi052 (mon.0) 828 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:05.318950+0000 mon.smithi052 (mon.0) 829 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:05.318950+0000 mon.smithi052 (mon.0) 829 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:05.910106+0000 mon.smithi052 (mon.0) 830 : audit [DBG] from='client.? 172.21.15.52:0/2647042942' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:05.910106+0000 mon.smithi052 (mon.0) 830 : audit [DBG] from='client.? 172.21.15.52:0/2647042942' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:05.995493+0000 mon.smithi052 (mon.0) 831 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:18:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:05.995493+0000 mon.smithi052 (mon.0) 831 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:18:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:05.996342+0000 mon.smithi052 (mon.0) 832 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:18:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:05.996342+0000 mon.smithi052 (mon.0) 832 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:18:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:06.001447+0000 mon.smithi052 (mon.0) 833 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:06.001447+0000 mon.smithi052 (mon.0) 833 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:18:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:06.004094+0000 mon.smithi052 (mon.0) 834 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:18:06.681 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:06 smithi148 bash[25697]: audit 2024-09-06T14:18:06.004094+0000 mon.smithi052 (mon.0) 834 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:18:07.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:07 smithi148 bash[25697]: audit 2024-09-06T14:18:07.091150+0000 mon.smithi052 (mon.0) 835 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:07.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:07 smithi148 bash[25697]: audit 2024-09-06T14:18:07.091150+0000 mon.smithi052 (mon.0) 835 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:07.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:07 smithi052 bash[19834]: audit 2024-09-06T14:18:07.091150+0000 mon.smithi052 (mon.0) 835 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:07.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:07 smithi052 bash[19834]: audit 2024-09-06T14:18:07.091150+0000 mon.smithi052 (mon.0) 835 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:08.630 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:08 smithi148 bash[25697]: cluster 2024-09-06T14:18:07.048376+0000 mgr.smithi052.grtqlq (mgr.14209) 311 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:08.630 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:08 smithi148 bash[25697]: cluster 2024-09-06T14:18:07.048376+0000 mgr.smithi052.grtqlq (mgr.14209) 311 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:08.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:08 smithi052 bash[19834]: cluster 2024-09-06T14:18:07.048376+0000 mgr.smithi052.grtqlq (mgr.14209) 311 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:08.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:08 smithi052 bash[19834]: cluster 2024-09-06T14:18:07.048376+0000 mgr.smithi052.grtqlq (mgr.14209) 311 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:09.612 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:18:10.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:10 smithi148 bash[25697]: cluster 2024-09-06T14:18:09.049084+0000 mgr.smithi052.grtqlq (mgr.14209) 312 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:10.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:10 smithi148 bash[25697]: cluster 2024-09-06T14:18:09.049084+0000 mgr.smithi052.grtqlq (mgr.14209) 312 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:10.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:10 smithi052 bash[19834]: cluster 2024-09-06T14:18:09.049084+0000 mgr.smithi052.grtqlq (mgr.14209) 312 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:10.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:10 smithi052 bash[19834]: cluster 2024-09-06T14:18:09.049084+0000 mgr.smithi052.grtqlq (mgr.14209) 312 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:12.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:12 smithi148 bash[25697]: cluster 2024-09-06T14:18:11.049880+0000 mgr.smithi052.grtqlq (mgr.14209) 313 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:12.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:12 smithi148 bash[25697]: cluster 2024-09-06T14:18:11.049880+0000 mgr.smithi052.grtqlq (mgr.14209) 313 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:12.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:12 smithi052 bash[19834]: cluster 2024-09-06T14:18:11.049880+0000 mgr.smithi052.grtqlq (mgr.14209) 313 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:12.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:12 smithi052 bash[19834]: cluster 2024-09-06T14:18:11.049880+0000 mgr.smithi052.grtqlq (mgr.14209) 313 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:14.440 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:18:14.589 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:14 smithi052 bash[19834]: cluster 2024-09-06T14:18:13.050744+0000 mgr.smithi052.grtqlq (mgr.14209) 314 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:14.590 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:14 smithi052 bash[19834]: cluster 2024-09-06T14:18:13.050744+0000 mgr.smithi052.grtqlq (mgr.14209) 314 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:14.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:14 smithi148 bash[25697]: cluster 2024-09-06T14:18:13.050744+0000 mgr.smithi052.grtqlq (mgr.14209) 314 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:14.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:14 smithi148 bash[25697]: cluster 2024-09-06T14:18:13.050744+0000 mgr.smithi052.grtqlq (mgr.14209) 314 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:15.893 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:18:15.893 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:18:16.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:16 smithi148 bash[25697]: cluster 2024-09-06T14:18:15.051386+0000 mgr.smithi052.grtqlq (mgr.14209) 315 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:16.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:16 smithi148 bash[25697]: cluster 2024-09-06T14:18:15.051386+0000 mgr.smithi052.grtqlq (mgr.14209) 315 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:16.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:16 smithi148 bash[25697]: audit 2024-09-06T14:18:15.900497+0000 mon.smithi052 (mon.0) 836 : audit [DBG] from='client.? 172.21.15.52:0/3921210316' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:16.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:16 smithi148 bash[25697]: audit 2024-09-06T14:18:15.900497+0000 mon.smithi052 (mon.0) 836 : audit [DBG] from='client.? 172.21.15.52:0/3921210316' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:16.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:16 smithi052 bash[19834]: cluster 2024-09-06T14:18:15.051386+0000 mgr.smithi052.grtqlq (mgr.14209) 315 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:16.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:16 smithi052 bash[19834]: cluster 2024-09-06T14:18:15.051386+0000 mgr.smithi052.grtqlq (mgr.14209) 315 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:16.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:16 smithi052 bash[19834]: audit 2024-09-06T14:18:15.900497+0000 mon.smithi052 (mon.0) 836 : audit [DBG] from='client.? 172.21.15.52:0/3921210316' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:16.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:16 smithi052 bash[19834]: audit 2024-09-06T14:18:15.900497+0000 mon.smithi052 (mon.0) 836 : audit [DBG] from='client.? 172.21.15.52:0/3921210316' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:18.630 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:18 smithi148 bash[25697]: cluster 2024-09-06T14:18:17.052097+0000 mgr.smithi052.grtqlq (mgr.14209) 316 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:18.630 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:18 smithi148 bash[25697]: cluster 2024-09-06T14:18:17.052097+0000 mgr.smithi052.grtqlq (mgr.14209) 316 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:18.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:18 smithi052 bash[19834]: cluster 2024-09-06T14:18:17.052097+0000 mgr.smithi052.grtqlq (mgr.14209) 316 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:18.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:18 smithi052 bash[19834]: cluster 2024-09-06T14:18:17.052097+0000 mgr.smithi052.grtqlq (mgr.14209) 316 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:19.507 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:18:20.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:20 smithi148 bash[25697]: cluster 2024-09-06T14:18:19.052754+0000 mgr.smithi052.grtqlq (mgr.14209) 317 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:20.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:20 smithi148 bash[25697]: cluster 2024-09-06T14:18:19.052754+0000 mgr.smithi052.grtqlq (mgr.14209) 317 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:20.685 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:20 smithi052 bash[19834]: cluster 2024-09-06T14:18:19.052754+0000 mgr.smithi052.grtqlq (mgr.14209) 317 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:20.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:20 smithi052 bash[19834]: cluster 2024-09-06T14:18:19.052754+0000 mgr.smithi052.grtqlq (mgr.14209) 317 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:22.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:22 smithi148 bash[25697]: cluster 2024-09-06T14:18:21.053429+0000 mgr.smithi052.grtqlq (mgr.14209) 318 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:22.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:22 smithi148 bash[25697]: cluster 2024-09-06T14:18:21.053429+0000 mgr.smithi052.grtqlq (mgr.14209) 318 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:22.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:22 smithi148 bash[25697]: audit 2024-09-06T14:18:22.091872+0000 mon.smithi052 (mon.0) 837 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:22.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:22 smithi148 bash[25697]: audit 2024-09-06T14:18:22.091872+0000 mon.smithi052 (mon.0) 837 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:22.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:22 smithi052 bash[19834]: cluster 2024-09-06T14:18:21.053429+0000 mgr.smithi052.grtqlq (mgr.14209) 318 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:22.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:22 smithi052 bash[19834]: cluster 2024-09-06T14:18:21.053429+0000 mgr.smithi052.grtqlq (mgr.14209) 318 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:22.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:22 smithi052 bash[19834]: audit 2024-09-06T14:18:22.091872+0000 mon.smithi052 (mon.0) 837 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:22.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:22 smithi052 bash[19834]: audit 2024-09-06T14:18:22.091872+0000 mon.smithi052 (mon.0) 837 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:24.330 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:18:24.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:24 smithi148 bash[25697]: cluster 2024-09-06T14:18:23.054125+0000 mgr.smithi052.grtqlq (mgr.14209) 319 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:24.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:24 smithi148 bash[25697]: cluster 2024-09-06T14:18:23.054125+0000 mgr.smithi052.grtqlq (mgr.14209) 319 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:24.685 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:24 smithi052 bash[19834]: cluster 2024-09-06T14:18:23.054125+0000 mgr.smithi052.grtqlq (mgr.14209) 319 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:24.685 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:24 smithi052 bash[19834]: cluster 2024-09-06T14:18:23.054125+0000 mgr.smithi052.grtqlq (mgr.14209) 319 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:25.871 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:18:25.872 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:18:26.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:26 smithi148 bash[25697]: cluster 2024-09-06T14:18:25.054818+0000 mgr.smithi052.grtqlq (mgr.14209) 320 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:26.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:26 smithi148 bash[25697]: cluster 2024-09-06T14:18:25.054818+0000 mgr.smithi052.grtqlq (mgr.14209) 320 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:26.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:26 smithi148 bash[25697]: audit 2024-09-06T14:18:25.878734+0000 mon.smithi052 (mon.0) 838 : audit [DBG] from='client.? 172.21.15.52:0/584090185' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:26.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:26 smithi148 bash[25697]: audit 2024-09-06T14:18:25.878734+0000 mon.smithi052 (mon.0) 838 : audit [DBG] from='client.? 172.21.15.52:0/584090185' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:26.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:26 smithi052 bash[19834]: cluster 2024-09-06T14:18:25.054818+0000 mgr.smithi052.grtqlq (mgr.14209) 320 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:26.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:26 smithi052 bash[19834]: cluster 2024-09-06T14:18:25.054818+0000 mgr.smithi052.grtqlq (mgr.14209) 320 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:26.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:26 smithi052 bash[19834]: audit 2024-09-06T14:18:25.878734+0000 mon.smithi052 (mon.0) 838 : audit [DBG] from='client.? 172.21.15.52:0/584090185' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:26.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:26 smithi052 bash[19834]: audit 2024-09-06T14:18:25.878734+0000 mon.smithi052 (mon.0) 838 : audit [DBG] from='client.? 172.21.15.52:0/584090185' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:28.631 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:28 smithi148 bash[25697]: cluster 2024-09-06T14:18:27.055534+0000 mgr.smithi052.grtqlq (mgr.14209) 321 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:28.631 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:28 smithi148 bash[25697]: cluster 2024-09-06T14:18:27.055534+0000 mgr.smithi052.grtqlq (mgr.14209) 321 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:28.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:28 smithi052 bash[19834]: cluster 2024-09-06T14:18:27.055534+0000 mgr.smithi052.grtqlq (mgr.14209) 321 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:28.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:28 smithi052 bash[19834]: cluster 2024-09-06T14:18:27.055534+0000 mgr.smithi052.grtqlq (mgr.14209) 321 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:29.523 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:18:30.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:30 smithi148 bash[25697]: cluster 2024-09-06T14:18:29.056175+0000 mgr.smithi052.grtqlq (mgr.14209) 322 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:30.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:30 smithi148 bash[25697]: cluster 2024-09-06T14:18:29.056175+0000 mgr.smithi052.grtqlq (mgr.14209) 322 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:30.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:30 smithi052 bash[19834]: cluster 2024-09-06T14:18:29.056175+0000 mgr.smithi052.grtqlq (mgr.14209) 322 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:30.688 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:30 smithi052 bash[19834]: cluster 2024-09-06T14:18:29.056175+0000 mgr.smithi052.grtqlq (mgr.14209) 322 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:32.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:32 smithi148 bash[25697]: cluster 2024-09-06T14:18:31.056861+0000 mgr.smithi052.grtqlq (mgr.14209) 323 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:32.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:32 smithi148 bash[25697]: cluster 2024-09-06T14:18:31.056861+0000 mgr.smithi052.grtqlq (mgr.14209) 323 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:32.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:32 smithi052 bash[19834]: cluster 2024-09-06T14:18:31.056861+0000 mgr.smithi052.grtqlq (mgr.14209) 323 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:32.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:32 smithi052 bash[19834]: cluster 2024-09-06T14:18:31.056861+0000 mgr.smithi052.grtqlq (mgr.14209) 323 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:34.350 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:18:34.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:34 smithi148 bash[25697]: cluster 2024-09-06T14:18:33.057495+0000 mgr.smithi052.grtqlq (mgr.14209) 324 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:34.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:34 smithi148 bash[25697]: cluster 2024-09-06T14:18:33.057495+0000 mgr.smithi052.grtqlq (mgr.14209) 324 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:34.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:34 smithi052 bash[19834]: cluster 2024-09-06T14:18:33.057495+0000 mgr.smithi052.grtqlq (mgr.14209) 324 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:34.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:34 smithi052 bash[19834]: cluster 2024-09-06T14:18:33.057495+0000 mgr.smithi052.grtqlq (mgr.14209) 324 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:35.841 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:18:35.841 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:18:36.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:36 smithi148 bash[25697]: cluster 2024-09-06T14:18:35.058164+0000 mgr.smithi052.grtqlq (mgr.14209) 325 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:36.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:36 smithi148 bash[25697]: cluster 2024-09-06T14:18:35.058164+0000 mgr.smithi052.grtqlq (mgr.14209) 325 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:36.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:36 smithi148 bash[25697]: audit 2024-09-06T14:18:35.848198+0000 mon.smithi052 (mon.0) 839 : audit [DBG] from='client.? 172.21.15.52:0/4097977756' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:36.680 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:36 smithi148 bash[25697]: audit 2024-09-06T14:18:35.848198+0000 mon.smithi052 (mon.0) 839 : audit [DBG] from='client.? 172.21.15.52:0/4097977756' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:36.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:36 smithi052 bash[19834]: cluster 2024-09-06T14:18:35.058164+0000 mgr.smithi052.grtqlq (mgr.14209) 325 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:36.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:36 smithi052 bash[19834]: cluster 2024-09-06T14:18:35.058164+0000 mgr.smithi052.grtqlq (mgr.14209) 325 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:36.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:36 smithi052 bash[19834]: audit 2024-09-06T14:18:35.848198+0000 mon.smithi052 (mon.0) 839 : audit [DBG] from='client.? 172.21.15.52:0/4097977756' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:36.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:36 smithi052 bash[19834]: audit 2024-09-06T14:18:35.848198+0000 mon.smithi052 (mon.0) 839 : audit [DBG] from='client.? 172.21.15.52:0/4097977756' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:37.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:37 smithi148 bash[25697]: audit 2024-09-06T14:18:37.092011+0000 mon.smithi052 (mon.0) 840 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:37.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:37 smithi148 bash[25697]: audit 2024-09-06T14:18:37.092011+0000 mon.smithi052 (mon.0) 840 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:37.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:37 smithi052 bash[19834]: audit 2024-09-06T14:18:37.092011+0000 mon.smithi052 (mon.0) 840 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:37.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:37 smithi052 bash[19834]: audit 2024-09-06T14:18:37.092011+0000 mon.smithi052 (mon.0) 840 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:38.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:38 smithi148 bash[25697]: cluster 2024-09-06T14:18:37.058819+0000 mgr.smithi052.grtqlq (mgr.14209) 326 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:38.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:38 smithi148 bash[25697]: cluster 2024-09-06T14:18:37.058819+0000 mgr.smithi052.grtqlq (mgr.14209) 326 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:38.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:38 smithi052 bash[19834]: cluster 2024-09-06T14:18:37.058819+0000 mgr.smithi052.grtqlq (mgr.14209) 326 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:38.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:38 smithi052 bash[19834]: cluster 2024-09-06T14:18:37.058819+0000 mgr.smithi052.grtqlq (mgr.14209) 326 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:39.503 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:18:39.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:39 smithi148 bash[25697]: cluster 2024-09-06T14:18:39.059470+0000 mgr.smithi052.grtqlq (mgr.14209) 327 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:39.679 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:39 smithi148 bash[25697]: cluster 2024-09-06T14:18:39.059470+0000 mgr.smithi052.grtqlq (mgr.14209) 327 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:39.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:39 smithi052 bash[19834]: cluster 2024-09-06T14:18:39.059470+0000 mgr.smithi052.grtqlq (mgr.14209) 327 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:39.686 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:39 smithi052 bash[19834]: cluster 2024-09-06T14:18:39.059470+0000 mgr.smithi052.grtqlq (mgr.14209) 327 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:42.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:42 smithi148 bash[25697]: cluster 2024-09-06T14:18:41.060165+0000 mgr.smithi052.grtqlq (mgr.14209) 328 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:42.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:42 smithi148 bash[25697]: cluster 2024-09-06T14:18:41.060165+0000 mgr.smithi052.grtqlq (mgr.14209) 328 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:42.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:42 smithi052 bash[19834]: cluster 2024-09-06T14:18:41.060165+0000 mgr.smithi052.grtqlq (mgr.14209) 328 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:42.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:42 smithi052 bash[19834]: cluster 2024-09-06T14:18:41.060165+0000 mgr.smithi052.grtqlq (mgr.14209) 328 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:44.327 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:18:44.429 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:44 smithi052 bash[19834]: cluster 2024-09-06T14:18:43.060826+0000 mgr.smithi052.grtqlq (mgr.14209) 329 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:44.429 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:44 smithi052 bash[19834]: cluster 2024-09-06T14:18:43.060826+0000 mgr.smithi052.grtqlq (mgr.14209) 329 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:44.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:44 smithi148 bash[25697]: cluster 2024-09-06T14:18:43.060826+0000 mgr.smithi052.grtqlq (mgr.14209) 329 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:44.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:44 smithi148 bash[25697]: cluster 2024-09-06T14:18:43.060826+0000 mgr.smithi052.grtqlq (mgr.14209) 329 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:45.747 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:18:45.747 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:18:46.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:46 smithi148 bash[25697]: cluster 2024-09-06T14:18:45.061495+0000 mgr.smithi052.grtqlq (mgr.14209) 330 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:46.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:46 smithi148 bash[25697]: cluster 2024-09-06T14:18:45.061495+0000 mgr.smithi052.grtqlq (mgr.14209) 330 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:46.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:46 smithi148 bash[25697]: audit 2024-09-06T14:18:45.753839+0000 mon.smithi052 (mon.0) 841 : audit [DBG] from='client.? 172.21.15.52:0/1298402299' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:46.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:46 smithi148 bash[25697]: audit 2024-09-06T14:18:45.753839+0000 mon.smithi052 (mon.0) 841 : audit [DBG] from='client.? 172.21.15.52:0/1298402299' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:46.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:46 smithi052 bash[19834]: cluster 2024-09-06T14:18:45.061495+0000 mgr.smithi052.grtqlq (mgr.14209) 330 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:46.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:46 smithi052 bash[19834]: cluster 2024-09-06T14:18:45.061495+0000 mgr.smithi052.grtqlq (mgr.14209) 330 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:46.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:46 smithi052 bash[19834]: audit 2024-09-06T14:18:45.753839+0000 mon.smithi052 (mon.0) 841 : audit [DBG] from='client.? 172.21.15.52:0/1298402299' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:46.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:46 smithi052 bash[19834]: audit 2024-09-06T14:18:45.753839+0000 mon.smithi052 (mon.0) 841 : audit [DBG] from='client.? 172.21.15.52:0/1298402299' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:48.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:48 smithi148 bash[25697]: cluster 2024-09-06T14:18:47.062167+0000 mgr.smithi052.grtqlq (mgr.14209) 331 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:48.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:48 smithi148 bash[25697]: cluster 2024-09-06T14:18:47.062167+0000 mgr.smithi052.grtqlq (mgr.14209) 331 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:48.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:48 smithi052 bash[19834]: cluster 2024-09-06T14:18:47.062167+0000 mgr.smithi052.grtqlq (mgr.14209) 331 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:48.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:48 smithi052 bash[19834]: cluster 2024-09-06T14:18:47.062167+0000 mgr.smithi052.grtqlq (mgr.14209) 331 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:49.366 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:18:50.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:50 smithi148 bash[25697]: cluster 2024-09-06T14:18:49.062831+0000 mgr.smithi052.grtqlq (mgr.14209) 332 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:50.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:50 smithi148 bash[25697]: cluster 2024-09-06T14:18:49.062831+0000 mgr.smithi052.grtqlq (mgr.14209) 332 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:50.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:50 smithi052 bash[19834]: cluster 2024-09-06T14:18:49.062831+0000 mgr.smithi052.grtqlq (mgr.14209) 332 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:50.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:50 smithi052 bash[19834]: cluster 2024-09-06T14:18:49.062831+0000 mgr.smithi052.grtqlq (mgr.14209) 332 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:52.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:52 smithi148 bash[25697]: cluster 2024-09-06T14:18:51.063493+0000 mgr.smithi052.grtqlq (mgr.14209) 333 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:52.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:52 smithi148 bash[25697]: cluster 2024-09-06T14:18:51.063493+0000 mgr.smithi052.grtqlq (mgr.14209) 333 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:52.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:52 smithi148 bash[25697]: audit 2024-09-06T14:18:52.092462+0000 mon.smithi052 (mon.0) 842 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:52.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:52 smithi148 bash[25697]: audit 2024-09-06T14:18:52.092462+0000 mon.smithi052 (mon.0) 842 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:52.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:52 smithi052 bash[19834]: cluster 2024-09-06T14:18:51.063493+0000 mgr.smithi052.grtqlq (mgr.14209) 333 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:52.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:52 smithi052 bash[19834]: cluster 2024-09-06T14:18:51.063493+0000 mgr.smithi052.grtqlq (mgr.14209) 333 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:52.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:52 smithi052 bash[19834]: audit 2024-09-06T14:18:52.092462+0000 mon.smithi052 (mon.0) 842 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:52.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:52 smithi052 bash[19834]: audit 2024-09-06T14:18:52.092462+0000 mon.smithi052 (mon.0) 842 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:18:54.192 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:18:54.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:54 smithi148 bash[25697]: cluster 2024-09-06T14:18:53.064235+0000 mgr.smithi052.grtqlq (mgr.14209) 334 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:54.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:54 smithi148 bash[25697]: cluster 2024-09-06T14:18:53.064235+0000 mgr.smithi052.grtqlq (mgr.14209) 334 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:54.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:54 smithi052 bash[19834]: cluster 2024-09-06T14:18:53.064235+0000 mgr.smithi052.grtqlq (mgr.14209) 334 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:54.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:54 smithi052 bash[19834]: cluster 2024-09-06T14:18:53.064235+0000 mgr.smithi052.grtqlq (mgr.14209) 334 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:55.676 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:18:55.676 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:18:56.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:56 smithi148 bash[25697]: cluster 2024-09-06T14:18:55.064944+0000 mgr.smithi052.grtqlq (mgr.14209) 335 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:56.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:56 smithi148 bash[25697]: cluster 2024-09-06T14:18:55.064944+0000 mgr.smithi052.grtqlq (mgr.14209) 335 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:56.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:56 smithi148 bash[25697]: audit 2024-09-06T14:18:55.683024+0000 mon.smithi052 (mon.0) 843 : audit [DBG] from='client.? 172.21.15.52:0/782404456' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:56.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:56 smithi148 bash[25697]: audit 2024-09-06T14:18:55.683024+0000 mon.smithi052 (mon.0) 843 : audit [DBG] from='client.? 172.21.15.52:0/782404456' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:56.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:56 smithi052 bash[19834]: cluster 2024-09-06T14:18:55.064944+0000 mgr.smithi052.grtqlq (mgr.14209) 335 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:56.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:56 smithi052 bash[19834]: cluster 2024-09-06T14:18:55.064944+0000 mgr.smithi052.grtqlq (mgr.14209) 335 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:56.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:56 smithi052 bash[19834]: audit 2024-09-06T14:18:55.683024+0000 mon.smithi052 (mon.0) 843 : audit [DBG] from='client.? 172.21.15.52:0/782404456' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:56.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:56 smithi052 bash[19834]: audit 2024-09-06T14:18:55.683024+0000 mon.smithi052 (mon.0) 843 : audit [DBG] from='client.? 172.21.15.52:0/782404456' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:18:58.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:58 smithi148 bash[25697]: cluster 2024-09-06T14:18:57.065783+0000 mgr.smithi052.grtqlq (mgr.14209) 336 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:58.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:18:58 smithi148 bash[25697]: cluster 2024-09-06T14:18:57.065783+0000 mgr.smithi052.grtqlq (mgr.14209) 336 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:58.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:58 smithi052 bash[19834]: cluster 2024-09-06T14:18:57.065783+0000 mgr.smithi052.grtqlq (mgr.14209) 336 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:58.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:18:58 smithi052 bash[19834]: cluster 2024-09-06T14:18:57.065783+0000 mgr.smithi052.grtqlq (mgr.14209) 336 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:18:59.314 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:19:00.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:00 smithi148 bash[25697]: cluster 2024-09-06T14:18:59.066642+0000 mgr.smithi052.grtqlq (mgr.14209) 337 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:00.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:00 smithi148 bash[25697]: cluster 2024-09-06T14:18:59.066642+0000 mgr.smithi052.grtqlq (mgr.14209) 337 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:00.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:00 smithi052 bash[19834]: cluster 2024-09-06T14:18:59.066642+0000 mgr.smithi052.grtqlq (mgr.14209) 337 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:00.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:00 smithi052 bash[19834]: cluster 2024-09-06T14:18:59.066642+0000 mgr.smithi052.grtqlq (mgr.14209) 337 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:02.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:02 smithi148 bash[25697]: cluster 2024-09-06T14:19:01.067458+0000 mgr.smithi052.grtqlq (mgr.14209) 338 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:02.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:02 smithi148 bash[25697]: cluster 2024-09-06T14:19:01.067458+0000 mgr.smithi052.grtqlq (mgr.14209) 338 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:02.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:02 smithi052 bash[19834]: cluster 2024-09-06T14:19:01.067458+0000 mgr.smithi052.grtqlq (mgr.14209) 338 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:02.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:02 smithi052 bash[19834]: cluster 2024-09-06T14:19:01.067458+0000 mgr.smithi052.grtqlq (mgr.14209) 338 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:04.136 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:19:04.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:04 smithi148 bash[25697]: cluster 2024-09-06T14:19:03.068127+0000 mgr.smithi052.grtqlq (mgr.14209) 339 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:04.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:04 smithi148 bash[25697]: cluster 2024-09-06T14:19:03.068127+0000 mgr.smithi052.grtqlq (mgr.14209) 339 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:04.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:04 smithi052 bash[19834]: cluster 2024-09-06T14:19:03.068127+0000 mgr.smithi052.grtqlq (mgr.14209) 339 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:04.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:04 smithi052 bash[19834]: cluster 2024-09-06T14:19:03.068127+0000 mgr.smithi052.grtqlq (mgr.14209) 339 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:05.592 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:19:05.592 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:19:06.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:06 smithi148 bash[25697]: cluster 2024-09-06T14:19:05.068789+0000 mgr.smithi052.grtqlq (mgr.14209) 340 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:06.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:06 smithi148 bash[25697]: cluster 2024-09-06T14:19:05.068789+0000 mgr.smithi052.grtqlq (mgr.14209) 340 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:06.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:06 smithi148 bash[25697]: audit 2024-09-06T14:19:05.599227+0000 mon.smithi052 (mon.0) 844 : audit [DBG] from='client.? 172.21.15.52:0/1137905265' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:06.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:06 smithi148 bash[25697]: audit 2024-09-06T14:19:05.599227+0000 mon.smithi052 (mon.0) 844 : audit [DBG] from='client.? 172.21.15.52:0/1137905265' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:06.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:06 smithi052 bash[19834]: cluster 2024-09-06T14:19:05.068789+0000 mgr.smithi052.grtqlq (mgr.14209) 340 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:06.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:06 smithi052 bash[19834]: cluster 2024-09-06T14:19:05.068789+0000 mgr.smithi052.grtqlq (mgr.14209) 340 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:06.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:06 smithi052 bash[19834]: audit 2024-09-06T14:19:05.599227+0000 mon.smithi052 (mon.0) 844 : audit [DBG] from='client.? 172.21.15.52:0/1137905265' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:06.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:06 smithi052 bash[19834]: audit 2024-09-06T14:19:05.599227+0000 mon.smithi052 (mon.0) 844 : audit [DBG] from='client.? 172.21.15.52:0/1137905265' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:07.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:07 smithi148 bash[25697]: audit 2024-09-06T14:19:06.461552+0000 mon.smithi052 (mon.0) 845 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:19:07.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:07 smithi148 bash[25697]: audit 2024-09-06T14:19:06.461552+0000 mon.smithi052 (mon.0) 845 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:19:07.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:07 smithi148 bash[25697]: audit 2024-09-06T14:19:07.092254+0000 mon.smithi052 (mon.0) 846 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:19:07.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:07 smithi148 bash[25697]: audit 2024-09-06T14:19:07.092254+0000 mon.smithi052 (mon.0) 846 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:19:07.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:07 smithi052 bash[19834]: audit 2024-09-06T14:19:06.461552+0000 mon.smithi052 (mon.0) 845 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:19:07.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:07 smithi052 bash[19834]: audit 2024-09-06T14:19:06.461552+0000 mon.smithi052 (mon.0) 845 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:19:07.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:07 smithi052 bash[19834]: audit 2024-09-06T14:19:07.092254+0000 mon.smithi052 (mon.0) 846 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:19:07.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:07 smithi052 bash[19834]: audit 2024-09-06T14:19:07.092254+0000 mon.smithi052 (mon.0) 846 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:19:08.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:08 smithi148 bash[25697]: cluster 2024-09-06T14:19:07.069549+0000 mgr.smithi052.grtqlq (mgr.14209) 341 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:08.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:08 smithi148 bash[25697]: cluster 2024-09-06T14:19:07.069549+0000 mgr.smithi052.grtqlq (mgr.14209) 341 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:08.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:08 smithi052 bash[19834]: cluster 2024-09-06T14:19:07.069549+0000 mgr.smithi052.grtqlq (mgr.14209) 341 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:08.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:08 smithi052 bash[19834]: cluster 2024-09-06T14:19:07.069549+0000 mgr.smithi052.grtqlq (mgr.14209) 341 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:09.293 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:19:10.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:10 smithi148 bash[25697]: cluster 2024-09-06T14:19:09.070191+0000 mgr.smithi052.grtqlq (mgr.14209) 342 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:10.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:10 smithi148 bash[25697]: cluster 2024-09-06T14:19:09.070191+0000 mgr.smithi052.grtqlq (mgr.14209) 342 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:10.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:10 smithi052 bash[19834]: cluster 2024-09-06T14:19:09.070191+0000 mgr.smithi052.grtqlq (mgr.14209) 342 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:10.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:10 smithi052 bash[19834]: cluster 2024-09-06T14:19:09.070191+0000 mgr.smithi052.grtqlq (mgr.14209) 342 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:12.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:12 smithi148 bash[25697]: cluster 2024-09-06T14:19:11.070830+0000 mgr.smithi052.grtqlq (mgr.14209) 343 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:12.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:12 smithi148 bash[25697]: cluster 2024-09-06T14:19:11.070830+0000 mgr.smithi052.grtqlq (mgr.14209) 343 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:12.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:12 smithi148 bash[25697]: audit 2024-09-06T14:19:12.024059+0000 mon.smithi052 (mon.0) 847 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:12.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:12 smithi148 bash[25697]: audit 2024-09-06T14:19:12.024059+0000 mon.smithi052 (mon.0) 847 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:12.430 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:12 smithi148 bash[25697]: audit 2024-09-06T14:19:12.027846+0000 mon.smithi052 (mon.0) 848 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:12.430 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:12 smithi148 bash[25697]: audit 2024-09-06T14:19:12.027846+0000 mon.smithi052 (mon.0) 848 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:12 smithi052 bash[19834]: cluster 2024-09-06T14:19:11.070830+0000 mgr.smithi052.grtqlq (mgr.14209) 343 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:12 smithi052 bash[19834]: cluster 2024-09-06T14:19:11.070830+0000 mgr.smithi052.grtqlq (mgr.14209) 343 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:12 smithi052 bash[19834]: audit 2024-09-06T14:19:12.024059+0000 mon.smithi052 (mon.0) 847 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:12 smithi052 bash[19834]: audit 2024-09-06T14:19:12.024059+0000 mon.smithi052 (mon.0) 847 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:12 smithi052 bash[19834]: audit 2024-09-06T14:19:12.027846+0000 mon.smithi052 (mon.0) 848 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:12.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:12 smithi052 bash[19834]: audit 2024-09-06T14:19:12.027846+0000 mon.smithi052 (mon.0) 848 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.636 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:19:13.929 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:12.493559+0000 mon.smithi052 (mon.0) 849 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.930 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:12.493559+0000 mon.smithi052 (mon.0) 849 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.930 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:12.498815+0000 mon.smithi052 (mon.0) 850 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.930 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:12.498815+0000 mon.smithi052 (mon.0) 850 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.930 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: cluster 2024-09-06T14:19:13.071386+0000 mgr.smithi052.grtqlq (mgr.14209) 344 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:13.930 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: cluster 2024-09-06T14:19:13.071386+0000 mgr.smithi052.grtqlq (mgr.14209) 344 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:13.930 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:13.136705+0000 mon.smithi052 (mon.0) 851 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:19:13.930 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:13.136705+0000 mon.smithi052 (mon.0) 851 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:19:13.931 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:13.137839+0000 mon.smithi052 (mon.0) 852 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:19:13.931 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:13.137839+0000 mon.smithi052 (mon.0) 852 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:19:13.931 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:13.144147+0000 mon.smithi052 (mon.0) 853 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.931 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:13.144147+0000 mon.smithi052 (mon.0) 853 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.931 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:13.147111+0000 mon.smithi052 (mon.0) 854 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:19:13.931 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:13 smithi148 bash[25697]: audit 2024-09-06T14:19:13.147111+0000 mon.smithi052 (mon.0) 854 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:12.493559+0000 mon.smithi052 (mon.0) 849 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:12.493559+0000 mon.smithi052 (mon.0) 849 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:12.498815+0000 mon.smithi052 (mon.0) 850 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:12.498815+0000 mon.smithi052 (mon.0) 850 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: cluster 2024-09-06T14:19:13.071386+0000 mgr.smithi052.grtqlq (mgr.14209) 344 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: cluster 2024-09-06T14:19:13.071386+0000 mgr.smithi052.grtqlq (mgr.14209) 344 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:13.136705+0000 mon.smithi052 (mon.0) 851 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:13.136705+0000 mon.smithi052 (mon.0) 851 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:13.137839+0000 mon.smithi052 (mon.0) 852 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:13.137839+0000 mon.smithi052 (mon.0) 852 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:13.144147+0000 mon.smithi052 (mon.0) 853 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.937 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:13.144147+0000 mon.smithi052 (mon.0) 853 : audit [INF] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' 2024-09-06T14:19:13.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:13.147111+0000 mon.smithi052 (mon.0) 854 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:19:13.938 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:13 smithi052 bash[19834]: audit 2024-09-06T14:19:13.147111+0000 mon.smithi052 (mon.0) 854 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T14:19:15.069 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:19:15.069 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:19:15.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:15 smithi148 bash[25697]: audit 2024-09-06T14:19:15.075995+0000 mon.smithi052 (mon.0) 855 : audit [DBG] from='client.? 172.21.15.52:0/3108555043' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:15.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:15 smithi148 bash[25697]: audit 2024-09-06T14:19:15.075995+0000 mon.smithi052 (mon.0) 855 : audit [DBG] from='client.? 172.21.15.52:0/3108555043' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:15.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:15 smithi052 bash[19834]: audit 2024-09-06T14:19:15.075995+0000 mon.smithi052 (mon.0) 855 : audit [DBG] from='client.? 172.21.15.52:0/3108555043' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:15.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:15 smithi052 bash[19834]: audit 2024-09-06T14:19:15.075995+0000 mon.smithi052 (mon.0) 855 : audit [DBG] from='client.? 172.21.15.52:0/3108555043' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:16.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:16 smithi148 bash[25697]: cluster 2024-09-06T14:19:15.071982+0000 mgr.smithi052.grtqlq (mgr.14209) 345 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:16.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:16 smithi148 bash[25697]: cluster 2024-09-06T14:19:15.071982+0000 mgr.smithi052.grtqlq (mgr.14209) 345 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:16.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:16 smithi052 bash[19834]: cluster 2024-09-06T14:19:15.071982+0000 mgr.smithi052.grtqlq (mgr.14209) 345 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:16.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:16 smithi052 bash[19834]: cluster 2024-09-06T14:19:15.071982+0000 mgr.smithi052.grtqlq (mgr.14209) 345 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:18.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:18 smithi148 bash[25697]: cluster 2024-09-06T14:19:17.072728+0000 mgr.smithi052.grtqlq (mgr.14209) 346 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:18.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:18 smithi148 bash[25697]: cluster 2024-09-06T14:19:17.072728+0000 mgr.smithi052.grtqlq (mgr.14209) 346 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:18.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:18 smithi052 bash[19834]: cluster 2024-09-06T14:19:17.072728+0000 mgr.smithi052.grtqlq (mgr.14209) 346 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:18.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:18 smithi052 bash[19834]: cluster 2024-09-06T14:19:17.072728+0000 mgr.smithi052.grtqlq (mgr.14209) 346 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:18.735 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:19:20.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:20 smithi148 bash[25697]: cluster 2024-09-06T14:19:19.073426+0000 mgr.smithi052.grtqlq (mgr.14209) 347 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:20.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:20 smithi148 bash[25697]: cluster 2024-09-06T14:19:19.073426+0000 mgr.smithi052.grtqlq (mgr.14209) 347 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:20.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:20 smithi052 bash[19834]: cluster 2024-09-06T14:19:19.073426+0000 mgr.smithi052.grtqlq (mgr.14209) 347 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:20.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:20 smithi052 bash[19834]: cluster 2024-09-06T14:19:19.073426+0000 mgr.smithi052.grtqlq (mgr.14209) 347 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:22.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:22 smithi148 bash[25697]: cluster 2024-09-06T14:19:21.074218+0000 mgr.smithi052.grtqlq (mgr.14209) 348 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:22.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:22 smithi148 bash[25697]: cluster 2024-09-06T14:19:21.074218+0000 mgr.smithi052.grtqlq (mgr.14209) 348 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:22.430 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:22 smithi148 bash[25697]: audit 2024-09-06T14:19:22.093672+0000 mon.smithi052 (mon.0) 856 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:19:22.430 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:22 smithi148 bash[25697]: audit 2024-09-06T14:19:22.093672+0000 mon.smithi052 (mon.0) 856 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:19:22.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:22 smithi052 bash[19834]: cluster 2024-09-06T14:19:21.074218+0000 mgr.smithi052.grtqlq (mgr.14209) 348 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:22.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:22 smithi052 bash[19834]: cluster 2024-09-06T14:19:21.074218+0000 mgr.smithi052.grtqlq (mgr.14209) 348 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:22.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:22 smithi052 bash[19834]: audit 2024-09-06T14:19:22.093672+0000 mon.smithi052 (mon.0) 856 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:19:22.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:22 smithi052 bash[19834]: audit 2024-09-06T14:19:22.093672+0000 mon.smithi052 (mon.0) 856 : audit [DBG] from='mgr.14209 172.21.15.52:0/2081367279' entity='mgr.smithi052.grtqlq' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:19:23.562 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:19:24.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:24 smithi148 bash[25697]: cluster 2024-09-06T14:19:23.074759+0000 mgr.smithi052.grtqlq (mgr.14209) 349 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:24.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:24 smithi148 bash[25697]: cluster 2024-09-06T14:19:23.074759+0000 mgr.smithi052.grtqlq (mgr.14209) 349 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:24.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:24 smithi052 bash[19834]: cluster 2024-09-06T14:19:23.074759+0000 mgr.smithi052.grtqlq (mgr.14209) 349 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:24.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:24 smithi052 bash[19834]: cluster 2024-09-06T14:19:23.074759+0000 mgr.smithi052.grtqlq (mgr.14209) 349 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:25.005 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:19:25.006 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:19:25.300 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:25 smithi052 bash[19834]: audit 2024-09-06T14:19:25.012286+0000 mon.smithi052 (mon.0) 857 : audit [DBG] from='client.? 172.21.15.52:0/2480568205' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:25.300 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:25 smithi052 bash[19834]: audit 2024-09-06T14:19:25.012286+0000 mon.smithi052 (mon.0) 857 : audit [DBG] from='client.? 172.21.15.52:0/2480568205' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:25.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:25 smithi148 bash[25697]: audit 2024-09-06T14:19:25.012286+0000 mon.smithi052 (mon.0) 857 : audit [DBG] from='client.? 172.21.15.52:0/2480568205' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:25.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:25 smithi148 bash[25697]: audit 2024-09-06T14:19:25.012286+0000 mon.smithi052 (mon.0) 857 : audit [DBG] from='client.? 172.21.15.52:0/2480568205' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:26.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:26 smithi148 bash[25697]: cluster 2024-09-06T14:19:25.075266+0000 mgr.smithi052.grtqlq (mgr.14209) 350 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:26.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:26 smithi148 bash[25697]: cluster 2024-09-06T14:19:25.075266+0000 mgr.smithi052.grtqlq (mgr.14209) 350 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:26.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:26 smithi052 bash[19834]: cluster 2024-09-06T14:19:25.075266+0000 mgr.smithi052.grtqlq (mgr.14209) 350 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:26.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:26 smithi052 bash[19834]: cluster 2024-09-06T14:19:25.075266+0000 mgr.smithi052.grtqlq (mgr.14209) 350 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:28.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:28 smithi148 bash[25697]: cluster 2024-09-06T14:19:27.075849+0000 mgr.smithi052.grtqlq (mgr.14209) 351 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:28.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:28 smithi148 bash[25697]: cluster 2024-09-06T14:19:27.075849+0000 mgr.smithi052.grtqlq (mgr.14209) 351 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:28.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:28 smithi052 bash[19834]: cluster 2024-09-06T14:19:27.075849+0000 mgr.smithi052.grtqlq (mgr.14209) 351 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:28.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:28 smithi052 bash[19834]: cluster 2024-09-06T14:19:27.075849+0000 mgr.smithi052.grtqlq (mgr.14209) 351 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:28.658 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T14:19:30.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:30 smithi148 bash[25697]: cluster 2024-09-06T14:19:29.076493+0000 mgr.smithi052.grtqlq (mgr.14209) 352 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:30.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:30 smithi148 bash[25697]: cluster 2024-09-06T14:19:29.076493+0000 mgr.smithi052.grtqlq (mgr.14209) 352 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:30.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:30 smithi052 bash[19834]: cluster 2024-09-06T14:19:29.076493+0000 mgr.smithi052.grtqlq (mgr.14209) 352 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:30.437 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:30 smithi052 bash[19834]: cluster 2024-09-06T14:19:29.076493+0000 mgr.smithi052.grtqlq (mgr.14209) 352 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:32.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:32 smithi148 bash[25697]: cluster 2024-09-06T14:19:31.077153+0000 mgr.smithi052.grtqlq (mgr.14209) 353 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:32.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:32 smithi148 bash[25697]: cluster 2024-09-06T14:19:31.077153+0000 mgr.smithi052.grtqlq (mgr.14209) 353 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:32.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:32 smithi052 bash[19834]: cluster 2024-09-06T14:19:31.077153+0000 mgr.smithi052.grtqlq (mgr.14209) 353 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:32.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:32 smithi052 bash[19834]: cluster 2024-09-06T14:19:31.077153+0000 mgr.smithi052.grtqlq (mgr.14209) 353 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:33.487 INFO:teuthology.orchestra.run.smithi052.stderr:Inferring config /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/mon.smithi052/config 2024-09-06T14:19:34.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:34 smithi148 bash[25697]: cluster 2024-09-06T14:19:33.077776+0000 mgr.smithi052.grtqlq (mgr.14209) 354 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:34.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:34 smithi148 bash[25697]: cluster 2024-09-06T14:19:33.077776+0000 mgr.smithi052.grtqlq (mgr.14209) 354 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:34.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:34 smithi052 bash[19834]: cluster 2024-09-06T14:19:33.077776+0000 mgr.smithi052.grtqlq (mgr.14209) 354 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:34.436 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:34 smithi052 bash[19834]: cluster 2024-09-06T14:19:33.077776+0000 mgr.smithi052.grtqlq (mgr.14209) 354 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-06T14:19:34.947 INFO:teuthology.orchestra.run.smithi052.stdout: 2024-09-06T14:19:34.947 INFO:teuthology.orchestra.run.smithi052.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T14:19:35.299 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:35 smithi052 bash[19834]: audit 2024-09-06T14:19:34.953944+0000 mon.smithi052 (mon.0) 858 : audit [DBG] from='client.? 172.21.15.52:0/4169525939' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:35.299 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:35 smithi052 bash[19834]: audit 2024-09-06T14:19:34.953944+0000 mon.smithi052 (mon.0) 858 : audit [DBG] from='client.? 172.21.15.52:0/4169525939' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:35.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:35 smithi148 bash[25697]: audit 2024-09-06T14:19:34.953944+0000 mon.smithi052 (mon.0) 858 : audit [DBG] from='client.? 172.21.15.52:0/4169525939' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:35.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:35 smithi148 bash[25697]: audit 2024-09-06T14:19:34.953944+0000 mon.smithi052 (mon.0) 858 : audit [DBG] from='client.? 172.21.15.52:0/4169525939' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T14:19:35.612 INFO:tasks.cephadm:Teardown begin 2024-09-06T14:19:35.612 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 32, in nested yield vars File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/cephadm.py", line 2371, in task healthy(ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph.py", line 1537, in healthy manager.wait_until_healthy(timeout=300) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph_manager.py", line 3299, in wait_until_healthy assert time.time() - start < timeout, \ AssertionError: timeout expired in wait_until_healthy 2024-09-06T14:19:35.616 DEBUG:teuthology.orchestra.run.smithi052:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-06T14:19:35.630 DEBUG:teuthology.orchestra.run.smithi148:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-06T14:19:35.644 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-06T14:19:35.645 DEBUG:teuthology.orchestra.run.smithi052:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-06T14:19:35.677 DEBUG:teuthology.orchestra.run.smithi148:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-06T14:19:35.697 INFO:tasks.cephadm:Stopping all daemons... 2024-09-06T14:19:35.697 INFO:tasks.cephadm.mon.smithi052:Stopping mon.smithi052... 2024-09-06T14:19:35.697 DEBUG:teuthology.orchestra.run.smithi052:> sudo systemctl stop ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi052 2024-09-06T14:19:35.886 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:35 smithi052 systemd[1]: Stopping Ceph mon.smithi052 for 11d261e0-6c59-11ef-bce4-c7b262605968... 2024-09-06T14:19:36.110 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:35 smithi052 bash[19834]: debug 2024-09-06T14:19:35.889+0000 7f7faeb47640 -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-09-06T14:19:36.110 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:35 smithi052 bash[19834]: debug 2024-09-06T14:19:35.889+0000 7f7faeb47640 -1 mon.smithi052@0(leader) e2 *** Got Signal Terminated *** 2024-09-06T14:19:36.670 INFO:journalctl@ceph.mon.smithi052.smithi052.stdout:Sep 06 14:19:36 smithi052 bash[63344]: ceph-11d261e0-6c59-11ef-bce4-c7b262605968-mon-smithi052 2024-09-06T14:19:36.687 DEBUG:teuthology.orchestra.run.smithi052:> sudo pkill -f 'journalctl -f -n 0 -u ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi052.service' 2024-09-06T14:19:36.732 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-06T14:19:36.733 INFO:tasks.cephadm.mon.smithi052:Stopped mon.smithi052 2024-09-06T14:19:36.733 INFO:tasks.cephadm.mon.smithi148:Stopping mon.smithi148... 2024-09-06T14:19:36.733 DEBUG:teuthology.orchestra.run.smithi148:> sudo systemctl stop ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi148 2024-09-06T14:19:37.079 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:36 smithi148 systemd[1]: Stopping Ceph mon.smithi148 for 11d261e0-6c59-11ef-bce4-c7b262605968... 2024-09-06T14:19:37.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:37 smithi148 bash[25697]: debug 2024-09-06T14:19:37.087+0000 7fc5610bd640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi148 -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-09-06T14:19:37.429 INFO:journalctl@ceph.mon.smithi148.smithi148.stdout:Sep 06 14:19:37 smithi148 bash[25697]: debug 2024-09-06T14:19:37.087+0000 7fc5610bd640 -1 mon.smithi148@1(peon) e2 *** Got Signal Terminated *** 2024-09-06T14:19:37.767 DEBUG:teuthology.orchestra.run.smithi148:> sudo pkill -f 'journalctl -f -n 0 -u ceph-11d261e0-6c59-11ef-bce4-c7b262605968@mon.smithi148.service' 2024-09-06T14:19:37.805 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-06T14:19:37.806 INFO:tasks.cephadm.mon.smithi148:Stopped mon.smithi148 2024-09-06T14:19:37.806 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 --force --keep-logs 2024-09-06T14:19:37.992 INFO:teuthology.orchestra.run.smithi052.stdout:Deleting cluster with fsid: 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:20:25.055 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 --force --keep-logs 2024-09-06T14:20:25.239 INFO:teuthology.orchestra.run.smithi148.stdout:Deleting cluster with fsid: 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:21:08.878 DEBUG:teuthology.orchestra.run.smithi052:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-06T14:21:08.893 DEBUG:teuthology.orchestra.run.smithi148:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-06T14:21:08.906 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-06T14:21:08.908 DEBUG:teuthology.misc:Transferring archived files from smithi052:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/crash to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892289/remote/smithi052/crash 2024-09-06T14:21:08.909 DEBUG:teuthology.orchestra.run.smithi052:> sudo tar c -f - -C /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/crash -- . 2024-09-06T14:21:08.947 INFO:teuthology.orchestra.run.smithi052.stderr:tar: /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/crash: Cannot open: No such file or directory 2024-09-06T14:21:08.947 INFO:teuthology.orchestra.run.smithi052.stderr:tar: Error is not recoverable: exiting now 2024-09-06T14:21:08.949 DEBUG:teuthology.misc:Transferring archived files from smithi148:/var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/crash to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892289/remote/smithi148/crash 2024-09-06T14:21:08.950 DEBUG:teuthology.orchestra.run.smithi148:> sudo tar c -f - -C /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/crash -- . 2024-09-06T14:21:08.960 INFO:teuthology.orchestra.run.smithi148.stderr:tar: /var/lib/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/crash: Cannot open: No such file or directory 2024-09-06T14:21:08.961 INFO:teuthology.orchestra.run.smithi148.stderr:tar: Error is not recoverable: exiting now 2024-09-06T14:21:08.962 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-06T14:21:08.962 DEBUG:teuthology.orchestra.run.smithi052:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v CEPHADM_DAEMON_PLACE_FAIL | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-06T14:21:09.006 INFO:tasks.cephadm:Compressing logs... 2024-09-06T14:21:09.007 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-09-06T14:21:09.049 DEBUG:teuthology.orchestra.run.smithi148:> 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-09-06T14:21:09.058 INFO:teuthology.orchestra.run.smithi052.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-06T14:21:09.062 INFO:teuthology.orchestra.run.smithi148.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-06T14:21:09.066 INFO:teuthology.orchestra.run.smithi148.stderr:gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.2.log 2024-09-06T14:21:09.067 INFO:teuthology.orchestra.run.smithi148.stderr:gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.6.log 2024-09-06T14:21:09.067 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi148.log 2024-09-06T14:21:09.068 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.0.log 2024-09-06T14:21:09.069 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.cephadm.log 2024-09-06T14:21:09.069 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi148.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.1.log 2024-09-06T14:21:09.069 INFO:teuthology.orchestra.run.smithi148.stderr: 30.5% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi148.log.gz 2024-09-06T14:21:09.069 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mgr.smithi148.bctpwo.log 2024-09-06T14:21:09.069 INFO:teuthology.orchestra.run.smithi148.stderr: 82.4% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.cephadm.log.gz 2024-09-06T14:21:09.069 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mon.smithi148.log 2024-09-06T14:21:09.075 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mgr.smithi148.bctpwo.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.log 2024-09-06T14:21:09.075 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mon.smithi148.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-volume.log 2024-09-06T14:21:09.075 INFO:teuthology.orchestra.run.smithi148.stderr:gzip/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.log: -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.audit.log 2024-09-06T14:21:09.075 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.4.log 2024-09-06T14:21:09.075 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.audit.log: 88.7% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.log.gz 2024-09-06T14:21:09.075 INFO:teuthology.orchestra.run.smithi148.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-06T14:21:09.075 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.4.log: 91.3% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.audit.log.gz 2024-09-06T14:21:09.077 INFO:teuthology.orchestra.run.smithi148.stderr:/var/log/ceph/cephadm.log: 91.8% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mgr.smithi148.bctpwo.log.gz 2024-09-06T14:21:09.077 INFO:teuthology.orchestra.run.smithi148.stderr: 90.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-06T14:21:09.078 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.7.log 2024-09-06T14:21:09.078 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.cephadm.log 2024-09-06T14:21:09.078 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.3.log 2024-09-06T14:21:09.078 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.5.log 2024-09-06T14:21:09.078 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.3.log: 84.6% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.cephadm.log.gz 2024-09-06T14:21:09.078 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mon.smithi052.log 2024-09-06T14:21:09.078 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mgr.smithi052.grtqlq.log 2024-09-06T14:21:09.078 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mon.smithi052.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.log 2024-09-06T14:21:09.078 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mgr.smithi052.grtqlq.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-volume.log 2024-09-06T14:21:09.079 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.audit.log 2024-09-06T14:21:09.079 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-volume.log: 88.8% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.log.gz 2024-09-06T14:21:09.079 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi052.log 2024-09-06T14:21:09.079 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.audit.log: 91.1% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph.audit.log.gz 2024-09-06T14:21:09.079 INFO:teuthology.orchestra.run.smithi052.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-06T14:21:09.079 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi052.log: 94.1% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi052.log.gz 2024-09-06T14:21:09.081 INFO:teuthology.orchestra.run.smithi148.stderr: 91.6% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-volume.log.gz 2024-09-06T14:21:09.086 INFO:teuthology.orchestra.run.smithi052.stderr:/var/log/ceph/cephadm.log: 91.5% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-volume.log.gz 2024-09-06T14:21:09.111 INFO:teuthology.orchestra.run.smithi052.stderr: 91.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-06T14:21:09.140 INFO:teuthology.orchestra.run.smithi148.stderr: 92.7% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.6.log.gz 2024-09-06T14:21:09.162 INFO:teuthology.orchestra.run.smithi052.stderr: 92.4% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.7.log.gz 2024-09-06T14:21:09.174 INFO:teuthology.orchestra.run.smithi052.stderr: 92.6% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.0.log.gz 2024-09-06T14:21:09.176 INFO:teuthology.orchestra.run.smithi052.stderr: 92.7% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.5.log.gz 2024-09-06T14:21:09.181 INFO:teuthology.orchestra.run.smithi148.stderr: 92.6% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.4.log.gz 2024-09-06T14:21:09.182 INFO:teuthology.orchestra.run.smithi148.stderr: 93.0% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.1.log.gz 2024-09-06T14:21:09.185 INFO:teuthology.orchestra.run.smithi148.stderr: 93.0% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mon.smithi148.log.gz 2024-09-06T14:21:09.186 INFO:teuthology.orchestra.run.smithi148.stderr: 92.8% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.2.log.gz 2024-09-06T14:21:09.187 INFO:teuthology.orchestra.run.smithi148.stderr: 2024-09-06T14:21:09.188 INFO:teuthology.orchestra.run.smithi148.stderr:real 0m0.134s 2024-09-06T14:21:09.188 INFO:teuthology.orchestra.run.smithi148.stderr:user 0m0.568s 2024-09-06T14:21:09.188 INFO:teuthology.orchestra.run.smithi148.stderr:sys 0m0.013s 2024-09-06T14:21:09.196 INFO:teuthology.orchestra.run.smithi052.stderr: 93.3% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-osd.3.log.gz 2024-09-06T14:21:09.253 INFO:teuthology.orchestra.run.smithi052.stderr: 90.0% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mgr.smithi052.grtqlq.log.gz 2024-09-06T14:21:09.434 INFO:teuthology.orchestra.run.smithi052.stderr: 90.7% -- replaced with /var/log/ceph/11d261e0-6c59-11ef-bce4-c7b262605968/ceph-mon.smithi052.log.gz 2024-09-06T14:21:09.435 INFO:teuthology.orchestra.run.smithi052.stderr: 2024-09-06T14:21:09.435 INFO:teuthology.orchestra.run.smithi052.stderr:real 0m0.384s 2024-09-06T14:21:09.435 INFO:teuthology.orchestra.run.smithi052.stderr:user 0m1.007s 2024-09-06T14:21:09.436 INFO:teuthology.orchestra.run.smithi052.stderr:sys 0m0.046s 2024-09-06T14:21:09.436 INFO:tasks.cephadm:Archiving logs... 2024-09-06T14:21:09.437 DEBUG:teuthology.misc:Transferring archived files from smithi052:/var/log/ceph to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892289/remote/smithi052/log 2024-09-06T14:21:09.438 DEBUG:teuthology.orchestra.run.smithi052:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-06T14:21:09.609 DEBUG:teuthology.misc:Transferring archived files from smithi148:/var/log/ceph to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892289/remote/smithi148/log 2024-09-06T14:21:09.609 DEBUG:teuthology.orchestra.run.smithi148:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-06T14:21:09.682 INFO:tasks.cephadm:Removing cluster... 2024-09-06T14:21:09.683 DEBUG:teuthology.orchestra.run.smithi052:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 --force 2024-09-06T14:21:09.873 INFO:teuthology.orchestra.run.smithi052.stdout:Deleting cluster with fsid: 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:21:11.004 DEBUG:teuthology.orchestra.run.smithi148:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 11d261e0-6c59-11ef-bce4-c7b262605968 --force 2024-09-06T14:21:11.192 INFO:teuthology.orchestra.run.smithi148.stdout:Deleting cluster with fsid: 11d261e0-6c59-11ef-bce4-c7b262605968 2024-09-06T14:21:12.316 INFO:tasks.cephadm:Removing cephadm ... 2024-09-06T14:21:12.317 DEBUG:teuthology.orchestra.run.smithi052:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-06T14:21:12.323 DEBUG:teuthology.orchestra.run.smithi148:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-06T14:21:12.328 INFO:tasks.cephadm:Teardown complete 2024-09-06T14:21:12.328 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/cephadm.py", line 2371, in task healthy(ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph.py", line 1537, in healthy manager.wait_until_healthy(timeout=300) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph_manager.py", line 3299, in wait_until_healthy assert time.time() - start < timeout, \ AssertionError: timeout expired in wait_until_healthy 2024-09-06T14:21:12.575 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=4848300f292148f1ae9feae10744c3da Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/cephadm.py", line 2371, in task healthy(ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph.py", line 1537, in healthy manager.wait_until_healthy(timeout=300) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph_manager.py", line 3299, in wait_until_healthy assert time.time() - start < timeout, \ AssertionError: timeout expired in wait_until_healthy 2024-09-06T14:21:12.577 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-06T14:21:12.591 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-06T14:21:12.679 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi052:/dev/vg_nvme/lv_1... 2024-09-06T14:21:12.679 DEBUG:teuthology.orchestra.run.smithi052:> sudo nvme disconnect -n lv_1 2024-09-06T14:21:12.948 INFO:teuthology.orchestra.run.smithi052.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-06T14:21:12.949 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:21:12.950 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi052:/dev/vg_nvme/lv_2... 2024-09-06T14:21:12.950 DEBUG:teuthology.orchestra.run.smithi052:> sudo nvme disconnect -n lv_2 2024-09-06T14:21:13.216 INFO:teuthology.orchestra.run.smithi052.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-06T14:21:13.217 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:21:13.218 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi052:/dev/vg_nvme/lv_3... 2024-09-06T14:21:13.218 DEBUG:teuthology.orchestra.run.smithi052:> sudo nvme disconnect -n lv_3 2024-09-06T14:21:13.540 INFO:teuthology.orchestra.run.smithi052.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-06T14:21:13.545 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:21:13.546 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi052:/dev/vg_nvme/lv_4... 2024-09-06T14:21:13.546 DEBUG:teuthology.orchestra.run.smithi052:> sudo nvme disconnect -n lv_4 2024-09-06T14:21:13.812 INFO:teuthology.orchestra.run.smithi052.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-06T14:21:13.813 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:21:13.814 DEBUG:teuthology.orchestra.run.smithi052:> set -ex 2024-09-06T14:21:13.814 DEBUG:teuthology.orchestra.run.smithi052:> sudo dd of=/scratch_devs 2024-09-06T14:21:13.828 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi148:/dev/vg_nvme/lv_1... 2024-09-06T14:21:13.829 DEBUG:teuthology.orchestra.run.smithi148:> sudo nvme disconnect -n lv_1 2024-09-06T14:21:14.100 INFO:teuthology.orchestra.run.smithi148.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-06T14:21:14.101 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:21:14.102 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi148:/dev/vg_nvme/lv_2... 2024-09-06T14:21:14.102 DEBUG:teuthology.orchestra.run.smithi148:> sudo nvme disconnect -n lv_2 2024-09-06T14:21:14.376 INFO:teuthology.orchestra.run.smithi148.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-06T14:21:14.377 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:21:14.378 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi148:/dev/vg_nvme/lv_3... 2024-09-06T14:21:14.378 DEBUG:teuthology.orchestra.run.smithi148:> sudo nvme disconnect -n lv_3 2024-09-06T14:21:14.652 INFO:teuthology.orchestra.run.smithi148.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-06T14:21:14.654 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:21:14.654 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi148:/dev/vg_nvme/lv_4... 2024-09-06T14:21:14.654 DEBUG:teuthology.orchestra.run.smithi148:> sudo nvme disconnect -n lv_4 2024-09-06T14:21:14.928 INFO:teuthology.orchestra.run.smithi148.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-06T14:21:14.929 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:21:14.930 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2024-09-06T14:21:14.930 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd of=/scratch_devs 2024-09-06T14:21:14.944 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-06T14:21:14.953 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-06T14:21:14.954 DEBUG:teuthology.orchestra.run.smithi052:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-06T14:21:14.956 DEBUG:teuthology.orchestra.run.smithi148:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-06T14:21:14.968 INFO:teuthology.orchestra.run.smithi052.stdout: remote refid st t when poll reach delay offset jitter 2024-09-06T14:21:14.968 INFO:teuthology.orchestra.run.smithi052.stdout:============================================================================== 2024-09-06T14:21:14.968 INFO:teuthology.orchestra.run.smithi052.stdout:+hv01.front.sepi 67.205.162.81 3 u 34 64 377 0.105 -1.106 0.397 2024-09-06T14:21:14.968 INFO:teuthology.orchestra.run.smithi052.stdout:+hv02.front.sepi 63.231.80.2 3 u 18 64 377 0.092 +1.327 0.633 2024-09-06T14:21:14.969 INFO:teuthology.orchestra.run.smithi052.stdout:*hv03.front.sepi 74.6.168.72 3 u 30 64 377 0.085 -1.140 0.410 2024-09-06T14:21:14.969 INFO:teuthology.orchestra.run.smithi052.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-06T14:21:14.999 INFO:teuthology.orchestra.run.smithi148.stdout: remote refid st t when poll reach delay offset jitter 2024-09-06T14:21:14.999 INFO:teuthology.orchestra.run.smithi148.stdout:============================================================================== 2024-09-06T14:21:14.999 INFO:teuthology.orchestra.run.smithi148.stdout:*hv01.front.sepi 67.205.162.81 3 u 38 64 377 0.077 -2.911 2.804 2024-09-06T14:21:14.999 INFO:teuthology.orchestra.run.smithi148.stdout:+hv02.front.sepi 63.231.80.2 3 u 35 64 377 0.083 +0.104 3.461 2024-09-06T14:21:14.999 INFO:teuthology.orchestra.run.smithi148.stdout:+hv03.front.sepi 74.6.168.72 3 u 24 64 377 0.080 -5.533 2.720 2024-09-06T14:21:14.999 INFO:teuthology.orchestra.run.smithi148.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-06T14:21:15.000 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-06T14:21:15.030 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-06T14:21:15.030 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-06T14:21:15.096 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-06T14:21:15.171 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-06T14:21:15.246 INFO:teuthology.task.internal:Duration was 1409.352931 seconds 2024-09-06T14:21:15.247 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-06T14:21:15.338 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-06T14:21:15.338 DEBUG:teuthology.orchestra.run.smithi052:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-06T14:21:15.341 DEBUG:teuthology.orchestra.run.smithi148:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-06T14:21:15.380 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-06T14:21:15.381 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi052.front.sepia.ceph.com 2024-09-06T14:21:15.381 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-09-06T14:21:15.429 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi148.front.sepia.ceph.com 2024-09-06T14:21:15.430 DEBUG:teuthology.orchestra.run.smithi148:> 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-09-06T14:21:15.440 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-06T14:21:15.440 DEBUG:teuthology.orchestra.run.smithi052:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-06T14:21:15.473 DEBUG:teuthology.orchestra.run.smithi148:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-06T14:21:15.521 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-06T14:21:15.521 DEBUG:teuthology.orchestra.run.smithi052:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-06T14:21:15.523 DEBUG:teuthology.orchestra.run.smithi148:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-06T14:21:15.665 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-06T14:21:15.675 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-06T14:21:15.676 DEBUG:teuthology.orchestra.run.smithi052:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-06T14:21:15.689 DEBUG:teuthology.orchestra.run.smithi148:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-06T14:21:15.701 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-06T14:21:15.739 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-09-06T14:21:15.741 DEBUG:teuthology.orchestra.run.smithi148:> 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-09-06T14:21:15.748 INFO:teuthology.orchestra.run.smithi052.stdout:kernel.core_pattern = core 2024-09-06T14:21:15.754 INFO:teuthology.orchestra.run.smithi148.stdout:kernel.core_pattern = core 2024-09-06T14:21:15.781 DEBUG:teuthology.orchestra.run.smithi052:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-06T14:21:15.819 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:21:15.819 DEBUG:teuthology.orchestra.run.smithi148:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-06T14:21:15.827 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:21:15.828 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-06T14:21:15.838 INFO:teuthology.task.internal:Transferring archived files... 2024-09-06T14:21:15.839 DEBUG:teuthology.misc:Transferring archived files from smithi052:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892289/remote/smithi052 2024-09-06T14:21:15.839 DEBUG:teuthology.orchestra.run.smithi052:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-06T14:21:15.891 DEBUG:teuthology.misc:Transferring archived files from smithi148:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892289/remote/smithi148 2024-09-06T14:21:15.891 DEBUG:teuthology.orchestra.run.smithi148:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-06T14:21:15.915 INFO:teuthology.task.internal:Removing archive directory... 2024-09-06T14:21:15.916 DEBUG:teuthology.orchestra.run.smithi052:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-06T14:21:15.929 DEBUG:teuthology.orchestra.run.smithi148:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-06T14:21:15.957 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-06T14:21:15.966 INFO:teuthology.task.internal:Not uploading archives. 2024-09-06T14:21:15.966 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-06T14:21:16.031 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-06T14:21:16.031 DEBUG:teuthology.orchestra.run.smithi052:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-06T14:21:16.034 DEBUG:teuthology.orchestra.run.smithi148:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-06T14:21:16.037 INFO:teuthology.orchestra.run.smithi052.stdout: 658623 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 6 14:21 /home/ubuntu/cephtest 2024-09-06T14:21:16.040 INFO:teuthology.orchestra.run.smithi148.stdout: 658615 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 6 14:21 /home/ubuntu/cephtest 2024-09-06T14:21:16.042 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-06T14:21:16.114 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-06T14:21:16.275 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 1409.3529307842255 failure_reason: timeout expired in wait_until_healthy owner: scheduled_adking@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=4848300f292148f1ae9feae10744c3da status: fail success: false 2024-09-06T14:21:16.275 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-06T14:21:16.385 INFO:teuthology.run:FAIL