2024-02-19T20:36:18.840 INFO:root:teuthology version: 0.0.1.dev260+gb1dac55 2024-02-19T20:36:18.840 DEBUG:teuthology.run:Teuthology command: teuthology --verbose --name yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi --owner scheduled_yuriw@teuthology --archive /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724 --description rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} -- /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724/orig.config.yaml 2024-02-19T20:36:18.875 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-19T20:36:18.957 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724 branch: pacific-release description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: null first_in_suite: false job_id: '7566724' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '20.04' overrides: admin_socket: branch: pacific-release ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 kernel: hwe: true workunit: branch: pacific-release sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 owner: scheduled_yuriw@teuthology priority: 71 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 264 sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: pacific-release suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_81bd20d634209c7cb82c18be12b4b5a05643ebf1/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 targets: smithi155.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= smithi160.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= 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: b1dac5519c57c269ea98a22fb7729016a1d0e4d2 timestamp: 2024-02-19_19:25:49 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-02-19T20:36:18.957 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_81bd20d634209c7cb82c18be12b4b5a05643ebf1/qa; will attempt to use it 2024-02-19T20:36:18.958 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_81bd20d634209c7cb82c18be12b4b5a05643ebf1/qa/tasks 2024-02-19T20:36:18.958 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-02-19T20:36:18.960 INFO:teuthology.task.internal:Checking packages... 2024-02-19T20:36:18.983 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '81bd20d634209c7cb82c18be12b4b5a05643ebf1' 2024-02-19T20:36:18.983 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-02-19T20:36:18.984 INFO:teuthology.packaging:ref: None 2024-02-19T20:36:18.984 INFO:teuthology.packaging:tag: None 2024-02-19T20:36:18.984 INFO:teuthology.packaging:branch: pacific-release 2024-02-19T20:36:18.984 INFO:teuthology.packaging:sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 2024-02-19T20:36:18.984 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&ref=pacific-release 2024-02-19T20:36:19.122 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-548-g81bd20d6-1focal 2024-02-19T20:36:19.124 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-02-19T20:36:19.130 INFO:teuthology.task.internal:no buildpackages task found 2024-02-19T20:36:19.130 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-02-19T20:36:19.158 INFO:teuthology.task.internal:Saving configuration 2024-02-19T20:36:19.175 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-02-19T20:36:19.183 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-19T20:36:19.209 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi155.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-19 20:29:10.281690', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-02-19T20:36:19.231 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi160.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-19 20:29:10.282967', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-02-19T20:36:19.231 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-02-19T20:36:19.237 INFO:teuthology.task.internal:roles: ubuntu@smithi155.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-02-19T20:36:19.237 INFO:teuthology.task.internal:roles: ubuntu@smithi160.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-02-19T20:36:19.238 INFO:teuthology.run_tasks:Running task console_log... 2024-02-19T20:36:19.312 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f62e55610d0>, signals=[15]) 2024-02-19T20:36:19.312 INFO:teuthology.run_tasks:Running task internal.connect... 2024-02-19T20:36:19.318 INFO:teuthology.task.internal:Opening connections... 2024-02-19T20:36:19.318 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi155.front.sepia.ceph.com 2024-02-19T20:36:19.320 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi155.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:36:19.410 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi160.front.sepia.ceph.com 2024-02-19T20:36:19.411 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:36:19.500 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-02-19T20:36:19.506 DEBUG:teuthology.orchestra.run.smithi155:> uname -m 2024-02-19T20:36:19.513 INFO:teuthology.orchestra.run.smithi155.stdout:x86_64 2024-02-19T20:36:19.513 DEBUG:teuthology.orchestra.run.smithi155:> cat /etc/os-release 2024-02-19T20:36:19.560 INFO:teuthology.orchestra.run.smithi155.stdout:NAME="Ubuntu" 2024-02-19T20:36:19.560 INFO:teuthology.orchestra.run.smithi155.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-02-19T20:36:19.560 INFO:teuthology.orchestra.run.smithi155.stdout:ID=ubuntu 2024-02-19T20:36:19.560 INFO:teuthology.orchestra.run.smithi155.stdout:ID_LIKE=debian 2024-02-19T20:36:19.561 INFO:teuthology.orchestra.run.smithi155.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-02-19T20:36:19.561 INFO:teuthology.orchestra.run.smithi155.stdout:VERSION_ID="20.04" 2024-02-19T20:36:19.561 INFO:teuthology.orchestra.run.smithi155.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-19T20:36:19.561 INFO:teuthology.orchestra.run.smithi155.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-19T20:36:19.561 INFO:teuthology.orchestra.run.smithi155.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-19T20:36:19.561 INFO:teuthology.orchestra.run.smithi155.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-19T20:36:19.561 INFO:teuthology.orchestra.run.smithi155.stdout:VERSION_CODENAME=focal 2024-02-19T20:36:19.561 INFO:teuthology.orchestra.run.smithi155.stdout:UBUNTU_CODENAME=focal 2024-02-19T20:36:19.562 INFO:teuthology.lock.ops:Updating smithi155.front.sepia.ceph.com on lock server 2024-02-19T20:36:19.575 DEBUG:teuthology.orchestra.run.smithi160:> uname -m 2024-02-19T20:36:19.583 INFO:teuthology.orchestra.run.smithi160.stdout:x86_64 2024-02-19T20:36:19.583 DEBUG:teuthology.orchestra.run.smithi160:> cat /etc/os-release 2024-02-19T20:36:19.632 INFO:teuthology.orchestra.run.smithi160.stdout:NAME="Ubuntu" 2024-02-19T20:36:19.632 INFO:teuthology.orchestra.run.smithi160.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-02-19T20:36:19.632 INFO:teuthology.orchestra.run.smithi160.stdout:ID=ubuntu 2024-02-19T20:36:19.632 INFO:teuthology.orchestra.run.smithi160.stdout:ID_LIKE=debian 2024-02-19T20:36:19.633 INFO:teuthology.orchestra.run.smithi160.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-02-19T20:36:19.633 INFO:teuthology.orchestra.run.smithi160.stdout:VERSION_ID="20.04" 2024-02-19T20:36:19.633 INFO:teuthology.orchestra.run.smithi160.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-19T20:36:19.633 INFO:teuthology.orchestra.run.smithi160.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-19T20:36:19.633 INFO:teuthology.orchestra.run.smithi160.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-19T20:36:19.633 INFO:teuthology.orchestra.run.smithi160.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-19T20:36:19.633 INFO:teuthology.orchestra.run.smithi160.stdout:VERSION_CODENAME=focal 2024-02-19T20:36:19.633 INFO:teuthology.orchestra.run.smithi160.stdout:UBUNTU_CODENAME=focal 2024-02-19T20:36:19.633 INFO:teuthology.lock.ops:Updating smithi160.front.sepia.ceph.com on lock server 2024-02-19T20:36:19.658 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-02-19T20:36:19.668 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-02-19T20:36:19.676 INFO:teuthology.task.internal:Checking for old test directory... 2024-02-19T20:36:19.676 DEBUG:teuthology.orchestra.run.smithi155:> test '!' -e /home/ubuntu/cephtest 2024-02-19T20:36:19.678 DEBUG:teuthology.orchestra.run.smithi160:> test '!' -e /home/ubuntu/cephtest 2024-02-19T20:36:19.684 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-02-19T20:36:19.690 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-02-19T20:36:19.690 DEBUG:teuthology.orchestra.run.smithi155:> test -z $(ls -A /var/lib/ceph) 2024-02-19T20:36:19.693 DEBUG:teuthology.orchestra.run.smithi160:> test -z $(ls -A /var/lib/ceph) 2024-02-19T20:36:19.708 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-02-19T20:36:19.761 INFO:teuthology.run_tasks:Running task kernel... 2024-02-19T20:36:19.774 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-02-19T20:36:19.775 INFO:teuthology.task.kernel:normalize config orig: {'hwe': True} 2024-02-19T20:36:19.775 DEBUG:teuthology.task.kernel:normalized overrides {'host.a': {'hwe': True}, 'client.0': {'hwe': True}, 'host.b': {'hwe': True}, 'client.1': {'hwe': True}} 2024-02-19T20:36:19.775 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro', 'hwe': True}, 'host.b': {'kdb': True, 'sha1': 'distro', 'hwe': True}}, timeout 300 2024-02-19T20:36:19.775 DEBUG:teuthology.orchestra.run.smithi155:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-19T20:36:19.776 DEBUG:teuthology.orchestra.run.smithi160:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-19T20:36:19.780 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:36:19.781 DEBUG:teuthology.orchestra.run.smithi155:> uname -r 2024-02-19T20:36:19.782 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:36:19.782 DEBUG:teuthology.orchestra.run.smithi160:> uname -r 2024-02-19T20:36:19.788 INFO:teuthology.orchestra.run.smithi160.stdout:5.4.0-124-generic 2024-02-19T20:36:19.788 INFO:teuthology.task.kernel:Running kernel on smithi160: 5.4.0-124-generic 2024-02-19T20:36:19.788 DEBUG:teuthology.orchestra.run.smithi160:> sudo apt-get clean 2024-02-19T20:36:19.789 INFO:teuthology.orchestra.run.smithi155.stdout:5.4.0-124-generic 2024-02-19T20:36:19.789 INFO:teuthology.task.kernel:Running kernel on smithi155: 5.4.0-124-generic 2024-02-19T20:36:19.790 DEBUG:teuthology.orchestra.run.smithi155:> sudo apt-get clean 2024-02-19T20:36:19.908 DEBUG:teuthology.orchestra.run.smithi155:> sudo apt-get update 2024-02-19T20:36:19.937 DEBUG:teuthology.orchestra.run.smithi160:> sudo apt-get update 2024-02-19T20:36:20.111 INFO:teuthology.orchestra.run.smithi155.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-19T20:36:20.143 INFO:teuthology.orchestra.run.smithi155.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] 2024-02-19T20:36:20.187 INFO:teuthology.orchestra.run.smithi155.stdout:Get:3 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB] 2024-02-19T20:36:20.235 INFO:teuthology.orchestra.run.smithi155.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] 2024-02-19T20:36:20.266 INFO:teuthology.orchestra.run.smithi160.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-19T20:36:20.282 INFO:teuthology.orchestra.run.smithi160.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] 2024-02-19T20:36:20.374 INFO:teuthology.orchestra.run.smithi160.stdout:Get:3 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB] 2024-02-19T20:36:20.412 INFO:teuthology.orchestra.run.smithi160.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] 2024-02-19T20:36:20.518 INFO:teuthology.orchestra.run.smithi155.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,095 kB] 2024-02-19T20:36:20.680 INFO:teuthology.orchestra.run.smithi160.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,095 kB] 2024-02-19T20:36:20.836 INFO:teuthology.orchestra.run.smithi155.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [933 kB] 2024-02-19T20:36:20.859 INFO:teuthology.orchestra.run.smithi155.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [497 kB] 2024-02-19T20:36:20.869 INFO:teuthology.orchestra.run.smithi155.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-02-19T20:36:20.873 INFO:teuthology.orchestra.run.smithi155.stdout:Get:9 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2,715 kB] 2024-02-19T20:36:20.888 INFO:teuthology.orchestra.run.smithi155.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2,673 kB] 2024-02-19T20:36:20.996 INFO:teuthology.orchestra.run.smithi160.stdout:Get:6 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2,715 kB] 2024-02-19T20:36:21.032 INFO:teuthology.orchestra.run.smithi155.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [36.8 kB] 2024-02-19T20:36:21.033 INFO:teuthology.orchestra.run.smithi155.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [373 kB] 2024-02-19T20:36:21.037 INFO:teuthology.orchestra.run.smithi155.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-02-19T20:36:21.037 INFO:teuthology.orchestra.run.smithi155.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [772 kB] 2024-02-19T20:36:21.059 INFO:teuthology.orchestra.run.smithi155.stdout:Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,164 kB] 2024-02-19T20:36:21.069 INFO:teuthology.orchestra.run.smithi155.stdout:Get:16 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [279 kB] 2024-02-19T20:36:21.072 INFO:teuthology.orchestra.run.smithi155.stdout:Get:17 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-02-19T20:36:21.072 INFO:teuthology.orchestra.run.smithi155.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,436 B] 2024-02-19T20:36:21.072 INFO:teuthology.orchestra.run.smithi155.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [26.1 kB] 2024-02-19T20:36:21.072 INFO:teuthology.orchestra.run.smithi155.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,768 B] 2024-02-19T20:36:21.099 INFO:teuthology.orchestra.run.smithi155.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-02-19T20:36:21.099 INFO:teuthology.orchestra.run.smithi155.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-02-19T20:36:21.100 INFO:teuthology.orchestra.run.smithi155.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-02-19T20:36:21.101 INFO:teuthology.orchestra.run.smithi155.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-02-19T20:36:21.118 INFO:teuthology.orchestra.run.smithi160.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [933 kB] 2024-02-19T20:36:21.127 INFO:teuthology.orchestra.run.smithi155.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-02-19T20:36:21.127 INFO:teuthology.orchestra.run.smithi155.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-02-19T20:36:21.128 INFO:teuthology.orchestra.run.smithi155.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-02-19T20:36:21.164 INFO:teuthology.orchestra.run.smithi160.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [497 kB] 2024-02-19T20:36:21.183 INFO:teuthology.orchestra.run.smithi160.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-02-19T20:36:21.183 INFO:teuthology.orchestra.run.smithi160.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2,673 kB] 2024-02-19T20:36:21.270 INFO:teuthology.orchestra.run.smithi160.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [36.8 kB] 2024-02-19T20:36:21.271 INFO:teuthology.orchestra.run.smithi160.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [373 kB] 2024-02-19T20:36:21.278 INFO:teuthology.orchestra.run.smithi160.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-02-19T20:36:21.278 INFO:teuthology.orchestra.run.smithi160.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,164 kB] 2024-02-19T20:36:21.320 INFO:teuthology.orchestra.run.smithi160.stdout:Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [772 kB] 2024-02-19T20:36:21.329 INFO:teuthology.orchestra.run.smithi160.stdout:Get:16 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [279 kB] 2024-02-19T20:36:21.333 INFO:teuthology.orchestra.run.smithi160.stdout:Get:17 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-02-19T20:36:21.335 INFO:teuthology.orchestra.run.smithi160.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [26.1 kB] 2024-02-19T20:36:21.336 INFO:teuthology.orchestra.run.smithi160.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,436 B] 2024-02-19T20:36:21.339 INFO:teuthology.orchestra.run.smithi160.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,768 B] 2024-02-19T20:36:21.339 INFO:teuthology.orchestra.run.smithi160.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-02-19T20:36:21.363 INFO:teuthology.orchestra.run.smithi155.stdout:Get:28 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [707 kB] 2024-02-19T20:36:21.366 INFO:teuthology.orchestra.run.smithi160.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-02-19T20:36:21.367 INFO:teuthology.orchestra.run.smithi160.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-02-19T20:36:21.368 INFO:teuthology.orchestra.run.smithi160.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-02-19T20:36:21.378 INFO:teuthology.orchestra.run.smithi155.stdout:Get:29 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [413 kB] 2024-02-19T20:36:21.386 INFO:teuthology.orchestra.run.smithi160.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-02-19T20:36:21.386 INFO:teuthology.orchestra.run.smithi160.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-02-19T20:36:21.387 INFO:teuthology.orchestra.run.smithi155.stdout:Get:30 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-02-19T20:36:21.388 INFO:teuthology.orchestra.run.smithi155.stdout:Get:31 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,556 kB] 2024-02-19T20:36:21.388 INFO:teuthology.orchestra.run.smithi160.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-02-19T20:36:21.466 INFO:teuthology.orchestra.run.smithi155.stdout:Get:32 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [35.5 kB] 2024-02-19T20:36:21.466 INFO:teuthology.orchestra.run.smithi155.stdout:Get:33 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [357 kB] 2024-02-19T20:36:21.474 INFO:teuthology.orchestra.run.smithi155.stdout:Get:34 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-02-19T20:36:21.474 INFO:teuthology.orchestra.run.smithi155.stdout:Get:35 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [644 kB] 2024-02-19T20:36:21.483 INFO:teuthology.orchestra.run.smithi160.stdout:Get:28 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [707 kB] 2024-02-19T20:36:21.489 INFO:teuthology.orchestra.run.smithi155.stdout:Get:36 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [938 kB] 2024-02-19T20:36:21.497 INFO:teuthology.orchestra.run.smithi160.stdout:Get:29 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [413 kB] 2024-02-19T20:36:21.506 INFO:teuthology.orchestra.run.smithi160.stdout:Get:30 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-02-19T20:36:21.506 INFO:teuthology.orchestra.run.smithi160.stdout:Get:31 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [35.5 kB] 2024-02-19T20:36:21.507 INFO:teuthology.orchestra.run.smithi160.stdout:Get:32 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,556 kB] 2024-02-19T20:36:21.586 INFO:teuthology.orchestra.run.smithi160.stdout:Get:33 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [357 kB] 2024-02-19T20:36:21.592 INFO:teuthology.orchestra.run.smithi160.stdout:Get:34 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-02-19T20:36:21.592 INFO:teuthology.orchestra.run.smithi160.stdout:Get:35 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [644 kB] 2024-02-19T20:36:21.606 INFO:teuthology.orchestra.run.smithi160.stdout:Get:36 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [938 kB] 2024-02-19T20:36:21.670 INFO:teuthology.orchestra.run.smithi155.stdout:Get:37 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [197 kB] 2024-02-19T20:36:21.794 INFO:teuthology.orchestra.run.smithi160.stdout:Get:37 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [197 kB] 2024-02-19T20:36:22.092 INFO:teuthology.orchestra.run.smithi155.stdout:Get:38 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-02-19T20:36:22.098 INFO:teuthology.orchestra.run.smithi155.stdout:Get:39 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [23.9 kB] 2024-02-19T20:36:22.105 INFO:teuthology.orchestra.run.smithi155.stdout:Get:40 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,188 B] 2024-02-19T20:36:22.107 INFO:teuthology.orchestra.run.smithi155.stdout:Get:41 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,796 B] 2024-02-19T20:36:22.109 INFO:teuthology.orchestra.run.smithi155.stdout:Get:42 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-02-19T20:36:22.225 INFO:teuthology.orchestra.run.smithi160.stdout:Get:38 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-02-19T20:36:22.230 INFO:teuthology.orchestra.run.smithi160.stdout:Get:39 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,188 B] 2024-02-19T20:36:22.232 INFO:teuthology.orchestra.run.smithi160.stdout:Get:40 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [23.9 kB] 2024-02-19T20:36:22.239 INFO:teuthology.orchestra.run.smithi160.stdout:Get:41 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,796 B] 2024-02-19T20:36:22.241 INFO:teuthology.orchestra.run.smithi160.stdout:Get:42 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-02-19T20:36:24.995 INFO:teuthology.orchestra.run.smithi155.stdout:Fetched 19.0 MB in 3s (6,511 kB/s) 2024-02-19T20:36:25.086 INFO:teuthology.orchestra.run.smithi160.stdout:Fetched 19.0 MB in 3s (5,980 kB/s) 2024-02-19T20:36:26.485 INFO:teuthology.orchestra.run.smithi155.stdout:Reading package lists... 2024-02-19T20:36:26.512 DEBUG:teuthology.orchestra.run.smithi155:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-19T20:36:26.525 INFO:teuthology.orchestra.run.smithi160.stdout:Reading package lists... 2024-02-19T20:36:26.549 DEBUG:teuthology.orchestra.run.smithi160:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-19T20:36:26.580 INFO:teuthology.orchestra.run.smithi155.stdout:Reading package lists... 2024-02-19T20:36:26.624 INFO:teuthology.orchestra.run.smithi160.stdout:Reading package lists... 2024-02-19T20:36:26.788 INFO:teuthology.orchestra.run.smithi155.stdout:Building dependency tree... 2024-02-19T20:36:26.788 INFO:teuthology.orchestra.run.smithi155.stdout:Reading state information... 2024-02-19T20:36:26.832 INFO:teuthology.orchestra.run.smithi160.stdout:Building dependency tree... 2024-02-19T20:36:26.832 INFO:teuthology.orchestra.run.smithi160.stdout:Reading state information... 2024-02-19T20:36:26.978 INFO:teuthology.orchestra.run.smithi155.stdout:The following additional packages will be installed: 2024-02-19T20:36:26.978 INFO:teuthology.orchestra.run.smithi155.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-19T20:36:26.978 INFO:teuthology.orchestra.run.smithi155.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-modules-5.15.0-94-generic 2024-02-19T20:36:26.979 INFO:teuthology.orchestra.run.smithi155.stdout: linux-modules-extra-5.15.0-94-generic thermald upower usbmuxd 2024-02-19T20:36:26.980 INFO:teuthology.orchestra.run.smithi155.stdout:Suggested packages: 2024-02-19T20:36:26.980 INFO:teuthology.orchestra.run.smithi155.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-02-19T20:36:26.980 INFO:teuthology.orchestra.run.smithi155.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-94-generic 2024-02-19T20:36:27.007 INFO:teuthology.orchestra.run.smithi160.stdout:The following additional packages will be installed: 2024-02-19T20:36:27.008 INFO:teuthology.orchestra.run.smithi160.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-19T20:36:27.008 INFO:teuthology.orchestra.run.smithi160.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-modules-5.15.0-94-generic 2024-02-19T20:36:27.008 INFO:teuthology.orchestra.run.smithi160.stdout: linux-modules-extra-5.15.0-94-generic thermald upower usbmuxd 2024-02-19T20:36:27.009 INFO:teuthology.orchestra.run.smithi160.stdout:Suggested packages: 2024-02-19T20:36:27.009 INFO:teuthology.orchestra.run.smithi160.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-02-19T20:36:27.010 INFO:teuthology.orchestra.run.smithi160.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-94-generic 2024-02-19T20:36:27.035 INFO:teuthology.orchestra.run.smithi155.stdout:The following NEW packages will be installed: 2024-02-19T20:36:27.036 INFO:teuthology.orchestra.run.smithi155.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-19T20:36:27.036 INFO:teuthology.orchestra.run.smithi155.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-image-generic-hwe-20.04 2024-02-19T20:36:27.036 INFO:teuthology.orchestra.run.smithi155.stdout: linux-modules-5.15.0-94-generic linux-modules-extra-5.15.0-94-generic 2024-02-19T20:36:27.036 INFO:teuthology.orchestra.run.smithi155.stdout: thermald upower usbmuxd 2024-02-19T20:36:27.064 INFO:teuthology.orchestra.run.smithi160.stdout:The following NEW packages will be installed: 2024-02-19T20:36:27.065 INFO:teuthology.orchestra.run.smithi160.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-19T20:36:27.065 INFO:teuthology.orchestra.run.smithi160.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-image-generic-hwe-20.04 2024-02-19T20:36:27.065 INFO:teuthology.orchestra.run.smithi160.stdout: linux-modules-5.15.0-94-generic linux-modules-extra-5.15.0-94-generic 2024-02-19T20:36:27.065 INFO:teuthology.orchestra.run.smithi160.stdout: thermald upower usbmuxd 2024-02-19T20:36:27.221 INFO:teuthology.orchestra.run.smithi155.stdout:0 upgraded, 13 newly installed, 0 to remove and 289 not upgraded. 2024-02-19T20:36:27.221 INFO:teuthology.orchestra.run.smithi155.stdout:Need to get 90.9 MB of archives. 2024-02-19T20:36:27.221 INFO:teuthology.orchestra.run.smithi155.stdout:After this operation, 497 MB of additional disk space will be used. 2024-02-19T20:36:27.221 INFO:teuthology.orchestra.run.smithi155.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-02-19T20:36:27.250 INFO:teuthology.orchestra.run.smithi160.stdout:0 upgraded, 13 newly installed, 0 to remove and 289 not upgraded. 2024-02-19T20:36:27.250 INFO:teuthology.orchestra.run.smithi160.stdout:Need to get 90.9 MB of archives. 2024-02-19T20:36:27.250 INFO:teuthology.orchestra.run.smithi160.stdout:After this operation, 497 MB of additional disk space will be used. 2024-02-19T20:36:27.250 INFO:teuthology.orchestra.run.smithi160.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-02-19T20:36:27.504 INFO:teuthology.orchestra.run.smithi155.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-02-19T20:36:27.524 INFO:teuthology.orchestra.run.smithi160.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-02-19T20:36:27.532 INFO:teuthology.orchestra.run.smithi155.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-02-19T20:36:27.551 INFO:teuthology.orchestra.run.smithi155.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-02-19T20:36:27.553 INFO:teuthology.orchestra.run.smithi160.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-02-19T20:36:27.571 INFO:teuthology.orchestra.run.smithi160.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-02-19T20:36:27.623 INFO:teuthology.orchestra.run.smithi155.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-02-19T20:36:27.643 INFO:teuthology.orchestra.run.smithi160.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-02-19T20:36:27.658 INFO:teuthology.orchestra.run.smithi155.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [21.0 MB] 2024-02-19T20:36:27.679 INFO:teuthology.orchestra.run.smithi160.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [21.0 MB] 2024-02-19T20:36:28.564 INFO:teuthology.orchestra.run.smithi160.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [11.4 MB] 2024-02-19T20:36:28.597 INFO:teuthology.orchestra.run.smithi155.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [11.4 MB] 2024-02-19T20:36:28.839 INFO:teuthology.orchestra.run.smithi160.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [57.9 MB] 2024-02-19T20:36:28.910 INFO:teuthology.orchestra.run.smithi155.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [57.9 MB] 2024-02-19T20:36:30.736 INFO:teuthology.orchestra.run.smithi160.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.94.104~20.04.50 [2,596 B] 2024-02-19T20:36:30.739 INFO:teuthology.orchestra.run.smithi160.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2024-02-19T20:36:30.739 INFO:teuthology.orchestra.run.smithi160.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-02-19T20:36:30.804 INFO:teuthology.orchestra.run.smithi155.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.94.104~20.04.50 [2,596 B] 2024-02-19T20:36:30.805 INFO:teuthology.orchestra.run.smithi155.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2024-02-19T20:36:30.806 INFO:teuthology.orchestra.run.smithi155.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-02-19T20:36:30.907 INFO:teuthology.orchestra.run.smithi160.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-02-19T20:36:30.975 INFO:teuthology.orchestra.run.smithi155.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-02-19T20:36:31.261 INFO:teuthology.orchestra.run.smithi160.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-02-19T20:36:31.319 INFO:teuthology.orchestra.run.smithi155.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-02-19T20:36:31.982 INFO:teuthology.orchestra.run.smithi160.stdout:Fetched 90.9 MB in 4s (21.6 MB/s) 2024-02-19T20:36:32.071 INFO:teuthology.orchestra.run.smithi155.stdout:Fetched 90.9 MB in 4s (21.2 MB/s) 2024-02-19T20:36:32.188 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-02-19T20:36:32.261 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-02-19T20:36:33.930 INFO:teuthology.orchestra.run.smithi160.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 ... 104373 files and directories currently installed.) 2024-02-19T20:36:33.935 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-02-19T20:36:33.957 INFO:teuthology.orchestra.run.smithi155.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 ... 104373 files and directories currently installed.) 2024-02-19T20:36:33.962 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-02-19T20:36:34.075 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-19T20:36:34.077 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-19T20:36:34.428 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package libplist3:amd64. 2024-02-19T20:36:34.444 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-02-19T20:36:34.454 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package libplist3:amd64. 2024-02-19T20:36:34.470 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-02-19T20:36:34.486 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-02-19T20:36:34.513 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-02-19T20:36:34.822 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-02-19T20:36:34.835 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-02-19T20:36:34.851 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-02-19T20:36:34.863 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-02-19T20:36:34.872 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-19T20:36:34.907 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-19T20:36:35.191 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-02-19T20:36:35.206 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-02-19T20:36:35.241 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-19T20:36:35.269 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-02-19T20:36:35.281 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-02-19T20:36:35.318 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-19T20:36:35.553 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-02-19T20:36:35.567 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-02-19T20:36:35.611 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-19T20:36:35.663 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-02-19T20:36:35.678 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-02-19T20:36:35.721 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-19T20:36:35.930 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package linux-modules-5.15.0-94-generic. 2024-02-19T20:36:35.946 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../05-linux-modules-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-19T20:36:35.989 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:36.040 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package linux-modules-5.15.0-94-generic. 2024-02-19T20:36:36.055 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../05-linux-modules-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-19T20:36:36.098 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:38.439 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package linux-image-5.15.0-94-generic. 2024-02-19T20:36:38.455 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../06-linux-image-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-19T20:36:38.545 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:38.590 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package linux-image-5.15.0-94-generic. 2024-02-19T20:36:38.604 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../06-linux-image-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-19T20:36:38.715 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:39.076 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-94-generic. 2024-02-19T20:36:39.088 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-19T20:36:39.126 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:39.243 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-94-generic. 2024-02-19T20:36:39.256 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-19T20:36:39.293 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:46.034 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-02-19T20:36:46.052 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.94.104~20.04.50_amd64.deb ... 2024-02-19T20:36:46.092 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-19T20:36:46.191 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-02-19T20:36:46.206 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.94.104~20.04.50_amd64.deb ... 2024-02-19T20:36:46.249 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-19T20:36:46.453 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package libevdev2:amd64. 2024-02-19T20:36:46.467 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-02-19T20:36:46.511 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-19T20:36:46.577 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package libevdev2:amd64. 2024-02-19T20:36:46.591 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-02-19T20:36:46.635 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-19T20:36:46.873 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package thermald. 2024-02-19T20:36:46.886 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-02-19T20:36:46.947 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-02-19T20:36:47.013 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package thermald. 2024-02-19T20:36:47.026 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-02-19T20:36:47.062 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-02-19T20:36:47.502 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package upower. 2024-02-19T20:36:47.516 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-02-19T20:36:47.582 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking upower (0.99.11-1build2) ... 2024-02-19T20:36:47.609 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package upower. 2024-02-19T20:36:47.623 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-02-19T20:36:47.687 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking upower (0.99.11-1build2) ... 2024-02-19T20:36:47.998 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package usbmuxd. 2024-02-19T20:36:48.012 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-02-19T20:36:48.056 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-19T20:36:48.092 INFO:teuthology.orchestra.run.smithi160.stdout:Selecting previously unselected package usbmuxd. 2024-02-19T20:36:48.109 INFO:teuthology.orchestra.run.smithi160.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-02-19T20:36:48.146 INFO:teuthology.orchestra.run.smithi160.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-19T20:36:48.354 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-02-19T20:36:48.445 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-02-19T20:36:48.494 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-19T20:36:48.567 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-19T20:36:48.620 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-19T20:36:48.685 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-19T20:36:48.746 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-19T20:36:48.836 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-19T20:36:48.855 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-19T20:36:48.962 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-19T20:36:48.964 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-19T20:36:49.066 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up upower (0.99.11-1build2) ... 2024-02-19T20:36:49.088 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-19T20:36:49.216 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up upower (0.99.11-1build2) ... 2024-02-19T20:36:49.621 INFO:teuthology.orchestra.run.smithi155.stdout:upower.service is a disabled or a static unit, not starting it. 2024-02-19T20:36:49.672 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-19T20:36:49.729 INFO:teuthology.orchestra.run.smithi160.stdout:upower.service is a disabled or a static unit, not starting it. 2024-02-19T20:36:49.784 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-19T20:36:49.829 INFO:teuthology.orchestra.run.smithi155.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-02-19T20:36:49.833 INFO:teuthology.orchestra.run.smithi155.stdout:Adding system user `usbmux' (UID 114) ... 2024-02-19T20:36:49.833 INFO:teuthology.orchestra.run.smithi155.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-02-19T20:36:49.988 INFO:teuthology.orchestra.run.smithi160.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-02-19T20:36:49.997 INFO:teuthology.orchestra.run.smithi160.stdout:Adding system user `usbmux' (UID 114) ... 2024-02-19T20:36:49.997 INFO:teuthology.orchestra.run.smithi160.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-02-19T20:36:50.348 INFO:teuthology.orchestra.run.smithi155.stdout:Not creating home directory `/var/lib/usbmux'. 2024-02-19T20:36:50.518 INFO:teuthology.orchestra.run.smithi160.stdout:Not creating home directory `/var/lib/usbmux'. 2024-02-19T20:36:50.571 INFO:teuthology.orchestra.run.smithi155.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-02-19T20:36:50.627 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-02-19T20:36:50.736 INFO:teuthology.orchestra.run.smithi160.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-02-19T20:36:50.781 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-02-19T20:36:51.017 INFO:teuthology.orchestra.run.smithi155.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-02-19T20:36:51.017 INFO:teuthology.orchestra.run.smithi155.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-02-19T20:36:51.111 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-02-19T20:36:51.111 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-02-19T20:36:51.569 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:51.642 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:52.893 INFO:teuthology.orchestra.run.smithi160.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-94-generic 2024-02-19T20:36:52.894 INFO:teuthology.orchestra.run.smithi160.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-94-generic 2024-02-19T20:36:53.006 INFO:teuthology.orchestra.run.smithi155.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-94-generic 2024-02-19T20:36:53.006 INFO:teuthology.orchestra.run.smithi155.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-94-generic 2024-02-19T20:36:53.062 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:53.211 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:54.463 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-19T20:36:54.589 INFO:teuthology.orchestra.run.smithi160.stdout:Setting up linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:54.596 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-19T20:36:54.755 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:55.965 INFO:teuthology.orchestra.run.smithi160.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-19T20:36:56.149 INFO:teuthology.orchestra.run.smithi155.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-19T20:36:56.437 INFO:teuthology.orchestra.run.smithi160.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-19T20:36:56.438 INFO:teuthology.orchestra.run.smithi155.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-19T20:36:57.216 INFO:teuthology.orchestra.run.smithi155.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-02-19T20:36:57.333 INFO:teuthology.orchestra.run.smithi155.stdout:Processing triggers for linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:57.392 INFO:teuthology.orchestra.run.smithi155.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-19T20:36:57.392 INFO:teuthology.orchestra.run.smithi155.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-94-generic 2024-02-19T20:36:58.815 INFO:teuthology.orchestra.run.smithi160.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-02-19T20:36:58.924 INFO:teuthology.orchestra.run.smithi160.stdout:Processing triggers for linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-19T20:36:59.003 INFO:teuthology.orchestra.run.smithi160.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-19T20:36:59.003 INFO:teuthology.orchestra.run.smithi160.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-94-generic 2024-02-19T20:37:22.912 INFO:teuthology.orchestra.run.smithi155.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-19T20:37:22.913 INFO:teuthology.orchestra.run.smithi155.stdout:Sourcing file `/etc/default/grub' 2024-02-19T20:37:22.927 INFO:teuthology.orchestra.run.smithi155.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-19T20:37:22.952 INFO:teuthology.orchestra.run.smithi155.stdout:Generating grub configuration file ... 2024-02-19T20:37:23.271 INFO:teuthology.orchestra.run.smithi155.stdout:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-19T20:37:23.290 INFO:teuthology.orchestra.run.smithi155.stdout:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-19T20:37:23.675 INFO:teuthology.orchestra.run.smithi155.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-19T20:37:23.687 INFO:teuthology.orchestra.run.smithi155.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-19T20:37:24.446 INFO:teuthology.orchestra.run.smithi160.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-19T20:37:24.446 INFO:teuthology.orchestra.run.smithi160.stdout:Sourcing file `/etc/default/grub' 2024-02-19T20:37:24.454 INFO:teuthology.orchestra.run.smithi160.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-19T20:37:24.469 INFO:teuthology.orchestra.run.smithi160.stdout:Generating grub configuration file ... 2024-02-19T20:37:24.806 INFO:teuthology.orchestra.run.smithi160.stdout:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-19T20:37:24.834 INFO:teuthology.orchestra.run.smithi160.stdout:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-19T20:37:25.278 INFO:teuthology.orchestra.run.smithi160.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-19T20:37:25.293 INFO:teuthology.orchestra.run.smithi160.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-19T20:37:25.458 INFO:teuthology.orchestra.run.smithi155.stdout:done 2024-02-19T20:37:25.920 DEBUG:teuthology.orchestra.run.smithi155:> dpkg -s linux-image-generic-hwe-20.04 2024-02-19T20:37:25.964 INFO:teuthology.orchestra.run.smithi155.stdout:Package: linux-image-generic-hwe-20.04 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Status: install ok installed 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Priority: optional 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Section: kernel 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Installed-Size: 20 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Maintainer: Ubuntu Kernel Team 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Architecture: amd64 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Source: linux-meta-hwe-5.15 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Recommends: thermald 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout:Description: Generic Linux kernel image 2024-02-19T20:37:25.965 INFO:teuthology.orchestra.run.smithi155.stdout: This package will always depend on the latest generic kernel image 2024-02-19T20:37:25.966 INFO:teuthology.orchestra.run.smithi155.stdout: available. 2024-02-19T20:37:25.966 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-94-generic 2024-02-19T20:37:25.966 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-19T20:37:25.966 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-19T20:37:25.966 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-02-19T20:37:25.966 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi155.front.sepia.ceph.com, path=None, version=distro) 2024-02-19T20:37:25.966 DEBUG:teuthology.orchestra.run.smithi155:> sudo apt-get clean 2024-02-19T20:37:26.091 DEBUG:teuthology.orchestra.run.smithi155:> sudo apt-get update 2024-02-19T20:37:26.244 INFO:teuthology.orchestra.run.smithi155.stdout:Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-02-19T20:37:26.244 INFO:teuthology.orchestra.run.smithi155.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-19T20:37:26.268 INFO:teuthology.orchestra.run.smithi155.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-02-19T20:37:26.306 INFO:teuthology.orchestra.run.smithi155.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-02-19T20:37:27.010 INFO:teuthology.orchestra.run.smithi160.stdout:done 2024-02-19T20:37:27.409 DEBUG:teuthology.orchestra.run.smithi160:> dpkg -s linux-image-generic-hwe-20.04 2024-02-19T20:37:27.462 INFO:teuthology.orchestra.run.smithi160.stdout:Package: linux-image-generic-hwe-20.04 2024-02-19T20:37:27.462 INFO:teuthology.orchestra.run.smithi160.stdout:Status: install ok installed 2024-02-19T20:37:27.462 INFO:teuthology.orchestra.run.smithi160.stdout:Priority: optional 2024-02-19T20:37:27.462 INFO:teuthology.orchestra.run.smithi160.stdout:Section: kernel 2024-02-19T20:37:27.462 INFO:teuthology.orchestra.run.smithi160.stdout:Installed-Size: 20 2024-02-19T20:37:27.462 INFO:teuthology.orchestra.run.smithi160.stdout:Maintainer: Ubuntu Kernel Team 2024-02-19T20:37:27.463 INFO:teuthology.orchestra.run.smithi160.stdout:Architecture: amd64 2024-02-19T20:37:27.463 INFO:teuthology.orchestra.run.smithi160.stdout:Source: linux-meta-hwe-5.15 2024-02-19T20:37:27.463 INFO:teuthology.orchestra.run.smithi160.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-19T20:37:27.463 INFO:teuthology.orchestra.run.smithi160.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-19T20:37:27.463 INFO:teuthology.orchestra.run.smithi160.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-19T20:37:27.463 INFO:teuthology.orchestra.run.smithi160.stdout:Recommends: thermald 2024-02-19T20:37:27.463 INFO:teuthology.orchestra.run.smithi160.stdout:Description: Generic Linux kernel image 2024-02-19T20:37:27.463 INFO:teuthology.orchestra.run.smithi160.stdout: This package will always depend on the latest generic kernel image 2024-02-19T20:37:27.463 INFO:teuthology.orchestra.run.smithi160.stdout: available. 2024-02-19T20:37:27.463 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-94-generic 2024-02-19T20:37:27.463 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-19T20:37:27.464 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-19T20:37:27.464 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-02-19T20:37:27.464 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi160.front.sepia.ceph.com, path=None, version=distro) 2024-02-19T20:37:27.464 DEBUG:teuthology.orchestra.run.smithi160:> sudo apt-get clean 2024-02-19T20:37:27.564 DEBUG:teuthology.orchestra.run.smithi160:> sudo apt-get update 2024-02-19T20:37:27.721 INFO:teuthology.orchestra.run.smithi160.stdout:Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-02-19T20:37:27.721 INFO:teuthology.orchestra.run.smithi160.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-19T20:37:27.731 INFO:teuthology.orchestra.run.smithi160.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-02-19T20:37:27.751 INFO:teuthology.orchestra.run.smithi160.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-02-19T20:37:28.024 INFO:teuthology.orchestra.run.smithi155.stdout:Reading package lists... 2024-02-19T20:37:28.050 DEBUG:teuthology.orchestra.run.smithi155:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-19T20:37:28.119 INFO:teuthology.orchestra.run.smithi155.stdout:Reading package lists... 2024-02-19T20:37:28.326 INFO:teuthology.orchestra.run.smithi155.stdout:Building dependency tree... 2024-02-19T20:37:28.326 INFO:teuthology.orchestra.run.smithi155.stdout:Reading state information... 2024-02-19T20:37:28.553 INFO:teuthology.orchestra.run.smithi155.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.94.104~20.04.50). 2024-02-19T20:37:28.553 INFO:teuthology.orchestra.run.smithi155.stdout:0 upgraded, 0 newly installed, 0 to remove and 289 not upgraded. 2024-02-19T20:37:28.555 DEBUG:teuthology.orchestra.run.smithi155:> dpkg -s linux-image-generic-hwe-20.04 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Package: linux-image-generic-hwe-20.04 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Status: install ok installed 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Priority: optional 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Section: kernel 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Installed-Size: 20 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Maintainer: Ubuntu Kernel Team 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Architecture: amd64 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Source: linux-meta-hwe-5.15 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-19T20:37:28.578 INFO:teuthology.orchestra.run.smithi155.stdout:Recommends: thermald 2024-02-19T20:37:28.579 INFO:teuthology.orchestra.run.smithi155.stdout:Description: Generic Linux kernel image 2024-02-19T20:37:28.579 INFO:teuthology.orchestra.run.smithi155.stdout: This package will always depend on the latest generic kernel image 2024-02-19T20:37:28.579 INFO:teuthology.orchestra.run.smithi155.stdout: available. 2024-02-19T20:37:28.579 DEBUG:teuthology.orchestra.run.smithi155:> mktemp 2024-02-19T20:37:28.584 INFO:teuthology.orchestra.run.smithi155.stdout:/tmp/tmp.s9qDOXtVOL 2024-02-19T20:37:28.584 DEBUG:teuthology.orchestra.run.smithi155:> sudo cp /boot/grub/grub.cfg /tmp/tmp.s9qDOXtVOL 2024-02-19T20:37:28.642 DEBUG:teuthology.orchestra.run.smithi155:> sudo chmod 0666 /tmp/tmp.s9qDOXtVOL 2024-02-19T20:37:28.676 DEBUG:teuthology.orchestra.remote:smithi155:/tmp/tmp.s9qDOXtVOL is 9KB 2024-02-19T20:37:28.691 DEBUG:teuthology.orchestra.run.smithi155:> rm -fr /tmp/tmp.s9qDOXtVOL 2024-02-19T20:37:28.697 DEBUG:teuthology.orchestra.run.smithi155:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-19T20:37:28.753 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:37:28.753 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-19T20:37:28.753 DEBUG:teuthology.orchestra.run.smithi155:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-19T20:37:28.785 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-94-generic 2024-02-19T20:37:28.785 DEBUG:teuthology.orchestra.run.smithi155:> sudo update-grub 2024-02-19T20:37:29.517 INFO:teuthology.orchestra.run.smithi160.stdout:Reading package lists... 2024-02-19T20:37:29.543 DEBUG:teuthology.orchestra.run.smithi160:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-19T20:37:29.610 INFO:teuthology.orchestra.run.smithi160.stdout:Reading package lists... 2024-02-19T20:37:29.822 INFO:teuthology.orchestra.run.smithi160.stdout:Building dependency tree... 2024-02-19T20:37:29.822 INFO:teuthology.orchestra.run.smithi160.stdout:Reading state information... 2024-02-19T20:37:30.049 INFO:teuthology.orchestra.run.smithi160.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.94.104~20.04.50). 2024-02-19T20:37:30.049 INFO:teuthology.orchestra.run.smithi160.stdout:0 upgraded, 0 newly installed, 0 to remove and 289 not upgraded. 2024-02-19T20:37:30.051 DEBUG:teuthology.orchestra.run.smithi160:> dpkg -s linux-image-generic-hwe-20.04 2024-02-19T20:37:30.073 INFO:teuthology.orchestra.run.smithi160.stdout:Package: linux-image-generic-hwe-20.04 2024-02-19T20:37:30.073 INFO:teuthology.orchestra.run.smithi160.stdout:Status: install ok installed 2024-02-19T20:37:30.073 INFO:teuthology.orchestra.run.smithi160.stdout:Priority: optional 2024-02-19T20:37:30.073 INFO:teuthology.orchestra.run.smithi160.stdout:Section: kernel 2024-02-19T20:37:30.073 INFO:teuthology.orchestra.run.smithi160.stdout:Installed-Size: 20 2024-02-19T20:37:30.073 INFO:teuthology.orchestra.run.smithi160.stdout:Maintainer: Ubuntu Kernel Team 2024-02-19T20:37:30.074 INFO:teuthology.orchestra.run.smithi160.stdout:Architecture: amd64 2024-02-19T20:37:30.074 INFO:teuthology.orchestra.run.smithi160.stdout:Source: linux-meta-hwe-5.15 2024-02-19T20:37:30.074 INFO:teuthology.orchestra.run.smithi160.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-19T20:37:30.074 INFO:teuthology.orchestra.run.smithi160.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-19T20:37:30.074 INFO:teuthology.orchestra.run.smithi160.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-19T20:37:30.074 INFO:teuthology.orchestra.run.smithi160.stdout:Recommends: thermald 2024-02-19T20:37:30.074 INFO:teuthology.orchestra.run.smithi160.stdout:Description: Generic Linux kernel image 2024-02-19T20:37:30.074 INFO:teuthology.orchestra.run.smithi160.stdout: This package will always depend on the latest generic kernel image 2024-02-19T20:37:30.074 INFO:teuthology.orchestra.run.smithi160.stdout: available. 2024-02-19T20:37:30.075 DEBUG:teuthology.orchestra.run.smithi160:> mktemp 2024-02-19T20:37:30.107 INFO:teuthology.orchestra.run.smithi155.stderr:Sourcing file `/etc/default/grub' 2024-02-19T20:37:30.118 INFO:teuthology.orchestra.run.smithi155.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-19T20:37:30.120 INFO:teuthology.orchestra.run.smithi160.stdout:/tmp/tmp.M3nPpWRsaJ 2024-02-19T20:37:30.120 DEBUG:teuthology.orchestra.run.smithi160:> sudo cp /boot/grub/grub.cfg /tmp/tmp.M3nPpWRsaJ 2024-02-19T20:37:30.135 INFO:teuthology.orchestra.run.smithi155.stderr:Generating grub configuration file ... 2024-02-19T20:37:30.147 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod 0666 /tmp/tmp.M3nPpWRsaJ 2024-02-19T20:37:30.187 DEBUG:teuthology.orchestra.remote:smithi160:/tmp/tmp.M3nPpWRsaJ is 9KB 2024-02-19T20:37:30.201 DEBUG:teuthology.orchestra.run.smithi160:> rm -fr /tmp/tmp.M3nPpWRsaJ 2024-02-19T20:37:30.207 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-19T20:37:30.267 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:37:30.268 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-19T20:37:30.268 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-19T20:37:30.306 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-94-generic 2024-02-19T20:37:30.306 DEBUG:teuthology.orchestra.run.smithi160:> sudo update-grub 2024-02-19T20:37:30.427 INFO:teuthology.orchestra.run.smithi155.stderr:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-19T20:37:30.438 INFO:teuthology.orchestra.run.smithi155.stderr:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-19T20:37:30.787 INFO:teuthology.orchestra.run.smithi155.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-19T20:37:30.799 INFO:teuthology.orchestra.run.smithi155.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-19T20:37:31.537 INFO:teuthology.orchestra.run.smithi155.stderr:done 2024-02-19T20:37:31.539 DEBUG:teuthology.orchestra.run.smithi155:> sudo shutdown -r now 2024-02-19T20:37:31.610 INFO:teuthology.orchestra.run.smithi160.stderr:Sourcing file `/etc/default/grub' 2024-02-19T20:37:31.617 INFO:teuthology.orchestra.run.smithi160.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-19T20:37:31.630 INFO:teuthology.orchestra.run.smithi160.stderr:Generating grub configuration file ... 2024-02-19T20:37:31.871 INFO:teuthology.orchestra.run.smithi160.stderr:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-19T20:37:31.883 INFO:teuthology.orchestra.run.smithi160.stderr:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-19T20:37:32.224 INFO:teuthology.orchestra.run.smithi160.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-19T20:37:32.235 INFO:teuthology.orchestra.run.smithi160.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-19T20:37:32.925 INFO:teuthology.orchestra.run.smithi160.stderr:done 2024-02-19T20:37:32.927 DEBUG:teuthology.orchestra.run.smithi160:> sudo shutdown -r now 2024-02-19T20:38:01.571 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-02-19T20:38:01.571 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi155.front.sepia.ceph.com' 2024-02-19T20:38:01.577 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi155.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:38:02.932 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-02-19T20:38:02.932 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-02-19T20:38:02.933 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:38:19.968 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.155 2024-02-19T20:38:28.976 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi155.front.sepia.ceph.com' 2024-02-19T20:38:28.977 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi155.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:38:32.032 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.155 2024-02-19T20:38:37.632 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.160 2024-02-19T20:38:44.036 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi155.front.sepia.ceph.com' 2024-02-19T20:38:44.037 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi155.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:38:46.636 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-02-19T20:38:46.637 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:39:05.024 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.160 2024-02-19T20:39:17.037 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-02-19T20:39:17.038 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:39:18.048 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.160 2024-02-19T20:39:33.061 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-02-19T20:39:33.063 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:39:33.365 DEBUG:teuthology.orchestra.run.smithi160:> true 2024-02-19T20:39:33.901 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-02-19T20:39:33.901 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-94-generic"... 2024-02-19T20:39:33.902 DEBUG:teuthology.orchestra.run.smithi160:> uname -r 2024-02-19T20:39:33.949 INFO:teuthology.orchestra.run.smithi160.stdout:5.15.0-94-generic 2024-02-19T20:39:33.950 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-94-generic vs 5.15.0-94-generic 2024-02-19T20:39:33.950 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-19T20:39:33.950 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-19T20:39:34.951 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-02-19T20:39:34.951 DEBUG:teuthology.orchestra.run.smithi160:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-19T20:39:35.325 INFO:teuthology.orchestra.run.smithi160.stdout:ttyS1 2024-02-19T20:39:35.353 DEBUG:teuthology.parallel:result is None 2024-02-19T20:39:44.039 DEBUG:teuthology.orchestra.remote:timed out 2024-02-19T20:39:59.040 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi155.front.sepia.ceph.com' 2024-02-19T20:39:59.041 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi155.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:39:59.278 DEBUG:teuthology.orchestra.run.smithi155:> true 2024-02-19T20:39:59.843 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi155.front.sepia.ceph.com' 2024-02-19T20:39:59.843 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-94-generic"... 2024-02-19T20:39:59.844 DEBUG:teuthology.orchestra.run.smithi155:> uname -r 2024-02-19T20:39:59.891 INFO:teuthology.orchestra.run.smithi155.stdout:5.15.0-94-generic 2024-02-19T20:39:59.891 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-94-generic vs 5.15.0-94-generic 2024-02-19T20:39:59.891 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-19T20:39:59.891 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-19T20:40:00.892 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-02-19T20:40:00.892 DEBUG:teuthology.orchestra.run.smithi155:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-19T20:40:00.971 INFO:teuthology.orchestra.run.smithi155.stdout:ttyS1 2024-02-19T20:40:00.995 DEBUG:teuthology.parallel:result is None 2024-02-19T20:40:00.995 INFO:teuthology.run_tasks:Running task internal.base... 2024-02-19T20:40:01.003 INFO:teuthology.task.internal:Creating test directory... 2024-02-19T20:40:01.004 DEBUG:teuthology.orchestra.run.smithi155:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-19T20:40:01.008 DEBUG:teuthology.orchestra.run.smithi160:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-19T20:40:01.016 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-02-19T20:40:01.024 INFO:teuthology.run_tasks:Running task internal.archive... 2024-02-19T20:40:01.030 INFO:teuthology.task.internal:Creating archive directory... 2024-02-19T20:40:01.030 DEBUG:teuthology.orchestra.run.smithi155:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-19T20:40:01.058 DEBUG:teuthology.orchestra.run.smithi160:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-19T20:40:01.150 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-02-19T20:40:01.158 INFO:teuthology.task.internal:Enabling coredump saving... 2024-02-19T20:40:01.158 DEBUG:teuthology.orchestra.run.smithi155:> 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-02-19T20:40:01.161 DEBUG:teuthology.orchestra.run.smithi160:> 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-02-19T20:40:01.175 INFO:teuthology.orchestra.run.smithi155.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-19T20:40:01.177 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-19T20:40:01.182 INFO:teuthology.orchestra.run.smithi155.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-19T20:40:01.183 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-19T20:40:01.185 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-02-19T20:40:01.193 INFO:teuthology.task.internal:Configuring sudo... 2024-02-19T20:40:01.193 DEBUG:teuthology.orchestra.run.smithi155:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-19T20:40:01.226 DEBUG:teuthology.orchestra.run.smithi160:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-19T20:40:01.247 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-02-19T20:40:01.257 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-02-19T20:40:01.258 DEBUG:teuthology.orchestra.run.smithi155:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-19T20:40:01.286 DEBUG:teuthology.orchestra.run.smithi160:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-19T20:40:01.298 DEBUG:teuthology.orchestra.run.smithi155:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-19T20:40:01.339 DEBUG:teuthology.orchestra.run.smithi155:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-19T20:40:01.388 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:40:01.388 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-19T20:40:01.451 DEBUG:teuthology.orchestra.run.smithi160:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-19T20:40:01.459 DEBUG:teuthology.orchestra.run.smithi160:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-19T20:40:01.509 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:40:01.510 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-19T20:40:01.580 DEBUG:teuthology.orchestra.run.smithi155:> sudo service rsyslog restart 2024-02-19T20:40:01.583 DEBUG:teuthology.orchestra.run.smithi160:> sudo service rsyslog restart 2024-02-19T20:40:01.663 INFO:teuthology.run_tasks:Running task internal.timer... 2024-02-19T20:40:01.671 INFO:teuthology.task.internal:Starting timer... 2024-02-19T20:40:01.671 INFO:teuthology.run_tasks:Running task pcp... 2024-02-19T20:40:01.681 INFO:teuthology.run_tasks:Running task selinux... 2024-02-19T20:40:01.694 DEBUG:teuthology.task.selinux:Excluding smithi155: OS 'ubuntu' does not support SELinux 2024-02-19T20:40:01.694 DEBUG:teuthology.task.selinux:Excluding smithi160: OS 'ubuntu' does not support SELinux 2024-02-19T20:40:01.694 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-02-19T20:40:01.694 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-02-19T20:40:01.694 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-02-19T20:40:01.695 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-02-19T20:40:01.706 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-02-19T20:40:01.781 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-02-19T20:40:01.782 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi155.front.sepia.ceph.com,smithi160.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-02-19T20:45:29.889 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi155.front.sepia.ceph.com'), Remote(name='ubuntu@smithi160.front.sepia.ceph.com')] 2024-02-19T20:45:29.891 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi155.front.sepia.ceph.com' 2024-02-19T20:45:29.892 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi155.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:45:29.976 DEBUG:teuthology.orchestra.run.smithi155:> true 2024-02-19T20:45:30.098 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi155.front.sepia.ceph.com' 2024-02-19T20:45:30.098 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-02-19T20:45:30.099 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T20:45:30.186 DEBUG:teuthology.orchestra.run.smithi160:> true 2024-02-19T20:45:30.301 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-02-19T20:45:30.302 INFO:teuthology.run_tasks:Running task clock... 2024-02-19T20:45:30.314 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-02-19T20:45:30.314 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-19T20:45:30.314 DEBUG:teuthology.orchestra.run.smithi155:> 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-02-19T20:45:30.317 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-19T20:45:30.317 DEBUG:teuthology.orchestra.run.smithi160:> 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-02-19T20:45:30.346 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-02-19T20:45:30.346 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: Command line: ntpd -gq 2024-02-19T20:45:30.346 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: proto: precision = 0.063 usec (-24) 2024-02-19T20:45:30.346 INFO:teuthology.orchestra.run.smithi155.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-19T20:45:30.347 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-19T20:45:30.347 INFO:teuthology.orchestra.run.smithi155.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-19T20:45:30.348 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: restrict ::: KOD does nothing without LIMITED. 2024-02-19T20:45:30.348 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: Listen and drop on 0 v6wildcard [::]:123 2024-02-19T20:45:30.348 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-19T20:45:30.348 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: Listen normally on 2 lo 127.0.0.1:123 2024-02-19T20:45:30.348 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: Listen normally on 3 enp3s0f1 172.21.15.155:123 2024-02-19T20:45:30.348 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: Listen normally on 4 lo [::1]:123 2024-02-19T20:45:30.348 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6ded%5]:123 2024-02-19T20:45:30.348 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:30 ntpd[12766]: Listening on routing socket on fd #22 for interface updates 2024-02-19T20:45:30.374 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-02-19T20:45:30.374 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: Command line: ntpd -gq 2024-02-19T20:45:30.375 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: proto: precision = 0.058 usec (-24) 2024-02-19T20:45:30.375 INFO:teuthology.orchestra.run.smithi160.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-19T20:45:30.375 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-19T20:45:30.376 INFO:teuthology.orchestra.run.smithi160.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-19T20:45:30.377 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: restrict ::: KOD does nothing without LIMITED. 2024-02-19T20:45:30.377 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: Listen and drop on 0 v6wildcard [::]:123 2024-02-19T20:45:30.377 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-19T20:45:30.377 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: Listen normally on 2 lo 127.0.0.1:123 2024-02-19T20:45:30.377 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: Listen normally on 3 enp3s0f1 172.21.15.160:123 2024-02-19T20:45:30.377 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: Listen normally on 4 lo [::1]:123 2024-02-19T20:45:30.377 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7f5b%5]:123 2024-02-19T20:45:30.377 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:30 ntpd[12769]: Listening on routing socket on fd #22 for interface updates 2024-02-19T20:45:31.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:31 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:31.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:31 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:31.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:31 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:31.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:31 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:32.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:32 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:32.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:32 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:32.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:32 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:32.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:32 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:32.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:32 ntpd[12766]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:32.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:32 ntpd[12766]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:33.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:33 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:33.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:33 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:33.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:33 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:33.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:33 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:33.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:33 ntpd[12766]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:33.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:33 ntpd[12766]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:33.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:33.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:33.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:33.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:33.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:33.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:33.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:33.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:33.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:33.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:33.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:33.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:33 ntpd[12769]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:34.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:34 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:34.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:34 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:34.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:34 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:34.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:34 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:34.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:34 ntpd[12766]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:34.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:34 ntpd[12766]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:34.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:34 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:34.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:34 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:34.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:34 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:34.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:34 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:34.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:34 ntpd[12769]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:34.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:34 ntpd[12769]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:35.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:35.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:35 ntpd[12766]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:35.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:35.377 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:35 ntpd[12769]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:36.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:36 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:36.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:36 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:36.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:36 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:36.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:36 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:36.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:36 ntpd[12766]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:36.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:36 ntpd[12766]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:36.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:36 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:36.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:36 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:36.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:36 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:36.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:36 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:36.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:36 ntpd[12769]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:36.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:36 ntpd[12769]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:37.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:37.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:37 ntpd[12766]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:37.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:37.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:37.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:37.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:37.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:37.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:37.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:37.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:37.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:37.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:37.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:37.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:37 ntpd[12769]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:38.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:38 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:38.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:38 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:38.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:38 ntpd[12766]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:38.346 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:38 ntpd[12766]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:38.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:38 ntpd[12766]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:38.347 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:38 ntpd[12766]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:38.347 INFO:teuthology.orchestra.run.smithi155.stdout:19 Feb 20:45:38 ntpd[12766]: ntpd: time slew +0.000878 s 2024-02-19T20:45:38.347 INFO:teuthology.orchestra.run.smithi155.stdout:ntpd: time slew +0.000878s 2024-02-19T20:45:38.348 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:38 ntpd[12766]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-19T20:45:38.348 INFO:teuthology.orchestra.run.smithi155.stderr:19 Feb 20:45:38 ntpd[12766]: can't open /var/log/ntpstats/loopstats.20240219: Permission denied 2024-02-19T20:45:38.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:38 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:38.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:38 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:38.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:38 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:38.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:38 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:38.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:38 ntpd[12769]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:38.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:38 ntpd[12769]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:38.406 INFO:teuthology.orchestra.run.smithi155.stdout: remote refid st t when poll reach delay offset jitter 2024-02-19T20:45:38.406 INFO:teuthology.orchestra.run.smithi155.stdout:============================================================================== 2024-02-19T20:45:38.406 INFO:teuthology.orchestra.run.smithi155.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T20:45:38.406 INFO:teuthology.orchestra.run.smithi155.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T20:45:38.406 INFO:teuthology.orchestra.run.smithi155.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T20:45:38.406 INFO:teuthology.orchestra.run.smithi155.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T20:45:39.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:39 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:39.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:39 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:39.375 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:39 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:39.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:39 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:39.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:39 ntpd[12769]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T20:45:39.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:39 ntpd[12769]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T20:45:39.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:39 ntpd[12769]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T20:45:39.376 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:39 ntpd[12769]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T20:45:39.376 INFO:teuthology.orchestra.run.smithi160.stdout:19 Feb 20:45:39 ntpd[12769]: ntpd: time slew +0.001613 s 2024-02-19T20:45:39.376 INFO:teuthology.orchestra.run.smithi160.stdout:ntpd: time slew +0.001613s 2024-02-19T20:45:39.377 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:39 ntpd[12769]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-19T20:45:39.377 INFO:teuthology.orchestra.run.smithi160.stderr:19 Feb 20:45:39 ntpd[12769]: can't open /var/log/ntpstats/loopstats.20240219: Permission denied 2024-02-19T20:45:39.518 INFO:teuthology.orchestra.run.smithi160.stdout: remote refid st t when poll reach delay offset jitter 2024-02-19T20:45:39.518 INFO:teuthology.orchestra.run.smithi160.stdout:============================================================================== 2024-02-19T20:45:39.518 INFO:teuthology.orchestra.run.smithi160.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T20:45:39.518 INFO:teuthology.orchestra.run.smithi160.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T20:45:39.518 INFO:teuthology.orchestra.run.smithi160.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T20:45:39.518 INFO:teuthology.orchestra.run.smithi160.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T20:45:39.519 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-02-19T20:45:39.528 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-02-19T20:45:39.528 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:45:39.528 DEBUG:teuthology.orchestra.run.smithi155:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T20:45:39.536 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-02-19T20:45:39.536 DEBUG:teuthology.orchestra.run.smithi155:> stat /dev/vg_nvme/lv_1 2024-02-19T20:45:39.586 INFO:teuthology.orchestra.run.smithi155.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-19T20:45:39.586 INFO:teuthology.orchestra.run.smithi155.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T20:45:39.586 INFO:teuthology.orchestra.run.smithi155.stdout:Device: 5h/5d Inode: 493 Links: 1 2024-02-19T20:45:39.586 INFO:teuthology.orchestra.run.smithi155.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T20:45:39.587 INFO:teuthology.orchestra.run.smithi155.stdout:Access: 2024-02-19 20:44:04.567314314 +0000 2024-02-19T20:45:39.587 INFO:teuthology.orchestra.run.smithi155.stdout:Modify: 2024-02-19 20:44:04.307320310 +0000 2024-02-19T20:45:39.587 INFO:teuthology.orchestra.run.smithi155.stdout:Change: 2024-02-19 20:44:04.307320310 +0000 2024-02-19T20:45:39.587 INFO:teuthology.orchestra.run.smithi155.stdout: Birth: - 2024-02-19T20:45:39.587 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-19T20:45:39.641 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records in 2024-02-19T20:45:39.641 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records out 2024-02-19T20:45:39.641 INFO:teuthology.orchestra.run.smithi155.stderr:512 bytes copied, 0.00043975 s, 1.2 MB/s 2024-02-19T20:45:39.642 DEBUG:teuthology.orchestra.run.smithi155:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-19T20:45:39.692 DEBUG:teuthology.orchestra.run.smithi155:> stat /dev/vg_nvme/lv_2 2024-02-19T20:45:39.742 INFO:teuthology.orchestra.run.smithi155.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-19T20:45:39.742 INFO:teuthology.orchestra.run.smithi155.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T20:45:39.742 INFO:teuthology.orchestra.run.smithi155.stdout:Device: 5h/5d Inode: 499 Links: 1 2024-02-19T20:45:39.742 INFO:teuthology.orchestra.run.smithi155.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T20:45:39.742 INFO:teuthology.orchestra.run.smithi155.stdout:Access: 2024-02-19 20:44:05.035303522 +0000 2024-02-19T20:45:39.742 INFO:teuthology.orchestra.run.smithi155.stdout:Modify: 2024-02-19 20:44:04.775309517 +0000 2024-02-19T20:45:39.742 INFO:teuthology.orchestra.run.smithi155.stdout:Change: 2024-02-19 20:44:04.775309517 +0000 2024-02-19T20:45:39.742 INFO:teuthology.orchestra.run.smithi155.stdout: Birth: - 2024-02-19T20:45:39.743 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-19T20:45:39.796 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records in 2024-02-19T20:45:39.796 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records out 2024-02-19T20:45:39.796 INFO:teuthology.orchestra.run.smithi155.stderr:512 bytes copied, 0.000407131 s, 1.3 MB/s 2024-02-19T20:45:39.797 DEBUG:teuthology.orchestra.run.smithi155:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-19T20:45:39.847 DEBUG:teuthology.orchestra.run.smithi155:> stat /dev/vg_nvme/lv_3 2024-02-19T20:45:39.898 INFO:teuthology.orchestra.run.smithi155.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-19T20:45:39.898 INFO:teuthology.orchestra.run.smithi155.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T20:45:39.898 INFO:teuthology.orchestra.run.smithi155.stdout:Device: 5h/5d Inode: 506 Links: 1 2024-02-19T20:45:39.898 INFO:teuthology.orchestra.run.smithi155.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T20:45:39.898 INFO:teuthology.orchestra.run.smithi155.stdout:Access: 2024-02-19 20:44:05.491293006 +0000 2024-02-19T20:45:39.898 INFO:teuthology.orchestra.run.smithi155.stdout:Modify: 2024-02-19 20:44:05.243298725 +0000 2024-02-19T20:45:39.898 INFO:teuthology.orchestra.run.smithi155.stdout:Change: 2024-02-19 20:44:05.243298725 +0000 2024-02-19T20:45:39.898 INFO:teuthology.orchestra.run.smithi155.stdout: Birth: - 2024-02-19T20:45:39.899 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-19T20:45:39.953 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records in 2024-02-19T20:45:39.953 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records out 2024-02-19T20:45:39.954 INFO:teuthology.orchestra.run.smithi155.stderr:512 bytes copied, 0.000424649 s, 1.2 MB/s 2024-02-19T20:45:39.954 DEBUG:teuthology.orchestra.run.smithi155:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-19T20:45:40.007 DEBUG:teuthology.orchestra.run.smithi155:> stat /dev/vg_nvme/lv_4 2024-02-19T20:45:40.058 INFO:teuthology.orchestra.run.smithi155.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-19T20:45:40.058 INFO:teuthology.orchestra.run.smithi155.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T20:45:40.058 INFO:teuthology.orchestra.run.smithi155.stdout:Device: 5h/5d Inode: 514 Links: 1 2024-02-19T20:45:40.058 INFO:teuthology.orchestra.run.smithi155.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T20:45:40.058 INFO:teuthology.orchestra.run.smithi155.stdout:Access: 2024-02-19 20:44:05.731287470 +0000 2024-02-19T20:45:40.058 INFO:teuthology.orchestra.run.smithi155.stdout:Modify: 2024-02-19 20:44:05.727287563 +0000 2024-02-19T20:45:40.058 INFO:teuthology.orchestra.run.smithi155.stdout:Change: 2024-02-19 20:44:05.727287563 +0000 2024-02-19T20:45:40.058 INFO:teuthology.orchestra.run.smithi155.stdout: Birth: - 2024-02-19T20:45:40.058 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-19T20:45:40.111 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records in 2024-02-19T20:45:40.111 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records out 2024-02-19T20:45:40.112 INFO:teuthology.orchestra.run.smithi155.stderr:512 bytes copied, 0.000379359 s, 1.3 MB/s 2024-02-19T20:45:40.113 DEBUG:teuthology.orchestra.run.smithi155:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-19T20:45:40.163 DEBUG:teuthology.orchestra.run.smithi155:> 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-02-19T20:45:40.284 INFO:teuthology.orchestra.run.smithi155.stdout:loop 2024-02-19T20:45:40.286 INFO:tasks.nvme_loop:Connecting nvme_loop smithi155:/dev/vg_nvme/lv_1... 2024-02-19T20:45:40.286 DEBUG:teuthology.orchestra.run.smithi155:> 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-02-19T20:45:40.310 INFO:teuthology.orchestra.run.smithi155.stdout:1 2024-02-19T20:45:40.333 INFO:teuthology.orchestra.run.smithi155.stdout:/dev/vg_nvme/lv_11 2024-02-19T20:45:40.358 INFO:tasks.nvme_loop:Connecting nvme_loop smithi155:/dev/vg_nvme/lv_2... 2024-02-19T20:45:40.358 DEBUG:teuthology.orchestra.run.smithi155:> 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-02-19T20:45:40.421 INFO:teuthology.orchestra.run.smithi155.stdout:1 2024-02-19T20:45:40.449 INFO:teuthology.orchestra.run.smithi155.stdout:/dev/vg_nvme/lv_21 2024-02-19T20:45:40.472 INFO:tasks.nvme_loop:Connecting nvme_loop smithi155:/dev/vg_nvme/lv_3... 2024-02-19T20:45:40.473 DEBUG:teuthology.orchestra.run.smithi155:> 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-02-19T20:45:40.541 INFO:teuthology.orchestra.run.smithi155.stdout:1 2024-02-19T20:45:40.564 INFO:teuthology.orchestra.run.smithi155.stdout:/dev/vg_nvme/lv_31 2024-02-19T20:45:40.590 INFO:tasks.nvme_loop:Connecting nvme_loop smithi155:/dev/vg_nvme/lv_4... 2024-02-19T20:45:40.590 DEBUG:teuthology.orchestra.run.smithi155:> 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-02-19T20:45:40.652 INFO:teuthology.orchestra.run.smithi155.stdout:1 2024-02-19T20:45:40.675 INFO:teuthology.orchestra.run.smithi155.stdout:/dev/vg_nvme/lv_41 2024-02-19T20:45:40.700 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:45:40.700 DEBUG:teuthology.orchestra.run.smithi155:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T20:45:40.749 DEBUG:teuthology.orchestra.run.smithi155:> sudo nvme list 2024-02-19T20:45:40.804 INFO:teuthology.orchestra.run.smithi155.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-19T20:45:40.804 INFO:teuthology.orchestra.run.smithi155.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-19T20:45:40.804 INFO:teuthology.orchestra.run.smithi155.stdout:/dev/nvme0n1 CVFT623300GW400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-02-19T20:45:40.804 INFO:teuthology.orchestra.run.smithi155.stdout:/dev/nvme1n1 1e649400a3ea27aeb8ce Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-19T20:45:40.804 INFO:teuthology.orchestra.run.smithi155.stdout:/dev/nvme2n1 9bdc6ef56d3c0dc6dbd8 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-19T20:45:40.804 INFO:teuthology.orchestra.run.smithi155.stdout:/dev/nvme3n1 4312df8d5d38f62da0df Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-19T20:45:40.805 INFO:teuthology.orchestra.run.smithi155.stdout:/dev/nvme4n1 1e828d04f216a51fbebe Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-19T20:45:40.805 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-19T20:45:40.805 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:45:40.806 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd of=/scratch_devs 2024-02-19T20:45:40.862 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:45:40.862 DEBUG:teuthology.orchestra.run.smithi160:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T20:45:40.869 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-02-19T20:45:40.870 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_1 2024-02-19T20:45:40.918 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-19T20:45:40.919 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T20:45:40.919 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 493 Links: 1 2024-02-19T20:45:40.919 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T20:45:40.919 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-02-19 20:44:06.289110725 +0000 2024-02-19T20:45:40.919 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-02-19 20:44:06.045116351 +0000 2024-02-19T20:45:40.919 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-02-19 20:44:06.045116351 +0000 2024-02-19T20:45:40.919 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: - 2024-02-19T20:45:40.920 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-19T20:45:40.974 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-02-19T20:45:40.974 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-02-19T20:45:40.974 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000445336 s, 1.1 MB/s 2024-02-19T20:45:40.975 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-19T20:45:41.028 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_2 2024-02-19T20:45:41.078 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-19T20:45:41.078 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T20:45:41.078 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 501 Links: 1 2024-02-19T20:45:41.078 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T20:45:41.078 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-02-19 20:44:06.757099933 +0000 2024-02-19T20:45:41.078 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-02-19 20:44:06.505105743 +0000 2024-02-19T20:45:41.078 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-02-19 20:44:06.505105743 +0000 2024-02-19T20:45:41.079 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: - 2024-02-19T20:45:41.079 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-19T20:45:41.134 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-02-19T20:45:41.134 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-02-19T20:45:41.134 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000428504 s, 1.2 MB/s 2024-02-19T20:45:41.135 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-19T20:45:41.188 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_3 2024-02-19T20:45:41.238 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-19T20:45:41.238 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T20:45:41.238 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 507 Links: 1 2024-02-19T20:45:41.238 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T20:45:41.239 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-02-19 20:44:07.229089048 +0000 2024-02-19T20:45:41.239 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-02-19 20:44:06.977094858 +0000 2024-02-19T20:45:41.239 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-02-19 20:44:06.977094858 +0000 2024-02-19T20:45:41.239 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: - 2024-02-19T20:45:41.239 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-19T20:45:41.292 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-02-19T20:45:41.292 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-02-19T20:45:41.292 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000399455 s, 1.3 MB/s 2024-02-19T20:45:41.293 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-19T20:45:41.343 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_4 2024-02-19T20:45:41.394 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-19T20:45:41.394 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T20:45:41.394 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 511 Links: 1 2024-02-19T20:45:41.394 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T20:45:41.394 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-02-19 20:44:07.729077516 +0000 2024-02-19T20:45:41.394 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-02-19 20:44:07.465083604 +0000 2024-02-19T20:45:41.394 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-02-19 20:44:07.465083604 +0000 2024-02-19T20:45:41.394 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: - 2024-02-19T20:45:41.394 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-19T20:45:41.448 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-02-19T20:45:41.448 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-02-19T20:45:41.448 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000335317 s, 1.5 MB/s 2024-02-19T20:45:41.449 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-19T20:45:41.499 DEBUG:teuthology.orchestra.run.smithi160:> 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-02-19T20:45:41.685 INFO:teuthology.orchestra.run.smithi160.stdout:loop 2024-02-19T20:45:41.686 INFO:tasks.nvme_loop:Connecting nvme_loop smithi160:/dev/vg_nvme/lv_1... 2024-02-19T20:45:41.686 DEBUG:teuthology.orchestra.run.smithi160:> 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-02-19T20:45:41.708 INFO:teuthology.orchestra.run.smithi160.stdout:1 2024-02-19T20:45:41.729 INFO:teuthology.orchestra.run.smithi160.stdout:/dev/vg_nvme/lv_11 2024-02-19T20:45:41.753 INFO:tasks.nvme_loop:Connecting nvme_loop smithi160:/dev/vg_nvme/lv_2... 2024-02-19T20:45:41.754 DEBUG:teuthology.orchestra.run.smithi160:> 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-02-19T20:45:41.821 INFO:teuthology.orchestra.run.smithi160.stdout:1 2024-02-19T20:45:41.842 INFO:teuthology.orchestra.run.smithi160.stdout:/dev/vg_nvme/lv_21 2024-02-19T20:45:41.866 INFO:tasks.nvme_loop:Connecting nvme_loop smithi160:/dev/vg_nvme/lv_3... 2024-02-19T20:45:41.867 DEBUG:teuthology.orchestra.run.smithi160:> 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-02-19T20:45:41.937 INFO:teuthology.orchestra.run.smithi160.stdout:1 2024-02-19T20:45:41.963 INFO:teuthology.orchestra.run.smithi160.stdout:/dev/vg_nvme/lv_31 2024-02-19T20:45:41.989 INFO:tasks.nvme_loop:Connecting nvme_loop smithi160:/dev/vg_nvme/lv_4... 2024-02-19T20:45:41.989 DEBUG:teuthology.orchestra.run.smithi160:> 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-02-19T20:45:42.052 INFO:teuthology.orchestra.run.smithi160.stdout:1 2024-02-19T20:45:42.075 INFO:teuthology.orchestra.run.smithi160.stdout:/dev/vg_nvme/lv_41 2024-02-19T20:45:42.097 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:45:42.098 DEBUG:teuthology.orchestra.run.smithi160:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T20:45:42.145 DEBUG:teuthology.orchestra.run.smithi160:> sudo nvme list 2024-02-19T20:45:42.202 INFO:teuthology.orchestra.run.smithi160.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-19T20:45:42.202 INFO:teuthology.orchestra.run.smithi160.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-19T20:45:42.202 INFO:teuthology.orchestra.run.smithi160.stdout:/dev/nvme0n1 CVFT623300JY400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-02-19T20:45:42.202 INFO:teuthology.orchestra.run.smithi160.stdout:/dev/nvme1n1 850e13c30ebfef8b504c Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-19T20:45:42.202 INFO:teuthology.orchestra.run.smithi160.stdout:/dev/nvme2n1 28fe9c813c964ed5f18c Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-19T20:45:42.202 INFO:teuthology.orchestra.run.smithi160.stdout:/dev/nvme3n1 442fad53897200178532 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-19T20:45:42.202 INFO:teuthology.orchestra.run.smithi160.stdout:/dev/nvme4n1 4fe3c76216705387b50f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-19T20:45:42.203 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-19T20:45:42.204 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:45:42.204 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/scratch_devs 2024-02-19T20:45:42.263 INFO:teuthology.run_tasks:Running task cephadm... 2024-02-19T20:45:42.332 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': '81bd20d634209c7cb82c18be12b4b5a05643ebf1'} 2024-02-19T20:45:42.332 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 2024-02-19T20:45:42.333 INFO:tasks.cephadm:Cluster fsid is d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:45:42.333 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-02-19T20:45:42.333 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-02-19T20:45:42.333 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi155': '172.21.15.155', 'mon.smithi160': '172.21.15.160'} 2024-02-19T20:45:42.333 INFO:tasks.cephadm:Normalizing hostnames... 2024-02-19T20:45:42.334 DEBUG:teuthology.orchestra.run.smithi155:> sudo hostname $(hostname -s) 2024-02-19T20:45:42.351 DEBUG:teuthology.orchestra.run.smithi160:> sudo hostname $(hostname -s) 2024-02-19T20:45:42.367 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref 81bd20d634209c7cb82c18be12b4b5a05643ebf1)... 2024-02-19T20:45:42.367 DEBUG:teuthology.orchestra.run.smithi155:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/81bd20d634209c7cb82c18be12b4b5a05643ebf1/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-02-19T20:45:42.550 INFO:teuthology.orchestra.run.smithi155.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 19 20:45 /home/ubuntu/cephtest/cephadm 2024-02-19T20:45:42.550 DEBUG:teuthology.orchestra.run.smithi160:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/81bd20d634209c7cb82c18be12b4b5a05643ebf1/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-02-19T20:45:42.752 INFO:teuthology.orchestra.run.smithi160.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 19 20:45 /home/ubuntu/cephtest/cephadm 2024-02-19T20:45:42.753 DEBUG:teuthology.orchestra.run.smithi155:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-19T20:45:42.762 DEBUG:teuthology.orchestra.run.smithi160:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-19T20:45:42.778 DEBUG:teuthology.orchestra.run.smithi155:> sudo mkdir -p /etc/ceph 2024-02-19T20:45:42.818 DEBUG:teuthology.orchestra.run.smithi160:> sudo mkdir -p /etc/ceph 2024-02-19T20:45:42.834 DEBUG:teuthology.orchestra.run.smithi155:> sudo chmod 777 /etc/ceph 2024-02-19T20:45:42.878 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod 777 /etc/ceph 2024-02-19T20:45:42.893 INFO:tasks.cephadm:Writing seed config... 2024-02-19T20:45:42.894 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-02-19T20:45:42.894 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-02-19T20:45:42.894 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-02-19T20:45:42.894 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-02-19T20:45:42.894 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-02-19T20:45:42.894 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-02-19T20:45:42.894 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-02-19T20:45:42.895 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-02-19T20:45:42.895 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:45:42.895 DEBUG:teuthology.orchestra.run.smithi155:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-02-19T20:45:42.925 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 ruleset-failure-domain=osd 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 = d8f13c04-cf67-11ee-95bb-87774f69a715 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 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-02-19T20:45:42.925 DEBUG:teuthology.orchestra.run.smithi155:mon.smithi155> sudo journalctl -f -n 0 -u ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mon.smithi155.service 2024-02-19T20:45:42.968 INFO:tasks.cephadm:Bootstrapping... 2024-02-19T20:45:42.968 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 -v bootstrap --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.155 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-02-19T20:45:43.219 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-02-19T20:45:43.391 INFO:teuthology.orchestra.run.smithi155.stderr:-------------------------------------------------------------------------------- 2024-02-19T20:45:43.391 INFO:teuthology.orchestra.run.smithi155.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1', '-v', 'bootstrap', '--fsid', 'd8f13c04-cf67-11ee-95bb-87774f69a715', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-ip', '172.21.15.155', '--skip-admin-label'] 2024-02-19T20:45:43.391 INFO:teuthology.orchestra.run.smithi155.stderr:Verifying podman|docker is present... 2024-02-19T20:45:43.391 INFO:teuthology.orchestra.run.smithi155.stderr:Verifying lvm2 is present... 2024-02-19T20:45:43.392 INFO:teuthology.orchestra.run.smithi155.stderr:Verifying time synchronization is in place... 2024-02-19T20:45:43.399 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-19T20:45:43.405 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: inactive 2024-02-19T20:45:43.412 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-19T20:45:43.418 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: inactive 2024-02-19T20:45:43.424 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: masked 2024-02-19T20:45:43.430 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: inactive 2024-02-19T20:45:43.436 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-19T20:45:43.442 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: inactive 2024-02-19T20:45:43.450 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: enabled 2024-02-19T20:45:43.457 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: active 2024-02-19T20:45:43.458 INFO:teuthology.orchestra.run.smithi155.stderr:Unit ntp.service is enabled and running 2024-02-19T20:45:43.458 INFO:teuthology.orchestra.run.smithi155.stderr:Repeating the final host check... 2024-02-19T20:45:43.458 INFO:teuthology.orchestra.run.smithi155.stderr:docker (/usr/bin/docker) is present 2024-02-19T20:45:43.458 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl is present 2024-02-19T20:45:43.458 INFO:teuthology.orchestra.run.smithi155.stderr:lvcreate is present 2024-02-19T20:45:43.465 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-19T20:45:43.471 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: inactive 2024-02-19T20:45:43.477 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-19T20:45:43.484 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: inactive 2024-02-19T20:45:43.491 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: masked 2024-02-19T20:45:43.497 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: inactive 2024-02-19T20:45:43.504 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-19T20:45:43.510 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: inactive 2024-02-19T20:45:43.518 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: enabled 2024-02-19T20:45:43.524 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: active 2024-02-19T20:45:43.526 INFO:teuthology.orchestra.run.smithi155.stderr:Unit ntp.service is enabled and running 2024-02-19T20:45:43.526 INFO:teuthology.orchestra.run.smithi155.stderr:Host looks OK 2024-02-19T20:45:43.526 INFO:teuthology.orchestra.run.smithi155.stderr:Cluster fsid: d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:45:43.526 INFO:teuthology.orchestra.run.smithi155.stderr:Acquiring lock 139780076030368 on /run/cephadm/d8f13c04-cf67-11ee-95bb-87774f69a715.lock 2024-02-19T20:45:43.526 INFO:teuthology.orchestra.run.smithi155.stderr:Lock 139780076030368 acquired on /run/cephadm/d8f13c04-cf67-11ee-95bb-87774f69a715.lock 2024-02-19T20:45:43.527 INFO:teuthology.orchestra.run.smithi155.stderr:Verifying IP 172.21.15.155 port 3300 ... 2024-02-19T20:45:43.527 INFO:teuthology.orchestra.run.smithi155.stderr:Verifying IP 172.21.15.155 port 6789 ... 2024-02-19T20:45:43.527 INFO:teuthology.orchestra.run.smithi155.stderr:Base mon IP(s) is [172.21.15.155:3300, 172.21.15.155:6789], mon addrv is [v2:172.21.15.155:3300,v1:172.21.15.155:6789] 2024-02-19T20:45:43.532 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: default via 172.21.15.254 dev enp3s0f1 2024-02-19T20:45:43.533 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.155 metric 100 2024-02-19T20:45:43.533 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-19T20:45:43.533 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.155 2024-02-19T20:45:43.533 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.155 metric 100 2024-02-19T20:45:43.537 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: ::1 dev lo proto kernel metric 256 pref medium 2024-02-19T20:45:43.537 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-02-19T20:45:43.538 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1793sec pref medium 2024-02-19T20:45:43.542 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-02-19T20:45:43.542 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: inet6 ::1/128 scope host 2024-02-19T20:45:43.543 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: valid_lft forever preferred_lft forever 2024-02-19T20:45:43.543 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-02-19T20:45:43.543 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: inet6 fe80::ec4:7aff:fe88:6ded/64 scope link 2024-02-19T20:45:43.543 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/sbin/ip: valid_lft forever preferred_lft forever 2024-02-19T20:45:43.546 INFO:teuthology.orchestra.run.smithi155.stderr:Mon IP `172.21.15.155` is in CIDR network `172.21.0.0/20` 2024-02-19T20:45:43.546 INFO:teuthology.orchestra.run.smithi155.stderr:Mon IP `172.21.15.155` is in CIDR network `172.21.0.0/20` 2024-02-19T20:45:43.546 INFO:teuthology.orchestra.run.smithi155.stderr:Mon IP `172.21.15.155` is in CIDR network `172.21.15.254/32` 2024-02-19T20:45:43.547 INFO:teuthology.orchestra.run.smithi155.stderr:Mon IP `172.21.15.155` is in CIDR network `172.21.15.254/32` 2024-02-19T20:45:43.547 INFO:teuthology.orchestra.run.smithi155.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.15.254/32', '172.21.15.254/32'] 2024-02-19T20:45:43.547 INFO:teuthology.orchestra.run.smithi155.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-02-19T20:45:43.548 INFO:teuthology.orchestra.run.smithi155.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1... 2024-02-19T20:45:43.964 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: 81bd20d634209c7cb82c18be12b4b5a05643ebf1: Pulling from ceph-ci/ceph 2024-02-19T20:45:43.964 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: 0f642e61a11a: Pulling fs layer 2024-02-19T20:45:43.964 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: ec93555fb25f: Pulling fs layer 2024-02-19T20:45:51.168 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: 0f642e61a11a: Verifying Checksum 2024-02-19T20:45:51.168 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: 0f642e61a11a: Download complete 2024-02-19T20:45:54.785 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: 0f642e61a11a: Pull complete 2024-02-19T20:46:10.767 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: ec93555fb25f: Verifying Checksum 2024-02-19T20:46:10.767 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: ec93555fb25f: Download complete 2024-02-19T20:46:22.853 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: ec93555fb25f: Pull complete 2024-02-19T20:46:22.990 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: Digest: sha256:7fa249cc0191869e2bcc743303b0da933d04d152b2397edb19ec992e48553ab9 2024-02-19T20:46:23.037 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: Status: Downloaded newer image for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 2024-02-19T20:46:23.073 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/docker: quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 2024-02-19T20:46:35.349 INFO:teuthology.orchestra.run.smithi155.stderr:ceph: ceph version 16.2.14-548-g81bd20d6 (81bd20d634209c7cb82c18be12b4b5a05643ebf1) pacific (stable) 2024-02-19T20:46:35.896 INFO:teuthology.orchestra.run.smithi155.stderr:Ceph version: ceph version 16.2.14-548-g81bd20d6 (81bd20d634209c7cb82c18be12b4b5a05643ebf1) pacific (stable) 2024-02-19T20:46:35.896 INFO:teuthology.orchestra.run.smithi155.stderr:Extracting ceph user uid/gid from container image... 2024-02-19T20:46:36.609 INFO:teuthology.orchestra.run.smithi155.stderr:stat: 167 167 2024-02-19T20:46:37.222 INFO:teuthology.orchestra.run.smithi155.stderr:Creating initial keys... 2024-02-19T20:46:37.940 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-authtool: AQAtvtNlGRAPORAAPjUCOK4bgS7OCpkMyw7dsQ== 2024-02-19T20:46:39.287 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-authtool: AQAvvtNl81gfEhAAHyG936mfTaEgUF7Odjs8AA== 2024-02-19T20:46:40.511 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-authtool: AQAwvtNlZ+x6HxAAf65OTPPObVfRhGZIAdxf1A== 2024-02-19T20:46:41.096 INFO:teuthology.orchestra.run.smithi155.stderr:Creating initial monmap... 2024-02-19T20:46:41.880 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-19T20:46:41.881 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:46:41.881 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-19T20:46:42.450 INFO:teuthology.orchestra.run.smithi155.stderr:monmaptool for smithi155 [v2:172.21.15.155:3300,v1:172.21.15.155:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-19T20:46:42.451 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/monmaptool: set fsid to d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:46:42.451 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-19T20:46:42.451 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:46:42.451 INFO:teuthology.orchestra.run.smithi155.stderr:Creating mon... 2024-02-19T20:46:43.243 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-19T20:46:43.243 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 1 imported monmap: 2024-02-19T20:46:43.243 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: epoch 0 2024-02-19T20:46:43.243 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: fsid d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:46:43.243 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: last_changed 2024-02-19T20:46:41.897688+0000 2024-02-19T20:46:43.243 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: created 2024-02-19T20:46:41.897688+0000 2024-02-19T20:46:43.243 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2024-02-19T20:46:43.243 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: election_strategy: 1 2024-02-19T20:46:43.244 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.155:3300/0,v1:172.21.15.155:6789/0] mon.smithi155 2024-02-19T20:46:43.244 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.268 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 0 /usr/bin/ceph-mon: set fsid to d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:46:43.268 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: RocksDB version: 6.8.1 2024-02-19T20:46:43.268 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.268 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-19T20:46:43.268 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Compile date Feb 17 2024 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: DB SUMMARY 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi155/store.db dir, Total Num: 0, files: 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi155/store.db: 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.error_if_exists: 0 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.create_if_missing: 1 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.paranoid_checks: 1 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.env: 0x55e726a26080 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.fs: Posix File System 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.info_log: 0x55e728c87300 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-19T20:46:43.269 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.statistics: (nil) 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.use_fsync: 0 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.max_log_file_size: 0 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.allow_fallocate: 1 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.use_direct_reads: 0 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.db_log_dir: 2024-02-19T20:46:43.270 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi155/store.db 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.max_subcompactions: 1 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.max_background_flushes: -1 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.write_buffer_manager: 0x55e728c8d950 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-19T20:46:43.271 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.unordered_write: 0 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.row_cache: None 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.wal_filter: None 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-19T20:46:43.272 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.preserve_deletes: 0 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.two_write_queues: 0 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.atomic_flush: 0 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.log_readahead_size: 0 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.max_background_jobs: 2 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.max_background_compactions: -1 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-19T20:46:43.273 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.max_open_files: -1 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Compression algorithms supported: 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: kZSTD supported: 0 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: kXpressCompression supported: 0 2024-02-19T20:46:43.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: kLZ4Compression supported: 1 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: kBZip2Compression supported: 0 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: kZlibCompression supported: 1 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: kSnappyCompression supported: 1 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.256+0000 7f6953fd7880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi155/store.db/MANIFEST-000001 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.merge_operator: 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_filter: None 2024-02-19T20:46:43.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55e728b9bd18) 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: index_type: 0 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: index_shortening: 1 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2024-02-19T20:46:43.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: checksum: 1 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: block_cache: 0x55e728bd2d10 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: block_cache_options: 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: capacity : 536870912 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: block_size: 4096 2024-02-19T20:46:43.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: partition_filters: 0 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: verify_compression: 0 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: format_version: 2 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: block_align: 0 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.278 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compression: NoCompression 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.num_levels: 7 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-19T20:46:43.279 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-19T20:46:43.280 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-19T20:46:43.281 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.table_properties_collectors: 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.inplace_update_support: 0 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.bloom_locality: 0 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.max_successive_merges: 0 2024-02-19T20:46:43.282 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.ttl: 2592000 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi155/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-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.260+0000 7f6953fd7880 4 rocksdb: DB pointer 0x55e728c9b800 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.264+0000 7f693ce4a700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.264+0000 7f693ce4a700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2024-02-19T20:46:43.283 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 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 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 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 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 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 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.284 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 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 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 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-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.285 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 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 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 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 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 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 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 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 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T20:46:43.286 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 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-02-19T20:46:43.287 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.287 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-19T20:46:43.287 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: 2024-02-19T20:46:43.287 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.264+0000 7f6953fd7880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2024-02-19T20:46:43.287 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.264+0000 7f6953fd7880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2024-02-19T20:46:43.287 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph-mon: debug 2024-02-19T20:46:43.264+0000 7f6953fd7880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi155 for mon.smithi155 2024-02-19T20:46:43.840 INFO:teuthology.orchestra.run.smithi155.stderr:create mon.smithi155 on 2024-02-19T20:46:44.068 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-02-19T20:46:44.243 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-d8f13c04-cf67-11ee-95bb-87774f69a715.target -> /etc/systemd/system/ceph-d8f13c04-cf67-11ee-95bb-87774f69a715.target. 2024-02-19T20:46:44.243 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-d8f13c04-cf67-11ee-95bb-87774f69a715.target -> /etc/systemd/system/ceph-d8f13c04-cf67-11ee-95bb-87774f69a715.target. 2024-02-19T20:46:44.642 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Failed to reset failed state of unit ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mon.smithi155.service: Unit ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mon.smithi155.service not loaded. 2024-02-19T20:46:44.651 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Created symlink /etc/systemd/system/ceph-d8f13c04-cf67-11ee-95bb-87774f69a715.target.wants/ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mon.smithi155.service -> /etc/systemd/system/ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@.service. 2024-02-19T20:46:44.840 INFO:teuthology.orchestra.run.smithi155.stderr:firewalld does not appear to be present 2024-02-19T20:46:44.848 INFO:teuthology.orchestra.run.smithi155.stderr:Not possible to enable service . firewalld.service is not available 2024-02-19T20:46:44.848 INFO:teuthology.orchestra.run.smithi155.stderr:Waiting for mon to start... 2024-02-19T20:46:44.848 INFO:teuthology.orchestra.run.smithi155.stderr:Waiting for mon... 2024-02-19T20:46:46.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:46 smithi155 bash[13723]: cluster 2024-02-19T20:46:46.025579+0000 mon.smithi155 (mon.0) 1 : cluster [INF] mon.smithi155 is new leader, mons smithi155 in quorum (ranks 0) 2024-02-19T20:46:46.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: cluster: 2024-02-19T20:46:46.274 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: id: d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:46:46.275 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: health: HEALTH_OK 2024-02-19T20:46:46.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:46:46.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: services: 2024-02-19T20:46:46.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi155 (age 0.255478s) 2024-02-19T20:46:46.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mgr: no daemons active 2024-02-19T20:46:46.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2024-02-19T20:46:46.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:46:46.276 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: data: 2024-02-19T20:46:46.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2024-02-19T20:46:46.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2024-02-19T20:46:46.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2024-02-19T20:46:46.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: pgs: 2024-02-19T20:46:46.277 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:46:46.908 INFO:teuthology.orchestra.run.smithi155.stderr:mon is available 2024-02-19T20:46:46.908 INFO:teuthology.orchestra.run.smithi155.stderr:Assimilating anything we can from ceph.conf... 2024-02-19T20:46:47.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:47 smithi155 bash[13723]: cluster 2024-02-19T20:46:46.035674+0000 mon.smithi155 (mon.0) 2 : cluster [INF] mon.smithi155 is new leader, mons smithi155 in quorum (ranks 0) 2024-02-19T20:46:47.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:47 smithi155 bash[13723]: cluster 2024-02-19T20:46:46.037760+0000 mon.smithi155 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi155=[v2:172.21.15.155:3300/0,v1:172.21.15.155:6789/0]} removed_ranks: {} 2024-02-19T20:46:47.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:47 smithi155 bash[13723]: cluster 2024-02-19T20:46:46.046440+0000 mon.smithi155 (mon.0) 4 : cluster [DBG] fsmap 2024-02-19T20:46:47.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:47 smithi155 bash[13723]: cluster 2024-02-19T20:46:46.057269+0000 mon.smithi155 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-19T20:46:47.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:47 smithi155 bash[13723]: cluster 2024-02-19T20:46:46.059131+0000 mon.smithi155 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-02-19T20:46:47.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:47 smithi155 bash[13723]: audit 2024-02-19T20:46:46.291075+0000 mon.smithi155 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.155:0/2454187039' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-02-19T20:46:47.920 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:46:47.920 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: [global] 2024-02-19T20:46:47.920 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: fsid = d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:46:47.920 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: log_to_journald = false 2024-02-19T20:46:47.920 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.155:3300,v1:172.21.15.155:6789] 2024-02-19T20:46:47.920 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-19T20:46:47.922 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-19T20:46:47.922 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-19T20:46:47.922 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-19T20:46:47.922 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:46:47.922 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: [mgr] 2024-02-19T20:46:47.922 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-19T20:46:47.922 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:46:47.922 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: [osd] 2024-02-19T20:46:47.922 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-19T20:46:47.922 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-19T20:46:48.246 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:48 smithi155 bash[13723]: audit 2024-02-19T20:46:47.930233+0000 mon.smithi155 (mon.0) 8 : audit [INF] from='client.? 172.21.15.155:0/3558529862' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-19T20:46:48.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:48 smithi155 bash[13723]: audit 2024-02-19T20:46:47.936280+0000 mon.smithi155 (mon.0) 9 : audit [INF] from='client.? 172.21.15.155:0/3558529862' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-02-19T20:46:48.505 INFO:teuthology.orchestra.run.smithi155.stderr:Generating new minimal ceph.conf... 2024-02-19T20:46:49.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:49 smithi155 bash[13723]: audit 2024-02-19T20:46:49.542026+0000 mon.smithi155 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.155:0/1080179608' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:46:50.110 INFO:teuthology.orchestra.run.smithi155.stderr:Restarting the monitor... 2024-02-19T20:46:50.397 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:50 smithi155 systemd[1]: Stopping Ceph mon.smithi155 for d8f13c04-cf67-11ee-95bb-87774f69a715... 2024-02-19T20:46:50.397 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:50 smithi155 bash[14111]: Error response from daemon: No such container: ceph-d8f13c04-cf67-11ee-95bb-87774f69a715-mon.smithi155 2024-02-19T20:46:50.398 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:50 smithi155 bash[13723]: debug 2024-02-19T20:46:50.316+0000 7f8f4345e700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi155 -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-02-19T20:46:50.398 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:50 smithi155 bash[13723]: debug 2024-02-19T20:46:50.316+0000 7f8f4345e700 -1 mon.smithi155@0(leader) e1 *** Got Signal Terminated *** 2024-02-19T20:46:50.923 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:50 smithi155 bash[14146]: ceph-d8f13c04-cf67-11ee-95bb-87774f69a715-mon-smithi155 2024-02-19T20:46:50.945 INFO:teuthology.orchestra.run.smithi155.stderr:Setting public_network to 172.21.15.254/32,172.21.0.0/20 in mon config section 2024-02-19T20:46:51.100 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:50 smithi155 bash[14211]: Error response from daemon: No such container: ceph-d8f13c04-cf67-11ee-95bb-87774f69a715-mon-smithi155 2024-02-19T20:46:51.100 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:50 smithi155 systemd[1]: ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mon.smithi155.service: Succeeded. 2024-02-19T20:46:51.100 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:50 smithi155 systemd[1]: Stopped Ceph mon.smithi155 for d8f13c04-cf67-11ee-95bb-87774f69a715. 2024-02-19T20:46:51.100 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:50 smithi155 systemd[1]: Started Ceph mon.smithi155 for d8f13c04-cf67-11ee-95bb-87774f69a715. 2024-02-19T20:46:52.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.012+0000 7f9fff2b7880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-19T20:46:52.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.012+0000 7f9fff2b7880 0 ceph version 16.2.14-548-g81bd20d6 (81bd20d634209c7cb82c18be12b4b5a05643ebf1) pacific (stable), process ceph-mon, pid 7 2024-02-19T20:46:52.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.012+0000 7f9fff2b7880 0 pidfile_write: ignore empty --pid-file 2024-02-19T20:46:52.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 0 load: jerasure load: lrc load: isa 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: RocksDB version: 6.8.1 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Compile date Feb 17 2024 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: DB SUMMARY 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: CURRENT file: CURRENT 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi155/store.db dir, Total Num: 1, files: 000004.sst 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi155/store.db: 000006.log size: 87083 ; 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.error_if_exists: 0 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.create_if_missing: 0 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.paranoid_checks: 1 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.env: 0x55d563826080 2024-02-19T20:46:52.248 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.fs: Posix File System 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.info_log: 0x55d5651ae560 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.statistics: (nil) 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.use_fsync: 0 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_log_file_size: 0 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.allow_fallocate: 1 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.use_direct_reads: 0 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-19T20:46:52.249 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.db_log_dir: 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi155/store.db 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_subcompactions: 1 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_background_flushes: -1 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.write_buffer_manager: 0x55d565ea23f0 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-19T20:46:52.250 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-19T20:46:52.251 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-19T20:46:52.251 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-19T20:46:52.251 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-19T20:46:52.251 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-19T20:46:52.251 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-19T20:46:52.251 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-19T20:46:52.252 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-19T20:46:52.252 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.unordered_write: 0 2024-02-19T20:46:52.252 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-19T20:46:52.252 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.row_cache: None 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.wal_filter: None 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.preserve_deletes: 0 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.two_write_queues: 0 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.atomic_flush: 0 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-19T20:46:52.253 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.log_readahead_size: 0 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_background_jobs: 2 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_background_compactions: -1 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_open_files: -1 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-19T20:46:52.254 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Compression algorithms supported: 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: kZSTD supported: 0 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: kXpressCompression supported: 0 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: kLZ4Compression supported: 1 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: kBZip2Compression supported: 0 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: kZlibCompression supported: 1 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: kSnappyCompression supported: 1 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi155/store.db/MANIFEST-000005 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-19T20:46:52.255 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.merge_operator: 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_filter: None 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55d565151d10) 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: cache_index_and_filter_blocks: 1 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: pin_top_level_index_and_filter: 1 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: index_type: 0 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: data_block_index_type: 0 2024-02-19T20:46:52.256 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: index_shortening: 1 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: data_block_hash_table_util_ratio: 0.750000 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: hash_index_allow_collision: 1 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: checksum: 1 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: no_block_cache: 0 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: block_cache: 0x55d565188f10 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: block_cache_name: BinnedLRUCache 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: block_cache_options: 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: capacity : 536870912 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: num_shard_bits : 4 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: strict_capacity_limit : 0 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: high_pri_pool_ratio: 0.000 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: block_cache_compressed: (nil) 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: persistent_cache: (nil) 2024-02-19T20:46:52.257 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: block_size: 4096 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: block_size_deviation: 10 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: block_restart_interval: 16 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: index_block_restart_interval: 1 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: metadata_block_size: 4096 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: partition_filters: 0 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: use_delta_encoding: 1 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: whole_key_filtering: 1 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: verify_compression: 0 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: read_amp_bytes_per_bit: 0 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: format_version: 2 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: enable_index_compression: 1 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: block_align: 0 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-19T20:46:52.258 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compression: NoCompression 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.num_levels: 7 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-19T20:46:52.259 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-19T20:46:52.260 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-19T20:46:52.261 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-19T20:46:52.262 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.table_properties_collectors: 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.inplace_update_support: 0 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.bloom_locality: 0 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.max_successive_merges: 0 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.ttl: 2592000 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-19T20:46:52.263 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi155/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 5, log_number is 4,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708375612019916, "job": 1, "event": "recovery_started", "log_files": [6]} 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.016+0000 7f9fff2b7880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.020+0000 7f9fff2b7880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708375612021099, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83792, "table_properties": {"data_size": 82059, "index_size": 338, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 0, "filter_size": 581, "raw_key_size": 9462, "raw_average_key_size": 47, "raw_value_size": 76614, "raw_average_value_size": 383, "num_data_blocks": 11, "num_entries": 200, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1708375612, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.020+0000 7f9fff2b7880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.020+0000 7f9fff2b7880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708375612021652, "job": 1, "event": "recovery_finished"} 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.020+0000 7f9fff2b7880 4 rocksdb: DB pointer 0x55d565251800 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.020+0000 7f9fe60a9700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.020+0000 7f9fe60a9700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ** DB Stats ** 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T20:46:52.264 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ** Compaction Stats [default] ** 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: 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 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: L0 2/0 83.52 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 97.0 0.00 0.00 1 0.001 0 0 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Sum 2/0 83.52 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 97.0 0.00 0.00 1 0.001 0 0 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 97.0 0.00 0.00 1 0.001 0 0 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ** Compaction Stats [default] ** 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: 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 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T20:46:52.265 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 97.0 0.00 0.00 1 0.001 0 0 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: AddFile(Total Files): cumulative 0, interval 0 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: AddFile(Keys): cumulative 0, interval 0 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Cumulative compaction: 0.00 GB write, 20.66 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Interval compaction: 0.00 GB write, 20.66 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: 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-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ** File Read Latency Histogram By Level [default] ** 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ** Compaction Stats [default] ** 2024-02-19T20:46:52.266 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: 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 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: L0 2/0 83.52 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 97.0 0.00 0.00 1 0.001 0 0 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Sum 2/0 83.52 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 97.0 0.00 0.00 1 0.001 0 0 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: 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 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ** Compaction Stats [default] ** 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: 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 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 97.0 0.00 0.00 1 0.001 0 0 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: AddFile(Total Files): cumulative 0, interval 0 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: AddFile(Keys): cumulative 0, interval 0 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Cumulative compaction: 0.00 GB write, 20.40 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T20:46:52.267 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: 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-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: ** File Read Latency Histogram By Level [default] ** 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.020+0000 7f9fff2b7880 0 starting mon.smithi155 rank 0 at public addrs [v2:172.21.15.155:3300/0,v1:172.21.15.155:6789/0] at bind addrs [v2:172.21.15.155:3300/0,v1:172.21.15.155:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi155 fsid d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.024+0000 7f9fff2b7880 1 mon.smithi155@-1(???) e1 preinit fsid d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.024+0000 7f9fff2b7880 0 mon.smithi155@-1(???).mds e1 new map 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.024+0000 7f9fff2b7880 0 mon.smithi155@-1(???).mds e1 print_map 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: e1 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: 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} 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: legacy client fscid: -1 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: No filesystems configured 2024-02-19T20:46:52.268 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.024+0000 7f9fff2b7880 0 mon.smithi155@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-19T20:46:52.269 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.024+0000 7f9fff2b7880 0 mon.smithi155@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-19T20:46:52.269 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.024+0000 7f9fff2b7880 0 mon.smithi155@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-19T20:46:52.269 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.024+0000 7f9fff2b7880 0 mon.smithi155@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-19T20:46:52.269 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: audit 2024-02-19T20:46:49.542026+0000 mon.smithi155 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.155:0/1080179608' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:46:52.269 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: debug 2024-02-19T20:46:52.024+0000 7f9fff2b7880 1 mon.smithi155@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-02-19T20:46:52.269 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: cluster 2024-02-19T20:46:52.049628+0000 mon.smithi155 (mon.0) 1 : cluster [INF] mon.smithi155 is new leader, mons smithi155 in quorum (ranks 0) 2024-02-19T20:46:52.269 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: cluster 2024-02-19T20:46:52.049746+0000 mon.smithi155 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi155=[v2:172.21.15.155:3300/0,v1:172.21.15.155:6789/0]} removed_ranks: {} 2024-02-19T20:46:52.269 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: cluster 2024-02-19T20:46:52.050734+0000 mon.smithi155 (mon.0) 3 : cluster [DBG] fsmap 2024-02-19T20:46:52.269 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: cluster 2024-02-19T20:46:52.050805+0000 mon.smithi155 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-19T20:46:52.269 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:52 smithi155 bash[14250]: cluster 2024-02-19T20:46:52.051621+0000 mon.smithi155 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-02-19T20:46:52.860 INFO:teuthology.orchestra.run.smithi155.stderr:Wrote config to /etc/ceph/ceph.conf 2024-02-19T20:46:52.861 INFO:teuthology.orchestra.run.smithi155.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-02-19T20:46:52.861 INFO:teuthology.orchestra.run.smithi155.stderr:Creating mgr... 2024-02-19T20:46:52.861 INFO:teuthology.orchestra.run.smithi155.stderr:Verifying port 9283 ... 2024-02-19T20:46:53.089 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Failed to reset failed state of unit ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mgr.smithi155.pwytll.service: Unit ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mgr.smithi155.pwytll.service not loaded. 2024-02-19T20:46:53.096 INFO:teuthology.orchestra.run.smithi155.stderr:systemctl: Created symlink /etc/systemd/system/ceph-d8f13c04-cf67-11ee-95bb-87774f69a715.target.wants/ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mgr.smithi155.pwytll.service -> /etc/systemd/system/ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@.service. 2024-02-19T20:46:53.291 INFO:teuthology.orchestra.run.smithi155.stderr:firewalld does not appear to be present 2024-02-19T20:46:53.291 INFO:teuthology.orchestra.run.smithi155.stderr:Not possible to enable service . firewalld.service is not available 2024-02-19T20:46:53.291 INFO:teuthology.orchestra.run.smithi155.stderr:firewalld does not appear to be present 2024-02-19T20:46:53.291 INFO:teuthology.orchestra.run.smithi155.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2024-02-19T20:46:53.291 INFO:teuthology.orchestra.run.smithi155.stderr:Waiting for mgr to start... 2024-02-19T20:46:53.291 INFO:teuthology.orchestra.run.smithi155.stderr:Waiting for mgr... 2024-02-19T20:46:53.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:53 smithi155 bash[14250]: audit 2024-02-19T20:46:52.278161+0000 mon.smithi155 (mon.0) 6 : audit [INF] from='client.? 172.21.15.155:0/93154628' entity='client.admin' 2024-02-19T20:46:54.846 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:46:54.846 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: { 2024-02-19T20:46:54.846 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "fsid": "d8f13c04-cf67-11ee-95bb-87774f69a715", 2024-02-19T20:46:54.846 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "health": { 2024-02-19T20:46:54.846 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-19T20:46:54.846 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "checks": {}, 2024-02-19T20:46:54.846 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "mutes": [] 2024-02-19T20:46:54.848 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:54.848 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "quorum": [ 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 0 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: ], 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "smithi155" 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: ], 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "quorum_age": 2, 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "monmap": { 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "osdmap": { 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:46:54.849 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-19T20:46:54.850 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-19T20:46:54.850 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-19T20:46:54.850 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-19T20:46:54.853 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-19T20:46:54.853 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-19T20:46:54.853 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:54.853 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "pgmap": { 2024-02-19T20:46:54.853 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-19T20:46:54.853 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-19T20:46:54.853 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "fsmap": { 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "available": false, 2024-02-19T20:46:54.854 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "modules": [ 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "iostat", 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "nfs", 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "restful" 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: ], 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "services": {} 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "servicemap": { 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "modified": "2024-02-19T20:46:46.041128+0000", 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "services": {} 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-19T20:46:54.855 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: } 2024-02-19T20:46:54.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:54 smithi155 bash[14250]: audit 2024-02-19T20:46:54.861614+0000 mon.smithi155 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.155:0/3380618378' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-19T20:46:55.466 INFO:teuthology.orchestra.run.smithi155.stderr:mgr not available, waiting (1/15)... 2024-02-19T20:46:58.550 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:46:58.551 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: { 2024-02-19T20:46:58.551 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "fsid": "d8f13c04-cf67-11ee-95bb-87774f69a715", 2024-02-19T20:46:58.551 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "health": { 2024-02-19T20:46:58.551 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-19T20:46:58.552 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "checks": {}, 2024-02-19T20:46:58.552 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "mutes": [] 2024-02-19T20:46:58.552 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:58.552 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-19T20:46:58.552 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "quorum": [ 2024-02-19T20:46:58.553 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 0 2024-02-19T20:46:58.553 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: ], 2024-02-19T20:46:58.553 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-19T20:46:58.553 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "smithi155" 2024-02-19T20:46:58.554 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: ], 2024-02-19T20:46:58.554 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "quorum_age": 6, 2024-02-19T20:46:58.554 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "monmap": { 2024-02-19T20:46:58.554 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:46:58.554 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-19T20:46:58.554 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-19T20:46:58.554 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:58.554 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "osdmap": { 2024-02-19T20:46:58.555 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:46:58.558 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-19T20:46:58.558 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-19T20:46:58.558 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "pgmap": { 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "fsmap": { 2024-02-19T20:46:58.559 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "available": false, 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "modules": [ 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "iostat", 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "nfs", 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "restful" 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: ], 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "services": {} 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:58.560 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "servicemap": { 2024-02-19T20:46:58.561 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:46:58.561 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "modified": "2024-02-19T20:46:46.041128+0000", 2024-02-19T20:46:58.561 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "services": {} 2024-02-19T20:46:58.561 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:46:58.561 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-19T20:46:58.561 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: } 2024-02-19T20:46:58.999 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:46:58 smithi155 bash[14250]: audit 2024-02-19T20:46:58.566540+0000 mon.smithi155 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.155:0/3684790136' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-19T20:46:59.213 INFO:teuthology.orchestra.run.smithi155.stderr:mgr not available, waiting (2/15)... 2024-02-19T20:47:01.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:01 smithi155 bash[14250]: cluster 2024-02-19T20:47:01.078933+0000 mon.smithi155 (mon.0) 9 : cluster [INF] Activating manager daemon smithi155.pwytll 2024-02-19T20:47:01.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:01 smithi155 bash[14250]: cluster 2024-02-19T20:47:01.084858+0000 mon.smithi155 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi155.pwytll(active, starting, since 0.00618804s) 2024-02-19T20:47:01.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:01 smithi155 bash[14250]: audit 2024-02-19T20:47:01.086753+0000 mon.smithi155 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.155:0/557589063' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-19T20:47:01.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:01 smithi155 bash[14250]: audit 2024-02-19T20:47:01.086905+0000 mon.smithi155 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.155:0/557589063' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-19T20:47:01.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:01 smithi155 bash[14250]: audit 2024-02-19T20:47:01.087025+0000 mon.smithi155 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.155:0/557589063' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-19T20:47:01.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:01 smithi155 bash[14250]: audit 2024-02-19T20:47:01.087183+0000 mon.smithi155 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.155:0/557589063' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi155"}]: dispatch 2024-02-19T20:47:01.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:01 smithi155 bash[14250]: audit 2024-02-19T20:47:01.087920+0000 mon.smithi155 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.155:0/557589063' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr metadata", "who": "smithi155.pwytll", "id": "smithi155.pwytll"}]: dispatch 2024-02-19T20:47:01.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:01 smithi155 bash[14250]: cluster 2024-02-19T20:47:01.113006+0000 mon.smithi155 (mon.0) 16 : cluster [INF] Manager daemon smithi155.pwytll is now available 2024-02-19T20:47:01.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:01 smithi155 bash[14250]: audit 2024-02-19T20:47:01.127253+0000 mon.smithi155 (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.155:0/557589063' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:02.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:02 smithi155 bash[14250]: audit 2024-02-19T20:47:01.138211+0000 mon.smithi155 (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.155:0/557589063' entity='mgr.smithi155.pwytll' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi155.pwytll/mirror_snapshot_schedule"}]: dispatch 2024-02-19T20:47:02.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:02 smithi155 bash[14250]: audit 2024-02-19T20:47:01.140761+0000 mon.smithi155 (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.155:0/557589063' entity='mgr.smithi155.pwytll' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi155.pwytll/trash_purge_schedule"}]: dispatch 2024-02-19T20:47:02.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:02 smithi155 bash[14250]: audit 2024-02-19T20:47:01.146784+0000 mon.smithi155 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.155:0/557589063' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:02.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:02 smithi155 bash[14250]: audit 2024-02-19T20:47:01.150507+0000 mon.smithi155 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.155:0/557589063' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:02.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:02 smithi155 bash[14250]: cluster 2024-02-19T20:47:02.088517+0000 mon.smithi155 (mon.0) 22 : cluster [DBG] mgrmap e3: smithi155.pwytll(active, since 1.00985s) 2024-02-19T20:47:02.647 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:47:02.648 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: { 2024-02-19T20:47:02.648 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "fsid": "d8f13c04-cf67-11ee-95bb-87774f69a715", 2024-02-19T20:47:02.648 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "health": { 2024-02-19T20:47:02.648 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-19T20:47:02.648 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "checks": {}, 2024-02-19T20:47:02.648 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "mutes": [] 2024-02-19T20:47:02.648 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:47:02.649 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-19T20:47:02.649 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "quorum": [ 2024-02-19T20:47:02.649 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 0 2024-02-19T20:47:02.649 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: ], 2024-02-19T20:47:02.649 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-19T20:47:02.649 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "smithi155" 2024-02-19T20:47:02.649 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: ], 2024-02-19T20:47:02.649 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "quorum_age": 10, 2024-02-19T20:47:02.649 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "monmap": { 2024-02-19T20:47:02.650 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:47:02.650 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-19T20:47:02.650 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-19T20:47:02.650 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:47:02.650 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "osdmap": { 2024-02-19T20:47:02.650 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:47:02.650 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-19T20:47:02.650 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-19T20:47:02.650 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-19T20:47:02.650 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-19T20:47:02.654 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-19T20:47:02.654 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-19T20:47:02.654 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:47:02.654 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "pgmap": { 2024-02-19T20:47:02.654 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-19T20:47:02.654 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-19T20:47:02.654 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-19T20:47:02.654 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-19T20:47:02.654 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "fsmap": { 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "available": true, 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "modules": [ 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "iostat", 2024-02-19T20:47:02.655 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "nfs", 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "restful" 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: ], 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "services": {} 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "servicemap": { 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "modified": "2024-02-19T20:46:46.041128+0000", 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "services": {} 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: }, 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-19T20:47:02.656 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: } 2024-02-19T20:47:03.246 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:03 smithi155 bash[14250]: audit 2024-02-19T20:47:02.659688+0000 mon.smithi155 (mon.0) 23 : audit [DBG] from='client.? 172.21.15.155:0/2281936110' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-19T20:47:03.312 INFO:teuthology.orchestra.run.smithi155.stderr:mgr is available 2024-02-19T20:47:04.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:04 smithi155 bash[14250]: cluster 2024-02-19T20:47:03.141845+0000 mon.smithi155 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi155.pwytll(active, since 2s) 2024-02-19T20:47:04.620 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:47:04.620 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: [global] 2024-02-19T20:47:04.620 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: fsid = d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:47:04.620 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: log_to_journald = false 2024-02-19T20:47:04.620 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-19T20:47:04.620 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-19T20:47:04.620 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-19T20:47:04.620 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-19T20:47:04.620 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:47:04.621 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: [mgr] 2024-02-19T20:47:04.621 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-19T20:47:04.621 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 2024-02-19T20:47:04.621 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: [osd] 2024-02-19T20:47:04.621 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-19T20:47:04.621 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-19T20:47:05.243 INFO:teuthology.orchestra.run.smithi155.stderr:Enabling cephadm module... 2024-02-19T20:47:05.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:05 smithi155 bash[14250]: audit 2024-02-19T20:47:04.634500+0000 mon.smithi155 (mon.0) 25 : audit [INF] from='client.? 172.21.15.155:0/717949457' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-19T20:47:06.945 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:06 smithi155 bash[14250]: audit 2024-02-19T20:47:06.608243+0000 mon.smithi155 (mon.0) 26 : audit [INF] from='client.? 172.21.15.155:0/2315194263' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-02-19T20:47:07.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:07 smithi155 bash[14250]: audit 2024-02-19T20:47:06.664953+0000 mon.smithi155 (mon.0) 27 : audit [INF] from='client.? 172.21.15.155:0/2315194263' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-02-19T20:47:07.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:07 smithi155 bash[14250]: cluster 2024-02-19T20:47:06.665061+0000 mon.smithi155 (mon.0) 28 : cluster [DBG] mgrmap e5: smithi155.pwytll(active, since 5s) 2024-02-19T20:47:08.678 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: { 2024-02-19T20:47:08.678 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 5, 2024-02-19T20:47:08.678 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "available": true, 2024-02-19T20:47:08.678 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "active_name": "smithi155.pwytll", 2024-02-19T20:47:08.679 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-19T20:47:08.679 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: } 2024-02-19T20:47:08.930 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:08 smithi155 bash[14250]: audit 2024-02-19T20:47:08.694894+0000 mon.smithi155 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.155:0/2372811644' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-19T20:47:09.330 INFO:teuthology.orchestra.run.smithi155.stderr:Waiting for the mgr to restart... 2024-02-19T20:47:09.330 INFO:teuthology.orchestra.run.smithi155.stderr:Waiting for mgr epoch 5... 2024-02-19T20:47:13.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:13 smithi155 bash[14250]: cluster 2024-02-19T20:47:13.218879+0000 mon.smithi155 (mon.0) 30 : cluster [INF] Active manager daemon smithi155.pwytll restarted 2024-02-19T20:47:13.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:13 smithi155 bash[14250]: cluster 2024-02-19T20:47:13.219618+0000 mon.smithi155 (mon.0) 31 : cluster [INF] Activating manager daemon smithi155.pwytll 2024-02-19T20:47:13.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:13 smithi155 bash[14250]: cluster 2024-02-19T20:47:13.226353+0000 mon.smithi155 (mon.0) 32 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-02-19T20:47:13.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:13 smithi155 bash[14250]: cluster 2024-02-19T20:47:13.226570+0000 mon.smithi155 (mon.0) 33 : cluster [DBG] mgrmap e6: smithi155.pwytll(active, starting, since 0.00726683s) 2024-02-19T20:47:13.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:13 smithi155 bash[14250]: audit 2024-02-19T20:47:13.228007+0000 mon.smithi155 (mon.0) 34 : audit [DBG] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi155"}]: dispatch 2024-02-19T20:47:13.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:13 smithi155 bash[14250]: audit 2024-02-19T20:47:13.229190+0000 mon.smithi155 (mon.0) 35 : audit [DBG] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr metadata", "who": "smithi155.pwytll", "id": "smithi155.pwytll"}]: dispatch 2024-02-19T20:47:13.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:13 smithi155 bash[14250]: audit 2024-02-19T20:47:13.230210+0000 mon.smithi155 (mon.0) 36 : audit [DBG] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-19T20:47:13.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:13 smithi155 bash[14250]: audit 2024-02-19T20:47:13.230436+0000 mon.smithi155 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-19T20:47:13.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:13 smithi155 bash[14250]: audit 2024-02-19T20:47:13.230658+0000 mon.smithi155 (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-19T20:47:13.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:13 smithi155 bash[14250]: cluster 2024-02-19T20:47:13.252420+0000 mon.smithi155 (mon.0) 39 : cluster [INF] Manager daemon smithi155.pwytll is now available 2024-02-19T20:47:14.227 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: { 2024-02-19T20:47:14.227 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2024-02-19T20:47:14.228 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "initialized": true 2024-02-19T20:47:14.228 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: } 2024-02-19T20:47:14.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:14 smithi155 bash[14250]: cephadm 2024-02-19T20:47:13.269768+0000 mgr.smithi155.pwytll (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-02-19T20:47:14.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:14 smithi155 bash[14250]: audit 2024-02-19T20:47:13.274289+0000 mon.smithi155 (mon.0) 40 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:14.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:14 smithi155 bash[14250]: audit 2024-02-19T20:47:13.402197+0000 mon.smithi155 (mon.0) 41 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:14.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:14 smithi155 bash[14250]: audit 2024-02-19T20:47:13.404802+0000 mon.smithi155 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:47:14.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:14 smithi155 bash[14250]: audit 2024-02-19T20:47:13.415308+0000 mon.smithi155 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:47:14.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:14 smithi155 bash[14250]: audit 2024-02-19T20:47:13.418686+0000 mon.smithi155 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:47:14.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:14 smithi155 bash[14250]: audit 2024-02-19T20:47:13.433466+0000 mon.smithi155 (mon.0) 45 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi155.pwytll/mirror_snapshot_schedule"}]: dispatch 2024-02-19T20:47:14.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:14 smithi155 bash[14250]: audit 2024-02-19T20:47:13.438277+0000 mon.smithi155 (mon.0) 46 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi155.pwytll/trash_purge_schedule"}]: dispatch 2024-02-19T20:47:14.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:14 smithi155 bash[14250]: cluster 2024-02-19T20:47:14.230731+0000 mon.smithi155 (mon.0) 47 : cluster [DBG] mgrmap e7: smithi155.pwytll(active, since 1.01141s) 2024-02-19T20:47:14.878 INFO:teuthology.orchestra.run.smithi155.stderr:mgr epoch 5 is available 2024-02-19T20:47:14.878 INFO:teuthology.orchestra.run.smithi155.stderr:Setting orchestrator backend to cephadm... 2024-02-19T20:47:15.608 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:15 smithi155 bash[14250]: audit 2024-02-19T20:47:14.229948+0000 mgr.smithi155.pwytll (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-19T20:47:15.608 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:15 smithi155 bash[14250]: audit 2024-02-19T20:47:14.244211+0000 mgr.smithi155.pwytll (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-19T20:47:16.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:16 smithi155 bash[14250]: cluster 2024-02-19T20:47:15.284678+0000 mon.smithi155 (mon.0) 48 : cluster [DBG] mgrmap e8: smithi155.pwytll(active, since 2s) 2024-02-19T20:47:16.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:16 smithi155 bash[14250]: audit 2024-02-19T20:47:16.244254+0000 mon.smithi155 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:17.538 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:17 smithi155 bash[14250]: audit 2024-02-19T20:47:16.237838+0000 mgr.smithi155.pwytll (mgr.14116) 4 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:17.538 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:17 smithi155 bash[14250]: audit 2024-02-19T20:47:16.294344+0000 mon.smithi155 (mon.0) 50 : audit [DBG] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:47:18.084 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: value unchanged 2024-02-19T20:47:18.691 INFO:teuthology.orchestra.run.smithi155.stderr:Generating ssh key... 2024-02-19T20:47:18.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:18 smithi155 bash[14250]: audit 2024-02-19T20:47:18.101390+0000 mgr.smithi155.pwytll (mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:21.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:21 smithi155 bash[14250]: audit 2024-02-19T20:47:20.072254+0000 mgr.smithi155.pwytll (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:21.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:21 smithi155 bash[14250]: cephadm 2024-02-19T20:47:20.072701+0000 mgr.smithi155.pwytll (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2024-02-19T20:47:21.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:21 smithi155 bash[14250]: audit 2024-02-19T20:47:20.207513+0000 mon.smithi155 (mon.0) 51 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:21.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:21 smithi155 bash[14250]: audit 2024-02-19T20:47:20.211175+0000 mon.smithi155 (mon.0) 52 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:22.094 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCzBobBYGMf87imDZ7WiXQo6SiOVJnmRhBdHcM67pl1thuwlLJ9WGf44BSrpq2qq7sdhU+ZONWPn7QUrTXifwZndAM0WvFWrythiytEIaE9EZ9xi++7Ib2BrbUdUx7lM2VswdhMa2dQ/7yGGCjm54XAUBOouO4cADv/TSpFqMimK8w9b6iRlOM0KdUWRt+tEc7JnAa58uw//iax475s4jUAZnEbDPl6ZFg456Xagq3+lt1qmv7pfQ9KQnlnSUIH+hR7ePyBVqmJhLyFCQPfe70Us9JwlvHjzNNExWMwFpA2Kf5skViOPBN65SX1GkuY5bruGfDxSza8aOSJ9WNvdGfXlUXxVFVlQYb6yWRyCf35HCTHpuLVcaHvUuosb/BEYa8tE91uJ99H14zGQQXnDD1haopQdyI9d8LRnoqW1FIYtxr6AJ22DAnADocYJjyAcwVL2aq/VKgz9kV8psOGxHzOO0FNHayOKg8qsSWFFaQ6bjSnpRaojPAm0JazRuIWhQk= ceph-d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:47:22.672 INFO:teuthology.orchestra.run.smithi155.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-02-19T20:47:22.672 INFO:teuthology.orchestra.run.smithi155.stderr:Adding key to root@localhost authorized_keys... 2024-02-19T20:47:22.672 INFO:teuthology.orchestra.run.smithi155.stderr:Adding host smithi155... 2024-02-19T20:47:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:22 smithi155 bash[14250]: audit 2024-02-19T20:47:22.110635+0000 mgr.smithi155.pwytll (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:24.798 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: Added host 'smithi155' with addr '172.21.15.155' 2024-02-19T20:47:25.068 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:24 smithi155 bash[14250]: audit 2024-02-19T20:47:23.958630+0000 mgr.smithi155.pwytll (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi155", "addr": "172.21.15.155", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:25.646 INFO:teuthology.orchestra.run.smithi155.stderr:Deploying mon service with default placement... 2024-02-19T20:47:26.022 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:25 smithi155 bash[14250]: audit 2024-02-19T20:47:24.814263+0000 mon.smithi155 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:26.023 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:25 smithi155 bash[14250]: cephadm 2024-02-19T20:47:24.814900+0000 mgr.smithi155.pwytll (mgr.14116) 10 : cephadm [INF] Added host smithi155 2024-02-19T20:47:26.023 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:25 smithi155 bash[14250]: audit 2024-02-19T20:47:24.831660+0000 mon.smithi155 (mon.0) 54 : audit [DBG] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:47:27.700 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: Scheduled mon update... 2024-02-19T20:47:28.373 INFO:teuthology.orchestra.run.smithi155.stderr:Deploying mgr service with default placement... 2024-02-19T20:47:28.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:28 smithi155 bash[14250]: audit 2024-02-19T20:47:27.708543+0000 mgr.smithi155.pwytll (mgr.14116) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:28.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:28 smithi155 bash[14250]: cephadm 2024-02-19T20:47:27.711670+0000 mgr.smithi155.pwytll (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2024-02-19T20:47:28.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:28 smithi155 bash[14250]: audit 2024-02-19T20:47:27.716479+0000 mon.smithi155 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:28.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:28 smithi155 bash[14250]: audit 2024-02-19T20:47:28.012604+0000 mon.smithi155 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:28.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:28 smithi155 bash[14250]: audit 2024-02-19T20:47:28.264087+0000 mon.smithi155 (mon.0) 57 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:29.760 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: Scheduled mgr update... 2024-02-19T20:47:30.366 INFO:teuthology.orchestra.run.smithi155.stderr:Deploying crash service with default placement... 2024-02-19T20:47:31.099 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:30 smithi155 bash[14250]: audit 2024-02-19T20:47:29.770213+0000 mgr.smithi155.pwytll (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:31.099 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:30 smithi155 bash[14250]: cephadm 2024-02-19T20:47:29.772374+0000 mgr.smithi155.pwytll (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2024-02-19T20:47:31.099 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:30 smithi155 bash[14250]: audit 2024-02-19T20:47:29.777071+0000 mon.smithi155 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:31.711 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: Scheduled crash update... 2024-02-19T20:47:32.325 INFO:teuthology.orchestra.run.smithi155.stderr:Deploying prometheus service with default placement... 2024-02-19T20:47:32.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:32 smithi155 bash[14250]: audit 2024-02-19T20:47:31.721735+0000 mgr.smithi155.pwytll (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:32.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:32 smithi155 bash[14250]: cephadm 2024-02-19T20:47:31.724107+0000 mgr.smithi155.pwytll (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2024-02-19T20:47:32.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:32 smithi155 bash[14250]: audit 2024-02-19T20:47:31.727377+0000 mon.smithi155 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:33.608 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: Scheduled prometheus update... 2024-02-19T20:47:34.274 INFO:teuthology.orchestra.run.smithi155.stderr:Deploying grafana service with default placement... 2024-02-19T20:47:34.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:34 smithi155 bash[14250]: cluster 2024-02-19T20:47:33.232173+0000 mgr.smithi155.pwytll (mgr.14116) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:47:34.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:34 smithi155 bash[14250]: audit 2024-02-19T20:47:33.285663+0000 mon.smithi155 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:34.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:34 smithi155 bash[14250]: audit 2024-02-19T20:47:33.617589+0000 mgr.smithi155.pwytll (mgr.14116) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:34.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:34 smithi155 bash[14250]: cephadm 2024-02-19T20:47:33.619901+0000 mgr.smithi155.pwytll (mgr.14116) 19 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-02-19T20:47:34.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:34 smithi155 bash[14250]: audit 2024-02-19T20:47:33.624807+0000 mon.smithi155 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:35.631 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: Scheduled grafana update... 2024-02-19T20:47:36.238 INFO:teuthology.orchestra.run.smithi155.stderr:Deploying node-exporter service with default placement... 2024-02-19T20:47:36.979 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:36 smithi155 bash[14250]: cluster 2024-02-19T20:47:35.232582+0000 mgr.smithi155.pwytll (mgr.14116) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:47:36.979 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:36 smithi155 bash[14250]: audit 2024-02-19T20:47:35.641915+0000 mgr.smithi155.pwytll (mgr.14116) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:36.979 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:36 smithi155 bash[14250]: cephadm 2024-02-19T20:47:35.644001+0000 mgr.smithi155.pwytll (mgr.14116) 22 : cephadm [INF] Saving service grafana spec with placement count:1 2024-02-19T20:47:36.979 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:36 smithi155 bash[14250]: audit 2024-02-19T20:47:35.647398+0000 mon.smithi155 (mon.0) 62 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:37.564 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2024-02-19T20:47:38.293 INFO:teuthology.orchestra.run.smithi155.stderr:Deploying alertmanager service with default placement... 2024-02-19T20:47:38.686 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:38 smithi155 bash[14250]: cluster 2024-02-19T20:47:37.232919+0000 mgr.smithi155.pwytll (mgr.14116) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:47:38.687 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:38 smithi155 bash[14250]: audit 2024-02-19T20:47:37.575668+0000 mgr.smithi155.pwytll (mgr.14116) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:38.687 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:38 smithi155 bash[14250]: cephadm 2024-02-19T20:47:37.576662+0000 mgr.smithi155.pwytll (mgr.14116) 25 : cephadm [INF] Saving service node-exporter spec with placement * 2024-02-19T20:47:38.687 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:38 smithi155 bash[14250]: audit 2024-02-19T20:47:37.581130+0000 mon.smithi155 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:39.964 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2024-02-19T20:47:40.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:40 smithi155 bash[14250]: cluster 2024-02-19T20:47:39.233352+0000 mgr.smithi155.pwytll (mgr.14116) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:47:40.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:40 smithi155 bash[14250]: audit 2024-02-19T20:47:39.980772+0000 mon.smithi155 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.155:0/2734481654' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:41.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:41 smithi155 bash[14250]: audit 2024-02-19T20:47:39.976469+0000 mgr.smithi155.pwytll (mgr.14116) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:41.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:41 smithi155 bash[14250]: cephadm 2024-02-19T20:47:39.977495+0000 mgr.smithi155.pwytll (mgr.14116) 28 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-02-19T20:47:42.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:42 smithi155 bash[14250]: cluster 2024-02-19T20:47:41.233857+0000 mgr.smithi155.pwytll (mgr.14116) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:47:42.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:42 smithi155 bash[14250]: audit 2024-02-19T20:47:42.101822+0000 mon.smithi155 (mon.0) 65 : audit [INF] from='client.? 172.21.15.155:0/4056637317' entity='client.admin' 2024-02-19T20:47:44.731 INFO:teuthology.orchestra.run.smithi155.stderr:Enabling the dashboard module... 2024-02-19T20:47:44.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:44 smithi155 bash[14250]: cluster 2024-02-19T20:47:43.234323+0000 mgr.smithi155.pwytll (mgr.14116) 30 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:47:44.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:44 smithi155 bash[14250]: audit 2024-02-19T20:47:44.075500+0000 mon.smithi155 (mon.0) 66 : audit [INF] from='client.? 172.21.15.155:0/322874321' entity='client.admin' 2024-02-19T20:47:46.839 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:46 smithi155 bash[14250]: cluster 2024-02-19T20:47:45.234896+0000 mgr.smithi155.pwytll (mgr.14116) 31 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:47:46.840 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:46 smithi155 bash[14250]: audit 2024-02-19T20:47:46.143211+0000 mon.smithi155 (mon.0) 67 : audit [INF] from='client.? 172.21.15.155:0/3469071508' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-02-19T20:47:47.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:47 smithi155 bash[14250]: audit 2024-02-19T20:47:46.600296+0000 mon.smithi155 (mon.0) 68 : audit [INF] from='client.? 172.21.15.155:0/3469071508' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-02-19T20:47:47.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:47 smithi155 bash[14250]: cluster 2024-02-19T20:47:46.600373+0000 mon.smithi155 (mon.0) 69 : cluster [DBG] mgrmap e9: smithi155.pwytll(active, since 33s) 2024-02-19T20:47:48.728 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: { 2024-02-19T20:47:48.728 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "epoch": 9, 2024-02-19T20:47:48.728 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "available": true, 2024-02-19T20:47:48.728 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "active_name": "smithi155.pwytll", 2024-02-19T20:47:48.728 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-19T20:47:48.728 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: } 2024-02-19T20:47:48.947 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:48 smithi155 bash[14250]: audit 2024-02-19T20:47:48.743983+0000 mon.smithi155 (mon.0) 70 : audit [DBG] from='client.? 172.21.15.155:0/2744593961' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-19T20:47:49.394 INFO:teuthology.orchestra.run.smithi155.stderr:Waiting for the mgr to restart... 2024-02-19T20:47:49.394 INFO:teuthology.orchestra.run.smithi155.stderr:Waiting for mgr epoch 9... 2024-02-19T20:47:53.459 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:53 smithi155 bash[14250]: cluster 2024-02-19T20:47:53.219302+0000 mon.smithi155 (mon.0) 71 : cluster [INF] Active manager daemon smithi155.pwytll restarted 2024-02-19T20:47:53.460 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:53 smithi155 bash[14250]: cluster 2024-02-19T20:47:53.219744+0000 mon.smithi155 (mon.0) 72 : cluster [INF] Activating manager daemon smithi155.pwytll 2024-02-19T20:47:53.460 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:53 smithi155 bash[14250]: cluster 2024-02-19T20:47:53.227110+0000 mon.smithi155 (mon.0) 73 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-02-19T20:47:53.460 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:53 smithi155 bash[14250]: cluster 2024-02-19T20:47:53.227286+0000 mon.smithi155 (mon.0) 74 : cluster [DBG] mgrmap e10: smithi155.pwytll(active, starting, since 0.00772266s) 2024-02-19T20:47:53.460 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:53 smithi155 bash[14250]: audit 2024-02-19T20:47:53.228606+0000 mon.smithi155 (mon.0) 75 : audit [DBG] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi155"}]: dispatch 2024-02-19T20:47:53.460 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:53 smithi155 bash[14250]: audit 2024-02-19T20:47:53.230053+0000 mon.smithi155 (mon.0) 76 : audit [DBG] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr metadata", "who": "smithi155.pwytll", "id": "smithi155.pwytll"}]: dispatch 2024-02-19T20:47:53.460 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:53 smithi155 bash[14250]: audit 2024-02-19T20:47:53.230956+0000 mon.smithi155 (mon.0) 77 : audit [DBG] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-19T20:47:53.461 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:53 smithi155 bash[14250]: audit 2024-02-19T20:47:53.231233+0000 mon.smithi155 (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-19T20:47:53.461 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:53 smithi155 bash[14250]: audit 2024-02-19T20:47:53.231480+0000 mon.smithi155 (mon.0) 79 : audit [DBG] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-19T20:47:53.461 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:53 smithi155 bash[14250]: cluster 2024-02-19T20:47:53.234924+0000 mon.smithi155 (mon.0) 80 : cluster [INF] Manager daemon smithi155.pwytll is now available 2024-02-19T20:47:54.226 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: { 2024-02-19T20:47:54.226 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2024-02-19T20:47:54.226 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: "initialized": true 2024-02-19T20:47:54.226 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: } 2024-02-19T20:47:54.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:54 smithi155 bash[14250]: audit 2024-02-19T20:47:53.368824+0000 mon.smithi155 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:47:54.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:54 smithi155 bash[14250]: audit 2024-02-19T20:47:53.374317+0000 mon.smithi155 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:47:54.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:54 smithi155 bash[14250]: audit 2024-02-19T20:47:53.414378+0000 mon.smithi155 (mon.0) 83 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi155.pwytll/mirror_snapshot_schedule"}]: dispatch 2024-02-19T20:47:54.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:54 smithi155 bash[14250]: audit 2024-02-19T20:47:53.417458+0000 mon.smithi155 (mon.0) 84 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi155.pwytll/trash_purge_schedule"}]: dispatch 2024-02-19T20:47:54.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:54 smithi155 bash[14250]: cluster 2024-02-19T20:47:54.231719+0000 mon.smithi155 (mon.0) 85 : cluster [DBG] mgrmap e11: smithi155.pwytll(active, since 1.01214s) 2024-02-19T20:47:54.975 INFO:teuthology.orchestra.run.smithi155.stderr:mgr epoch 9 is available 2024-02-19T20:47:54.976 INFO:teuthology.orchestra.run.smithi155.stderr:Generating a dashboard self-signed certificate... 2024-02-19T20:47:55.743 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:55 smithi155 bash[14250]: audit 2024-02-19T20:47:54.229344+0000 mgr.smithi155.pwytll (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-19T20:47:55.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:55 smithi155 bash[14250]: audit 2024-02-19T20:47:54.242573+0000 mgr.smithi155.pwytll (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-19T20:47:56.510 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: Self-signed certificate created 2024-02-19T20:47:56.565 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:56 smithi155 bash[14250]: cluster 2024-02-19T20:47:55.279514+0000 mon.smithi155 (mon.0) 86 : cluster [DBG] mgrmap e12: smithi155.pwytll(active, since 2s) 2024-02-19T20:47:57.171 INFO:teuthology.orchestra.run.smithi155.stderr:Creating initial admin user... 2024-02-19T20:47:57.885 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:57 smithi155 bash[14250]: audit 2024-02-19T20:47:56.353599+0000 mgr.smithi155.pwytll (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:47:57.885 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:57 smithi155 bash[14250]: audit 2024-02-19T20:47:56.523857+0000 mon.smithi155 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:57.885 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:57 smithi155 bash[14250]: audit 2024-02-19T20:47:56.527019+0000 mon.smithi155 (mon.0) 88 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:47:58.725 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$Ike/zsaxail1DmWO5RmIVeeVijISIgZra44Vs/KvduWt2nKBtbONy", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1708375678, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-02-19T20:47:58.963 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:58 smithi155 bash[14250]: audit 2024-02-19T20:47:58.495728+0000 mgr.smithi155.pwytll (mgr.14156) 4 : audit [DBG] from='client.14168 -' 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-02-19T20:47:59.438 INFO:teuthology.orchestra.run.smithi155.stderr:Fetching dashboard port number... 2024-02-19T20:47:59.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:47:59 smithi155 bash[14250]: audit 2024-02-19T20:47:58.741724+0000 mon.smithi155 (mon.0) 89 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:00.707 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: 8443 2024-02-19T20:48:00.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:00 smithi155 bash[14250]: cluster 2024-02-19T20:47:59.743643+0000 mon.smithi155 (mon.0) 90 : cluster [DBG] mgrmap e13: smithi155.pwytll(active, since 6s) 2024-02-19T20:48:00.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:00 smithi155 bash[14250]: audit 2024-02-19T20:48:00.204970+0000 mon.smithi155 (mon.0) 91 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:00.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:00 smithi155 bash[14250]: audit 2024-02-19T20:48:00.724678+0000 mon.smithi155 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.155:0/3611140803' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-02-19T20:48:01.426 INFO:teuthology.orchestra.run.smithi155.stderr:firewalld does not appear to be present 2024-02-19T20:48:01.426 INFO:teuthology.orchestra.run.smithi155.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2024-02-19T20:48:01.430 INFO:teuthology.orchestra.run.smithi155.stderr:Ceph Dashboard is now available at: 2024-02-19T20:48:01.430 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:48:01.430 INFO:teuthology.orchestra.run.smithi155.stderr: URL: https://smithi155.front.sepia.ceph.com:8443/ 2024-02-19T20:48:01.430 INFO:teuthology.orchestra.run.smithi155.stderr: User: admin 2024-02-19T20:48:01.430 INFO:teuthology.orchestra.run.smithi155.stderr: Password: osd4wd9i4n 2024-02-19T20:48:01.430 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:48:01.431 INFO:teuthology.orchestra.run.smithi155.stderr:Enabling autotune for osd_memory_target 2024-02-19T20:48:05.047 INFO:teuthology.orchestra.run.smithi155.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2024-02-19T20:48:06.045 INFO:teuthology.orchestra.run.smithi155.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-02-19T20:48:06.045 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr:Or, if you are only running a single cluster on this host: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr:Please consider enabling telemetry to help improve Ceph: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: ceph telemetry on 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr:For more information see: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:48:06.046 INFO:teuthology.orchestra.run.smithi155.stderr:Bootstrap complete. 2024-02-19T20:48:06.075 INFO:tasks.cephadm:Fetching config... 2024-02-19T20:48:06.076 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:48:06.076 DEBUG:teuthology.orchestra.run.smithi155:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-02-19T20:48:06.083 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-02-19T20:48:06.083 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:48:06.083 DEBUG:teuthology.orchestra.run.smithi155:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-02-19T20:48:06.132 INFO:tasks.cephadm:Fetching mon keyring... 2024-02-19T20:48:06.132 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:48:06.132 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd if=/var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/keyring of=/dev/stdout 2024-02-19T20:48:06.184 INFO:tasks.cephadm:Fetching pub ssh key... 2024-02-19T20:48:06.185 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:48:06.185 DEBUG:teuthology.orchestra.run.smithi155:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-02-19T20:48:06.230 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-02-19T20:48:06.230 DEBUG:teuthology.orchestra.run.smithi155:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCzBobBYGMf87imDZ7WiXQo6SiOVJnmRhBdHcM67pl1thuwlLJ9WGf44BSrpq2qq7sdhU+ZONWPn7QUrTXifwZndAM0WvFWrythiytEIaE9EZ9xi++7Ib2BrbUdUx7lM2VswdhMa2dQ/7yGGCjm54XAUBOouO4cADv/TSpFqMimK8w9b6iRlOM0KdUWRt+tEc7JnAa58uw//iax475s4jUAZnEbDPl6ZFg456Xagq3+lt1qmv7pfQ9KQnlnSUIH+hR7ePyBVqmJhLyFCQPfe70Us9JwlvHjzNNExWMwFpA2Kf5skViOPBN65SX1GkuY5bruGfDxSza8aOSJ9WNvdGfXlUXxVFVlQYb6yWRyCf35HCTHpuLVcaHvUuosb/BEYa8tE91uJ99H14zGQQXnDD1haopQdyI9d8LRnoqW1FIYtxr6AJ22DAnADocYJjyAcwVL2aq/VKgz9kV8psOGxHzOO0FNHayOKg8qsSWFFaQ6bjSnpRaojPAm0JazRuIWhQk= ceph-d8f13c04-cf67-11ee-95bb-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-19T20:48:06.293 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:06 smithi155 bash[14250]: audit 2024-02-19T20:48:05.059814+0000 mon.smithi155 (mon.0) 93 : audit [INF] from='client.? 172.21.15.155:0/3805377037' entity='client.admin' 2024-02-19T20:48:06.295 INFO:teuthology.orchestra.run.smithi155.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCzBobBYGMf87imDZ7WiXQo6SiOVJnmRhBdHcM67pl1thuwlLJ9WGf44BSrpq2qq7sdhU+ZONWPn7QUrTXifwZndAM0WvFWrythiytEIaE9EZ9xi++7Ib2BrbUdUx7lM2VswdhMa2dQ/7yGGCjm54XAUBOouO4cADv/TSpFqMimK8w9b6iRlOM0KdUWRt+tEc7JnAa58uw//iax475s4jUAZnEbDPl6ZFg456Xagq3+lt1qmv7pfQ9KQnlnSUIH+hR7ePyBVqmJhLyFCQPfe70Us9JwlvHjzNNExWMwFpA2Kf5skViOPBN65SX1GkuY5bruGfDxSza8aOSJ9WNvdGfXlUXxVFVlQYb6yWRyCf35HCTHpuLVcaHvUuosb/BEYa8tE91uJ99H14zGQQXnDD1haopQdyI9d8LRnoqW1FIYtxr6AJ22DAnADocYJjyAcwVL2aq/VKgz9kV8psOGxHzOO0FNHayOKg8qsSWFFaQ6bjSnpRaojPAm0JazRuIWhQk= ceph-d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:48:06.303 DEBUG:teuthology.orchestra.run.smithi160:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCzBobBYGMf87imDZ7WiXQo6SiOVJnmRhBdHcM67pl1thuwlLJ9WGf44BSrpq2qq7sdhU+ZONWPn7QUrTXifwZndAM0WvFWrythiytEIaE9EZ9xi++7Ib2BrbUdUx7lM2VswdhMa2dQ/7yGGCjm54XAUBOouO4cADv/TSpFqMimK8w9b6iRlOM0KdUWRt+tEc7JnAa58uw//iax475s4jUAZnEbDPl6ZFg456Xagq3+lt1qmv7pfQ9KQnlnSUIH+hR7ePyBVqmJhLyFCQPfe70Us9JwlvHjzNNExWMwFpA2Kf5skViOPBN65SX1GkuY5bruGfDxSza8aOSJ9WNvdGfXlUXxVFVlQYb6yWRyCf35HCTHpuLVcaHvUuosb/BEYa8tE91uJ99H14zGQQXnDD1haopQdyI9d8LRnoqW1FIYtxr6AJ22DAnADocYJjyAcwVL2aq/VKgz9kV8psOGxHzOO0FNHayOKg8qsSWFFaQ6bjSnpRaojPAm0JazRuIWhQk= ceph-d8f13c04-cf67-11ee-95bb-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-19T20:48:06.331 INFO:teuthology.orchestra.run.smithi160.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCzBobBYGMf87imDZ7WiXQo6SiOVJnmRhBdHcM67pl1thuwlLJ9WGf44BSrpq2qq7sdhU+ZONWPn7QUrTXifwZndAM0WvFWrythiytEIaE9EZ9xi++7Ib2BrbUdUx7lM2VswdhMa2dQ/7yGGCjm54XAUBOouO4cADv/TSpFqMimK8w9b6iRlOM0KdUWRt+tEc7JnAa58uw//iax475s4jUAZnEbDPl6ZFg456Xagq3+lt1qmv7pfQ9KQnlnSUIH+hR7ePyBVqmJhLyFCQPfe70Us9JwlvHjzNNExWMwFpA2Kf5skViOPBN65SX1GkuY5bruGfDxSza8aOSJ9WNvdGfXlUXxVFVlQYb6yWRyCf35HCTHpuLVcaHvUuosb/BEYa8tE91uJ99H14zGQQXnDD1haopQdyI9d8LRnoqW1FIYtxr6AJ22DAnADocYJjyAcwVL2aq/VKgz9kV8psOGxHzOO0FNHayOKg8qsSWFFaQ6bjSnpRaojPAm0JazRuIWhQk= ceph-d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:48:06.342 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-02-19T20:48:11.396 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:11 smithi155 bash[14250]: audit 2024-02-19T20:48:10.158213+0000 mon.smithi155 (mon.0) 94 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:11.396 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:11 smithi155 bash[14250]: audit 2024-02-19T20:48:10.334730+0000 mon.smithi155 (mon.0) 95 : audit [INF] from='client.? 172.21.15.155:0/2396119381' entity='client.admin' 2024-02-19T20:48:11.396 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:11 smithi155 bash[14250]: audit 2024-02-19T20:48:10.457689+0000 mon.smithi155 (mon.0) 96 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd/host:smithi155", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:48:11.396 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:11 smithi155 bash[14250]: audit 2024-02-19T20:48:10.462477+0000 mon.smithi155 (mon.0) 97 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:11.397 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:11 smithi155 bash[14250]: cephadm 2024-02-19T20:48:10.476263+0000 mgr.smithi155.pwytll (mgr.14156) 5 : cephadm [INF] Deploying daemon alertmanager.smithi155 on smithi155 2024-02-19T20:48:11.426 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-02-19T20:48:11.427 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-02-19T20:48:14.365 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:14 smithi155 bash[14250]: cluster 2024-02-19T20:48:13.232918+0000 mgr.smithi155.pwytll (mgr.14156) 6 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:15.793 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi160 2024-02-19T20:48:15.793 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:48:15.793 DEBUG:teuthology.orchestra.run.smithi160:> dd of=/etc/ceph/ceph.conf 2024-02-19T20:48:15.801 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:48:15.801 DEBUG:teuthology.orchestra.run.smithi160:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-19T20:48:15.849 INFO:tasks.cephadm:Adding host smithi160 to orchestrator... 2024-02-19T20:48:15.849 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph orch host add smithi160 2024-02-19T20:48:16.246 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:15 smithi155 bash[14250]: audit 2024-02-19T20:48:14.786901+0000 mgr.smithi155.pwytll (mgr.14156) 7 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:48:16.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:15 smithi155 bash[14250]: audit 2024-02-19T20:48:14.790278+0000 mon.smithi155 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:16.247 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:15 smithi155 bash[14250]: cluster 2024-02-19T20:48:15.233319+0000 mgr.smithi155.pwytll (mgr.14156) 8 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:18.575 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:18 smithi155 bash[14250]: cluster 2024-02-19T20:48:17.233790+0000 mgr.smithi155.pwytll (mgr.14156) 9 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:20.689 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:20 smithi155 bash[14250]: cluster 2024-02-19T20:48:19.234252+0000 mgr.smithi155.pwytll (mgr.14156) 10 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:22.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:22 smithi155 bash[14250]: cluster 2024-02-19T20:48:21.234788+0000 mgr.smithi155.pwytll (mgr.14156) 11 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:22.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:22 smithi155 bash[14250]: audit 2024-02-19T20:48:21.977223+0000 mon.smithi155 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:22.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:22 smithi155 bash[14250]: audit 2024-02-19T20:48:21.979707+0000 mon.smithi155 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi155", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T20:48:22.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:22 smithi155 bash[14250]: audit 2024-02-19T20:48:21.982166+0000 mon.smithi155 (mon.0) 101 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi155", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-19T20:48:22.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:22 smithi155 bash[14250]: audit 2024-02-19T20:48:21.983303+0000 mon.smithi155 (mon.0) 102 : audit [DBG] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:48:23.535 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:23 smithi155 bash[14250]: cephadm 2024-02-19T20:48:21.984163+0000 mgr.smithi155.pwytll (mgr.14156) 12 : cephadm [INF] Deploying daemon crash.smithi155 on smithi155 2024-02-19T20:48:24.440 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:24 smithi155 bash[14250]: cluster 2024-02-19T20:48:23.235125+0000 mgr.smithi155.pwytll (mgr.14156) 13 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:24.440 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:24 smithi155 bash[14250]: audit 2024-02-19T20:48:23.419992+0000 mon.smithi155 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:25.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:25 smithi155 bash[14250]: audit 2024-02-19T20:48:24.715299+0000 mon.smithi155 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:25.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:25 smithi155 bash[14250]: audit 2024-02-19T20:48:24.845450+0000 mon.smithi155 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:25.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:25 smithi155 bash[14250]: audit 2024-02-19T20:48:24.850753+0000 mon.smithi155 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:25.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:25 smithi155 bash[14250]: audit 2024-02-19T20:48:24.854197+0000 mon.smithi155 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-19T20:48:25.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:25 smithi155 bash[14250]: audit 2024-02-19T20:48:24.854606+0000 mgr.smithi155.pwytll (mgr.14156) 14 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-19T20:48:25.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:25 smithi155 bash[14250]: audit 2024-02-19T20:48:24.860491+0000 mon.smithi155 (mon.0) 108 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:25.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:25 smithi155 bash[14250]: cephadm 2024-02-19T20:48:24.871064+0000 mgr.smithi155.pwytll (mgr.14156) 15 : cephadm [INF] Deploying daemon grafana.smithi155 on smithi155 2024-02-19T20:48:25.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:25 smithi155 bash[14250]: cluster 2024-02-19T20:48:25.235548+0000 mgr.smithi155.pwytll (mgr.14156) 16 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:28.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:28 smithi155 bash[14250]: cluster 2024-02-19T20:48:27.236020+0000 mgr.smithi155.pwytll (mgr.14156) 17 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:29.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:29 smithi155 bash[14250]: audit 2024-02-19T20:48:28.429540+0000 mon.smithi155 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:30.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:30 smithi155 bash[14250]: cluster 2024-02-19T20:48:29.236393+0000 mgr.smithi155.pwytll (mgr.14156) 18 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:32.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:32 smithi155 bash[14250]: cluster 2024-02-19T20:48:31.236782+0000 mgr.smithi155.pwytll (mgr.14156) 19 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:34.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:34 smithi155 bash[14250]: cluster 2024-02-19T20:48:33.237085+0000 mgr.smithi155.pwytll (mgr.14156) 20 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:36.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:36 smithi155 bash[14250]: cluster 2024-02-19T20:48:35.237443+0000 mgr.smithi155.pwytll (mgr.14156) 21 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:38.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:38 smithi155 bash[14250]: cluster 2024-02-19T20:48:37.237939+0000 mgr.smithi155.pwytll (mgr.14156) 22 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:40.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:40 smithi155 bash[14250]: cluster 2024-02-19T20:48:39.238394+0000 mgr.smithi155.pwytll (mgr.14156) 23 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:42.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:42 smithi155 bash[14250]: cluster 2024-02-19T20:48:41.238819+0000 mgr.smithi155.pwytll (mgr.14156) 24 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:44.665 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:44 smithi155 bash[14250]: cluster 2024-02-19T20:48:43.239261+0000 mgr.smithi155.pwytll (mgr.14156) 25 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:46.126 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:45 smithi155 bash[14250]: audit 2024-02-19T20:48:44.929224+0000 mon.smithi155 (mon.0) 110 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:46.126 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:45 smithi155 bash[14250]: cephadm 2024-02-19T20:48:44.933258+0000 mgr.smithi155.pwytll (mgr.14156) 26 : cephadm [INF] Deploying daemon node-exporter.smithi155 on smithi155 2024-02-19T20:48:46.126 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:45 smithi155 bash[14250]: cluster 2024-02-19T20:48:45.239640+0000 mgr.smithi155.pwytll (mgr.14156) 27 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:48:46.126 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:45 smithi155 bash[14250]: audit 2024-02-19T20:48:45.593830+0000 mon.smithi155 (mon.0) 111 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:46.126 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:45 smithi155 bash[14250]: audit 2024-02-19T20:48:45.597859+0000 mon.smithi155 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-02-19T20:48:47.708 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:47 smithi155 bash[14250]: audit 2024-02-19T20:48:46.595467+0000 mon.smithi155 (mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.155:0/838858138' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-02-19T20:48:47.708 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:47 smithi155 bash[14250]: cluster 2024-02-19T20:48:46.595552+0000 mon.smithi155 (mon.0) 114 : cluster [DBG] mgrmap e14: smithi155.pwytll(active, since 53s) 2024-02-19T20:48:53.480 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:53 smithi155 bash[14250]: cluster 2024-02-19T20:48:53.338531+0000 mon.smithi155 (mon.0) 115 : cluster [INF] Active manager daemon smithi155.pwytll restarted 2024-02-19T20:48:53.481 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:53 smithi155 bash[14250]: cluster 2024-02-19T20:48:53.339061+0000 mon.smithi155 (mon.0) 116 : cluster [INF] Activating manager daemon smithi155.pwytll 2024-02-19T20:48:53.481 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:53 smithi155 bash[14250]: cluster 2024-02-19T20:48:53.344136+0000 mon.smithi155 (mon.0) 117 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-02-19T20:48:53.481 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:53 smithi155 bash[14250]: cluster 2024-02-19T20:48:53.344365+0000 mon.smithi155 (mon.0) 118 : cluster [DBG] mgrmap e15: smithi155.pwytll(active, starting, since 0.00556906s) 2024-02-19T20:48:53.481 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:53 smithi155 bash[14250]: audit 2024-02-19T20:48:53.346487+0000 mon.smithi155 (mon.0) 119 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi155"}]: dispatch 2024-02-19T20:48:53.481 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:53 smithi155 bash[14250]: audit 2024-02-19T20:48:53.347621+0000 mon.smithi155 (mon.0) 120 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr metadata", "who": "smithi155.pwytll", "id": "smithi155.pwytll"}]: dispatch 2024-02-19T20:48:53.481 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:53 smithi155 bash[14250]: audit 2024-02-19T20:48:53.348296+0000 mon.smithi155 (mon.0) 121 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-19T20:48:53.481 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:53 smithi155 bash[14250]: audit 2024-02-19T20:48:53.348632+0000 mon.smithi155 (mon.0) 122 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-19T20:48:53.481 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:53 smithi155 bash[14250]: audit 2024-02-19T20:48:53.348994+0000 mon.smithi155 (mon.0) 123 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-19T20:48:53.481 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:53 smithi155 bash[14250]: cluster 2024-02-19T20:48:53.375988+0000 mon.smithi155 (mon.0) 124 : cluster [INF] Manager daemon smithi155.pwytll is now available 2024-02-19T20:48:54.532 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:54 smithi155 bash[14250]: audit 2024-02-19T20:48:53.516264+0000 mon.smithi155 (mon.0) 125 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:48:54.532 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:54 smithi155 bash[14250]: audit 2024-02-19T20:48:53.518798+0000 mon.smithi155 (mon.0) 126 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:48:54.532 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:54 smithi155 bash[14250]: audit 2024-02-19T20:48:53.562904+0000 mon.smithi155 (mon.0) 127 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:48:54.532 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:54 smithi155 bash[14250]: audit 2024-02-19T20:48:53.581624+0000 mon.smithi155 (mon.0) 128 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi155.pwytll/mirror_snapshot_schedule"}]: dispatch 2024-02-19T20:48:54.532 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:54 smithi155 bash[14250]: audit 2024-02-19T20:48:53.586686+0000 mon.smithi155 (mon.0) 129 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi155.pwytll/trash_purge_schedule"}]: dispatch 2024-02-19T20:48:54.532 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:54 smithi155 bash[14250]: cluster 2024-02-19T20:48:54.349303+0000 mon.smithi155 (mon.0) 130 : cluster [DBG] mgrmap e16: smithi155.pwytll(active, since 1.01051s) 2024-02-19T20:48:56.634 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:48:56 smithi155 bash[14250]: cluster 2024-02-19T20:48:55.397768+0000 mon.smithi155 (mon.0) 131 : cluster [DBG] mgrmap e17: smithi155.pwytll(active, since 2s) 2024-02-19T20:49:00.388 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:00 smithi155 bash[14250]: audit 2024-02-19T20:48:59.334686+0000 mon.smithi155 (mon.0) 132 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:00.388 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:00 smithi155 bash[14250]: audit 2024-02-19T20:48:59.603832+0000 mon.smithi155 (mon.0) 133 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd/host:smithi155", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:49:00.388 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:00 smithi155 bash[14250]: audit 2024-02-19T20:48:59.605377+0000 mon.smithi155 (mon.0) 134 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:00.389 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:00 smithi155 bash[14250]: audit 2024-02-19T20:48:59.606654+0000 mon.smithi155 (mon.0) 135 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:49:00.389 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:00 smithi155 bash[14250]: cephadm 2024-02-19T20:48:59.608939+0000 mgr.smithi155.pwytll (mgr.14180) 1 : cephadm [INF] Updating smithi155:/etc/ceph/ceph.conf 2024-02-19T20:49:00.389 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:00 smithi155 bash[14250]: cephadm 2024-02-19T20:48:59.645943+0000 mgr.smithi155.pwytll (mgr.14180) 2 : cephadm [INF] Updating smithi155:/etc/ceph/ceph.client.admin.keyring 2024-02-19T20:49:00.389 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:00 smithi155 bash[14250]: audit 2024-02-19T20:48:59.705157+0000 mon.smithi155 (mon.0) 136 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:00.389 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:00 smithi155 bash[14250]: audit 2024-02-19T20:48:59.709416+0000 mon.smithi155 (mon.0) 137 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:01.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:01 smithi155 bash[14250]: cephadm 2024-02-19T20:48:59.727636+0000 mgr.smithi155.pwytll (mgr.14180) 3 : cephadm [INF] Deploying daemon prometheus.smithi155 on smithi155 2024-02-19T20:49:02.642 INFO:teuthology.orchestra.run.smithi160.stdout:Added host 'smithi160' with addr '172.21.15.160' 2024-02-19T20:49:02.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:02 smithi155 bash[14250]: audit 2024-02-19T20:49:01.810788+0000 mgr.smithi155.pwytll (mgr.14180) 4 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi160", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:49:02.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:02 smithi155 bash[14250]: audit 2024-02-19T20:49:02.658328+0000 mon.smithi155 (mon.0) 138 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:03.329 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph orch host ls --format=json 2024-02-19T20:49:03.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:03 smithi155 bash[14250]: cephadm 2024-02-19T20:49:02.659093+0000 mgr.smithi155.pwytll (mgr.14180) 5 : cephadm [INF] Added host smithi160 2024-02-19T20:49:05.936 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-02-19T20:49:05.937 INFO:teuthology.orchestra.run.smithi160.stdout:[{"addr": "172.21.15.155", "hostname": "smithi155", "labels": [], "status": ""}, {"addr": "172.21.15.160", "hostname": "smithi160", "labels": [], "status": ""}] 2024-02-19T20:49:06.503 INFO:tasks.cephadm:Setting crush tunables to default 2024-02-19T20:49:06.503 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd crush tunables default 2024-02-19T20:49:06.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:06 smithi155 bash[14250]: audit 2024-02-19T20:49:05.953397+0000 mgr.smithi155.pwytll (mgr.14180) 6 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T20:49:12.180 INFO:teuthology.orchestra.run.smithi155.stderr:adjusted tunables profile to default 2024-02-19T20:49:12.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:12 smithi155 bash[14250]: audit 2024-02-19T20:49:12.136431+0000 mon.smithi155 (mon.0) 139 : audit [INF] from='client.? 172.21.15.155:0/841655972' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-02-19T20:49:13.184 INFO:tasks.cephadm:Adding mon.smithi155 on smithi155 2024-02-19T20:49:13.184 INFO:tasks.cephadm:Adding mon.smithi160 on smithi160 2024-02-19T20:49:13.185 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph orch apply mon '2;smithi155:172.21.15.155=smithi155;smithi160:172.21.15.160=smithi160' 2024-02-19T20:49:13.329 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:13 smithi155 bash[14250]: audit 2024-02-19T20:49:12.191901+0000 mon.smithi155 (mon.0) 140 : audit [INF] from='client.? 172.21.15.155:0/841655972' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-02-19T20:49:13.329 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:13 smithi155 bash[14250]: cluster 2024-02-19T20:49:12.192011+0000 mon.smithi155 (mon.0) 141 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-19T20:49:14.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:14 smithi155 bash[14250]: cluster 2024-02-19T20:49:13.350083+0000 mgr.smithi155.pwytll (mgr.14180) 7 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:14.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:14 smithi155 bash[14250]: audit 2024-02-19T20:49:13.582625+0000 mon.smithi155 (mon.0) 142 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:14.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:14 smithi155 bash[14250]: audit 2024-02-19T20:49:13.584988+0000 mon.smithi155 (mon.0) 143 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:49:14.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:14 smithi155 bash[14250]: audit 2024-02-19T20:49:14.130569+0000 mon.smithi155 (mon.0) 144 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:15.860 INFO:teuthology.orchestra.run.smithi160.stdout:Scheduled mon update... 2024-02-19T20:49:16.475 DEBUG:teuthology.orchestra.run.smithi160:mon.smithi160> sudo journalctl -f -n 0 -u ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mon.smithi160.service 2024-02-19T20:49:16.478 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-19T20:49:16.478 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph mon dump -f json 2024-02-19T20:49:16.644 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-02-19T20:49:16.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:16 smithi155 bash[14250]: cluster 2024-02-19T20:49:15.350735+0000 mgr.smithi155.pwytll (mgr.14180) 8 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:16.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:16 smithi155 bash[14250]: audit 2024-02-19T20:49:15.793617+0000 mon.smithi155 (mon.0) 145 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:16.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:16 smithi155 bash[14250]: audit 2024-02-19T20:49:15.877181+0000 mon.smithi155 (mon.0) 146 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:17.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:17 smithi155 bash[14250]: audit 2024-02-19T20:49:15.864558+0000 mgr.smithi155.pwytll (mgr.14180) 9 : audit [DBG] from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi155:172.21.15.155=smithi155;smithi160:172.21.15.160=smithi160", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:49:17.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:17 smithi155 bash[14250]: cephadm 2024-02-19T20:49:15.871274+0000 mgr.smithi155.pwytll (mgr.14180) 10 : cephadm [INF] Saving service mon spec with placement smithi155:172.21.15.155=smithi155;smithi160:172.21.15.160=smithi160;count:2 2024-02-19T20:49:18.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:18 smithi155 bash[14250]: cluster 2024-02-19T20:49:17.351343+0000 mgr.smithi155.pwytll (mgr.14180) 11 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:18.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:18 smithi155 bash[14250]: audit 2024-02-19T20:49:18.565193+0000 mon.smithi155 (mon.0) 147 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:19.745 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-02-19T20:49:19.746 INFO:teuthology.orchestra.run.smithi160.stdout:{"epoch":1,"fsid":"d8f13c04-cf67-11ee-95bb-87774f69a715","modified":"2024-02-19T20:46:41.897688Z","created":"2024-02-19T20:46:41.897688Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi155","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:3300","nonce":0},{"type":"v1","addr":"172.21.15.155:6789","nonce":0}]},"addr":"172.21.15.155:6789/0","public_addr":"172.21.15.155:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-19T20:49:19.752 INFO:teuthology.orchestra.run.smithi160.stderr:dumped monmap epoch 1 2024-02-19T20:49:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:20 smithi155 bash[14250]: cluster 2024-02-19T20:49:19.351783+0000 mgr.smithi155.pwytll (mgr.14180) 12 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:20 smithi155 bash[14250]: audit 2024-02-19T20:49:19.370509+0000 mon.smithi155 (mon.0) 148 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:20 smithi155 bash[14250]: audit 2024-02-19T20:49:19.763362+0000 mon.smithi155 (mon.0) 149 : audit [DBG] from='client.? 172.21.15.160:0/2217067024' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-19T20:49:21.546 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-19T20:49:21.547 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph mon dump -f json 2024-02-19T20:49:22.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:22 smithi155 bash[14250]: cluster 2024-02-19T20:49:21.352234+0000 mgr.smithi155.pwytll (mgr.14180) 13 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:24.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: audit 2024-02-19T20:49:23.173965+0000 mon.smithi155 (mon.0) 150 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:24.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: cluster 2024-02-19T20:49:23.352668+0000 mgr.smithi155.pwytll (mgr.14180) 14 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:24.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: audit 2024-02-19T20:49:23.568030+0000 mon.smithi155 (mon.0) 151 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:24.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: audit 2024-02-19T20:49:23.569910+0000 mon.smithi155 (mon.0) 152 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd/host:smithi160", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:49:24.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: audit 2024-02-19T20:49:23.576562+0000 mon.smithi155 (mon.0) 153 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:24.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: audit 2024-02-19T20:49:23.578006+0000 mon.smithi155 (mon.0) 154 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:49:24.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: cephadm 2024-02-19T20:49:23.583713+0000 mgr.smithi155.pwytll (mgr.14180) 15 : cephadm [INF] Updating smithi160:/etc/ceph/ceph.conf 2024-02-19T20:49:24.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: cephadm 2024-02-19T20:49:23.613934+0000 mgr.smithi155.pwytll (mgr.14180) 16 : cephadm [INF] Updating smithi160:/etc/ceph/ceph.client.admin.keyring 2024-02-19T20:49:24.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: audit 2024-02-19T20:49:23.677642+0000 mon.smithi155 (mon.0) 155 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:24.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: audit 2024-02-19T20:49:23.682104+0000 mon.smithi155 (mon.0) 156 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:24.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: audit 2024-02-19T20:49:23.685137+0000 mon.smithi155 (mon.0) 157 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi160", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T20:49:24.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: audit 2024-02-19T20:49:23.687791+0000 mon.smithi155 (mon.0) 158 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi160", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-19T20:49:24.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:24 smithi155 bash[14250]: audit 2024-02-19T20:49:23.689057+0000 mon.smithi155 (mon.0) 159 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:25.430 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-02-19T20:49:25.430 INFO:teuthology.orchestra.run.smithi160.stdout:{"epoch":1,"fsid":"d8f13c04-cf67-11ee-95bb-87774f69a715","modified":"2024-02-19T20:46:41.897688Z","created":"2024-02-19T20:46:41.897688Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi155","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:3300","nonce":0},{"type":"v1","addr":"172.21.15.155:6789","nonce":0}]},"addr":"172.21.15.155:6789/0","public_addr":"172.21.15.155:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-19T20:49:25.433 INFO:teuthology.orchestra.run.smithi160.stderr:dumped monmap epoch 1 2024-02-19T20:49:25.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:25 smithi155 bash[14250]: cephadm 2024-02-19T20:49:23.690408+0000 mgr.smithi155.pwytll (mgr.14180) 17 : cephadm [INF] Deploying daemon crash.smithi160 on smithi160 2024-02-19T20:49:26.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:26 smithi155 bash[14250]: cluster 2024-02-19T20:49:25.353037+0000 mgr.smithi155.pwytll (mgr.14180) 18 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:26.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:26 smithi155 bash[14250]: audit 2024-02-19T20:49:25.447931+0000 mon.smithi155 (mon.0) 160 : audit [DBG] from='client.? 172.21.15.160:0/3172918624' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-19T20:49:27.178 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-19T20:49:27.178 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph mon dump -f json 2024-02-19T20:49:27.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:27 smithi155 bash[14250]: audit 2024-02-19T20:49:26.971369+0000 mon.smithi155 (mon.0) 161 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:27.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:27 smithi155 bash[14250]: audit 2024-02-19T20:49:26.975578+0000 mon.smithi155 (mon.0) 162 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi160.petcyg", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-19T20:49:27.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:27 smithi155 bash[14250]: audit 2024-02-19T20:49:26.978353+0000 mon.smithi155 (mon.0) 163 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi160.petcyg", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-02-19T20:49:27.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:27 smithi155 bash[14250]: audit 2024-02-19T20:49:26.979636+0000 mon.smithi155 (mon.0) 164 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-19T20:49:27.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:27 smithi155 bash[14250]: audit 2024-02-19T20:49:26.981261+0000 mon.smithi155 (mon.0) 165 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:27.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:27 smithi155 bash[14250]: cephadm 2024-02-19T20:49:26.982482+0000 mgr.smithi155.pwytll (mgr.14180) 19 : cephadm [INF] Deploying daemon mgr.smithi160.petcyg on smithi160 2024-02-19T20:49:27.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:27 smithi155 bash[14250]: cluster 2024-02-19T20:49:27.353508+0000 mgr.smithi155.pwytll (mgr.14180) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:29.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:29 smithi155 bash[14250]: audit 2024-02-19T20:49:28.572922+0000 mon.smithi155 (mon.0) 166 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:30.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:30 smithi155 bash[14250]: cluster 2024-02-19T20:49:29.353926+0000 mgr.smithi155.pwytll (mgr.14180) 21 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:30.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:30 smithi155 bash[14250]: audit 2024-02-19T20:49:30.167240+0000 mon.smithi155 (mon.0) 167 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:30.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:30 smithi155 bash[14250]: audit 2024-02-19T20:49:30.171260+0000 mon.smithi155 (mon.0) 168 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-19T20:49:30.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:30 smithi155 bash[14250]: audit 2024-02-19T20:49:30.172722+0000 mon.smithi155 (mon.0) 169 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:31.580 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-02-19T20:49:31.580 INFO:teuthology.orchestra.run.smithi160.stdout:{"epoch":1,"fsid":"d8f13c04-cf67-11ee-95bb-87774f69a715","modified":"2024-02-19T20:46:41.897688Z","created":"2024-02-19T20:46:41.897688Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi155","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:3300","nonce":0},{"type":"v1","addr":"172.21.15.155:6789","nonce":0}]},"addr":"172.21.15.155:6789/0","public_addr":"172.21.15.155:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-19T20:49:31.584 INFO:teuthology.orchestra.run.smithi160.stderr:dumped monmap epoch 1 2024-02-19T20:49:31.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:31 smithi155 bash[14250]: cephadm 2024-02-19T20:49:30.173986+0000 mgr.smithi155.pwytll (mgr.14180) 22 : cephadm [INF] Deploying daemon mon.smithi160 on smithi160 2024-02-19T20:49:32.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:32 smithi155 bash[14250]: cluster 2024-02-19T20:49:31.354423+0000 mgr.smithi155.pwytll (mgr.14180) 23 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:32.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:32 smithi155 bash[14250]: audit 2024-02-19T20:49:31.598381+0000 mon.smithi155 (mon.0) 170 : audit [DBG] from='client.? 172.21.15.160:0/976191830' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-19T20:49:33.645 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-19T20:49:33.645 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph mon dump -f json 2024-02-19T20:49:34.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:34 smithi155 bash[14250]: cluster 2024-02-19T20:49:33.354933+0000 mgr.smithi155.pwytll (mgr.14180) 24 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:34.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:34 smithi155 bash[14250]: audit 2024-02-19T20:49:33.579777+0000 mon.smithi155 (mon.0) 171 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:36.246 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:35 smithi155 bash[14250]: audit 2024-02-19T20:49:34.985827+0000 mon.smithi155 (mon.0) 172 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:36.246 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:35 smithi155 bash[14250]: cephadm 2024-02-19T20:49:34.988252+0000 mgr.smithi155.pwytll (mgr.14180) 25 : cephadm [INF] Deploying daemon node-exporter.smithi160 on smithi160 2024-02-19T20:49:36.246 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:35 smithi155 bash[14250]: cluster 2024-02-19T20:49:35.355431+0000 mgr.smithi155.pwytll (mgr.14180) 26 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:36.246 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:35 smithi155 bash[14250]: audit 2024-02-19T20:49:35.780396+0000 mon.smithi155 (mon.0) 173 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:36.246 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:35 smithi155 bash[14250]: audit 2024-02-19T20:49:35.783073+0000 mon.smithi155 (mon.0) 174 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:49:37.268 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:37 smithi160 bash[18819]: debug 2024-02-19T20:49:37.140+0000 7f4879b6b700 1 mon.smithi160@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-02-19T20:49:42.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:37.151478+0000 mon.smithi155 (mon.0) 175 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:37.155780+0000 mon.smithi155 (mon.0) 176 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi155"}]: dispatch 2024-02-19T20:49:42.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:37.156043+0000 mon.smithi155 (mon.0) 177 : cluster [INF] mon.smithi155 calling monitor election 2024-02-19T20:49:42.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:37.177858+0000 mon.smithi155 (mon.0) 178 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:37.355937+0000 mgr.smithi155.pwytll (mgr.14180) 27 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:38.151112+0000 mon.smithi155 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:38.586391+0000 mon.smithi155 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.160:0/81684375' entity='mgr.smithi160.petcyg' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi160.petcyg/crt"}]: dispatch 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:39.151752+0000 mon.smithi155 (mon.0) 181 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:39.152532+0000 mon.smithi160 (mon.1) 1 : cluster [INF] mon.smithi160 calling monitor election 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:39.356360+0000 mgr.smithi155.pwytll (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:40.151304+0000 mon.smithi155 (mon.0) 182 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:41.151810+0000 mon.smithi155 (mon.0) 183 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:41.356780+0000 mgr.smithi155.pwytll (mgr.14180) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:42.151903+0000 mon.smithi155 (mon.0) 184 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:42.198320+0000 mon.smithi155 (mon.0) 185 : cluster [INF] mon.smithi155 is new leader, mons smithi155,smithi160 in quorum (ranks 0,1) 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:42.204140+0000 mon.smithi155 (mon.0) 186 : cluster [DBG] monmap e2: 2 mons at {smithi155=[v2:172.21.15.155:3300/0,v1:172.21.15.155:6789/0],smithi160=[v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0]} removed_ranks: {} 2024-02-19T20:49:42.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:42.221531+0000 mon.smithi155 (mon.0) 187 : cluster [DBG] fsmap 2024-02-19T20:49:42.658 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:42.221609+0000 mon.smithi155 (mon.0) 188 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-19T20:49:42.658 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:42.222020+0000 mon.smithi155 (mon.0) 189 : cluster [DBG] mgrmap e17: smithi155.pwytll(active, since 48s) 2024-02-19T20:49:42.658 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:42.222291+0000 mon.smithi155 (mon.0) 190 : cluster [INF] overall HEALTH_OK 2024-02-19T20:49:42.658 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: cluster 2024-02-19T20:49:42.223255+0000 mon.smithi155 (mon.0) 191 : cluster [DBG] Standby manager daemon smithi160.petcyg started 2024-02-19T20:49:42.658 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:42.226943+0000 mon.smithi155 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.160:0/81684375' entity='mgr.smithi160.petcyg' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-19T20:49:42.658 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:42.230699+0000 mon.smithi155 (mon.0) 193 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:42.658 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:42.231207+0000 mon.smithi155 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.160:0/81684375' entity='mgr.smithi160.petcyg' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi160.petcyg/key"}]: dispatch 2024-02-19T20:49:42.658 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:42 smithi160 bash[18819]: audit 2024-02-19T20:49:42.232013+0000 mon.smithi155 (mon.0) 195 : audit [DBG] from='mgr.? 172.21.15.160:0/81684375' entity='mgr.smithi160.petcyg' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-19T20:49:42.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:37.151478+0000 mon.smithi155 (mon.0) 175 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:37.155780+0000 mon.smithi155 (mon.0) 176 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi155"}]: dispatch 2024-02-19T20:49:42.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:37.156043+0000 mon.smithi155 (mon.0) 177 : cluster [INF] mon.smithi155 calling monitor election 2024-02-19T20:49:42.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:37.177858+0000 mon.smithi155 (mon.0) 178 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:37.355937+0000 mgr.smithi155.pwytll (mgr.14180) 27 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:38.151112+0000 mon.smithi155 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:38.586391+0000 mon.smithi155 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.160:0/81684375' entity='mgr.smithi160.petcyg' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi160.petcyg/crt"}]: dispatch 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:39.151752+0000 mon.smithi155 (mon.0) 181 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:39.152532+0000 mon.smithi160 (mon.1) 1 : cluster [INF] mon.smithi160 calling monitor election 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:39.356360+0000 mgr.smithi155.pwytll (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:40.151304+0000 mon.smithi155 (mon.0) 182 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:41.151810+0000 mon.smithi155 (mon.0) 183 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:41.356780+0000 mgr.smithi155.pwytll (mgr.14180) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:42.151903+0000 mon.smithi155 (mon.0) 184 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:42.198320+0000 mon.smithi155 (mon.0) 185 : cluster [INF] mon.smithi155 is new leader, mons smithi155,smithi160 in quorum (ranks 0,1) 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:42.204140+0000 mon.smithi155 (mon.0) 186 : cluster [DBG] monmap e2: 2 mons at {smithi155=[v2:172.21.15.155:3300/0,v1:172.21.15.155:6789/0],smithi160=[v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0]} removed_ranks: {} 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:42.221531+0000 mon.smithi155 (mon.0) 187 : cluster [DBG] fsmap 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:42.221609+0000 mon.smithi155 (mon.0) 188 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:42.222020+0000 mon.smithi155 (mon.0) 189 : cluster [DBG] mgrmap e17: smithi155.pwytll(active, since 48s) 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:42.222291+0000 mon.smithi155 (mon.0) 190 : cluster [INF] overall HEALTH_OK 2024-02-19T20:49:42.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: cluster 2024-02-19T20:49:42.223255+0000 mon.smithi155 (mon.0) 191 : cluster [DBG] Standby manager daemon smithi160.petcyg started 2024-02-19T20:49:42.748 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:42.226943+0000 mon.smithi155 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.160:0/81684375' entity='mgr.smithi160.petcyg' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-19T20:49:42.748 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:42.230699+0000 mon.smithi155 (mon.0) 193 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:42.748 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:42.231207+0000 mon.smithi155 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.160:0/81684375' entity='mgr.smithi160.petcyg' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi160.petcyg/key"}]: dispatch 2024-02-19T20:49:42.748 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:42 smithi155 bash[14250]: audit 2024-02-19T20:49:42.232013+0000 mon.smithi155 (mon.0) 195 : audit [DBG] from='mgr.? 172.21.15.160:0/81684375' entity='mgr.smithi160.petcyg' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-19T20:49:43.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: cluster 2024-02-19T20:49:42.290849+0000 mon.smithi155 (mon.0) 196 : cluster [DBG] mgrmap e18: smithi155.pwytll(active, since 48s), standbys: smithi160.petcyg 2024-02-19T20:49:43.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:42.290996+0000 mon.smithi155 (mon.0) 197 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr metadata", "who": "smithi160.petcyg", "id": "smithi160.petcyg"}]: dispatch 2024-02-19T20:49:43.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:43.017064+0000 mon.smithi155 (mon.0) 198 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:43.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:43.018450+0000 mon.smithi155 (mon.0) 199 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:43.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:43.019918+0000 mon.smithi155 (mon.0) 200 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:49:43.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:43.050207+0000 mon.smithi155 (mon.0) 201 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:43.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:43.060747+0000 mon.smithi155 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:43.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:43.067632+0000 mon.smithi155 (mon.0) 203 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:43.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:43.073901+0000 mon.smithi155 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-19T20:49:43.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:43.075340+0000 mon.smithi155 (mon.0) 205 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-19T20:49:43.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:43.076679+0000 mon.smithi155 (mon.0) 206 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:43.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:43 smithi160 bash[18819]: audit 2024-02-19T20:49:43.152273+0000 mon.smithi155 (mon.0) 207 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: cluster 2024-02-19T20:49:42.290849+0000 mon.smithi155 (mon.0) 196 : cluster [DBG] mgrmap e18: smithi155.pwytll(active, since 48s), standbys: smithi160.petcyg 2024-02-19T20:49:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:42.290996+0000 mon.smithi155 (mon.0) 197 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr metadata", "who": "smithi160.petcyg", "id": "smithi160.petcyg"}]: dispatch 2024-02-19T20:49:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:43.017064+0000 mon.smithi155 (mon.0) 198 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:43.018450+0000 mon.smithi155 (mon.0) 199 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:43.019918+0000 mon.smithi155 (mon.0) 200 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:49:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:43.050207+0000 mon.smithi155 (mon.0) 201 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:43.060747+0000 mon.smithi155 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:43.067632+0000 mon.smithi155 (mon.0) 203 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:43.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:43.073901+0000 mon.smithi155 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-19T20:49:43.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:43.075340+0000 mon.smithi155 (mon.0) 205 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-19T20:49:43.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:43.076679+0000 mon.smithi155 (mon.0) 206 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:43.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:43 smithi155 bash[14250]: audit 2024-02-19T20:49:43.152273+0000 mon.smithi155 (mon.0) 207 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mon metadata", "id": "smithi160"}]: dispatch 2024-02-19T20:49:43.950 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-02-19T20:49:43.950 INFO:teuthology.orchestra.run.smithi160.stdout:{"epoch":2,"fsid":"d8f13c04-cf67-11ee-95bb-87774f69a715","modified":"2024-02-19T20:49:37.150812Z","created":"2024-02-19T20:46:41.897688Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi155","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:3300","nonce":0},{"type":"v1","addr":"172.21.15.155:6789","nonce":0}]},"addr":"172.21.15.155:6789/0","public_addr":"172.21.15.155:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi160","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:3300","nonce":0},{"type":"v1","addr":"172.21.15.160:6789","nonce":0}]},"addr":"172.21.15.160:6789/0","public_addr":"172.21.15.160:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-02-19T20:49:43.955 INFO:teuthology.orchestra.run.smithi160.stderr:dumped monmap epoch 2 2024-02-19T20:49:44.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:44 smithi155 bash[14250]: cephadm 2024-02-19T20:49:43.021701+0000 mgr.smithi155.pwytll (mgr.14180) 30 : cephadm [INF] Updating smithi155:/etc/ceph/ceph.conf 2024-02-19T20:49:44.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:44 smithi155 bash[14250]: cephadm 2024-02-19T20:49:43.022370+0000 mgr.smithi155.pwytll (mgr.14180) 31 : cephadm [INF] Updating smithi160:/etc/ceph/ceph.conf 2024-02-19T20:49:44.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:44 smithi155 bash[14250]: cephadm 2024-02-19T20:49:43.073403+0000 mgr.smithi155.pwytll (mgr.14180) 32 : cephadm [INF] Reconfiguring mon.smithi155 (unknown last config time)... 2024-02-19T20:49:44.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:44 smithi155 bash[14250]: cephadm 2024-02-19T20:49:43.077888+0000 mgr.smithi155.pwytll (mgr.14180) 33 : cephadm [INF] Reconfiguring daemon mon.smithi155 on smithi155 2024-02-19T20:49:44.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:44 smithi155 bash[14250]: cluster 2024-02-19T20:49:43.357056+0000 mgr.smithi155.pwytll (mgr.14180) 34 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:44.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:44 smithi155 bash[14250]: audit 2024-02-19T20:49:43.967661+0000 mon.smithi155 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.160:0/3065874340' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-19T20:49:44.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:44 smithi160 bash[18819]: cephadm 2024-02-19T20:49:43.021701+0000 mgr.smithi155.pwytll (mgr.14180) 30 : cephadm [INF] Updating smithi155:/etc/ceph/ceph.conf 2024-02-19T20:49:44.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:44 smithi160 bash[18819]: cephadm 2024-02-19T20:49:43.022370+0000 mgr.smithi155.pwytll (mgr.14180) 31 : cephadm [INF] Updating smithi160:/etc/ceph/ceph.conf 2024-02-19T20:49:44.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:44 smithi160 bash[18819]: cephadm 2024-02-19T20:49:43.073403+0000 mgr.smithi155.pwytll (mgr.14180) 32 : cephadm [INF] Reconfiguring mon.smithi155 (unknown last config time)... 2024-02-19T20:49:44.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:44 smithi160 bash[18819]: cephadm 2024-02-19T20:49:43.077888+0000 mgr.smithi155.pwytll (mgr.14180) 33 : cephadm [INF] Reconfiguring daemon mon.smithi155 on smithi155 2024-02-19T20:49:44.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:44 smithi160 bash[18819]: cluster 2024-02-19T20:49:43.357056+0000 mgr.smithi155.pwytll (mgr.14180) 34 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:44.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:44 smithi160 bash[18819]: audit 2024-02-19T20:49:43.967661+0000 mon.smithi155 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.160:0/3065874340' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-19T20:49:44.709 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-02-19T20:49:44.710 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph config generate-minimal-conf 2024-02-19T20:49:46.630 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:46 smithi155 bash[14250]: cluster 2024-02-19T20:49:45.357432+0000 mgr.smithi155.pwytll (mgr.14180) 35 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:46.630 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:46 smithi155 bash[14250]: audit 2024-02-19T20:49:45.388424+0000 mon.smithi155 (mon.0) 209 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:46.630 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:46 smithi155 bash[14250]: cephadm 2024-02-19T20:49:45.389367+0000 mgr.smithi155.pwytll (mgr.14180) 36 : cephadm [INF] Reconfiguring mgr.smithi155.pwytll (unknown last config time)... 2024-02-19T20:49:46.631 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:46 smithi155 bash[14250]: audit 2024-02-19T20:49:45.389873+0000 mon.smithi155 (mon.0) 210 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi155.pwytll", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-19T20:49:46.631 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:46 smithi155 bash[14250]: audit 2024-02-19T20:49:45.391299+0000 mon.smithi155 (mon.0) 211 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-19T20:49:46.631 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:46 smithi155 bash[14250]: audit 2024-02-19T20:49:45.392361+0000 mon.smithi155 (mon.0) 212 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:46.631 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:46 smithi155 bash[14250]: cephadm 2024-02-19T20:49:45.393268+0000 mgr.smithi155.pwytll (mgr.14180) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi155.pwytll on smithi155 2024-02-19T20:49:46.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:46 smithi160 bash[18819]: cluster 2024-02-19T20:49:45.357432+0000 mgr.smithi155.pwytll (mgr.14180) 35 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:46.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:46 smithi160 bash[18819]: audit 2024-02-19T20:49:45.388424+0000 mon.smithi155 (mon.0) 209 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:46.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:46 smithi160 bash[18819]: cephadm 2024-02-19T20:49:45.389367+0000 mgr.smithi155.pwytll (mgr.14180) 36 : cephadm [INF] Reconfiguring mgr.smithi155.pwytll (unknown last config time)... 2024-02-19T20:49:46.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:46 smithi160 bash[18819]: audit 2024-02-19T20:49:45.389873+0000 mon.smithi155 (mon.0) 210 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi155.pwytll", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-19T20:49:46.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:46 smithi160 bash[18819]: audit 2024-02-19T20:49:45.391299+0000 mon.smithi155 (mon.0) 211 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-19T20:49:46.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:46 smithi160 bash[18819]: audit 2024-02-19T20:49:45.392361+0000 mon.smithi155 (mon.0) 212 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:46.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:46 smithi160 bash[18819]: cephadm 2024-02-19T20:49:45.393268+0000 mgr.smithi155.pwytll (mgr.14180) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi155.pwytll on smithi155 2024-02-19T20:49:48.401 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:48 smithi155 bash[14250]: cluster 2024-02-19T20:49:47.357872+0000 mgr.smithi155.pwytll (mgr.14180) 38 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:48.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:48 smithi160 bash[18819]: cluster 2024-02-19T20:49:47.357872+0000 mgr.smithi155.pwytll (mgr.14180) 38 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:48.788 INFO:teuthology.orchestra.run.smithi155.stdout:# minimal ceph.conf for d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:49:48.788 INFO:teuthology.orchestra.run.smithi155.stdout:[global] 2024-02-19T20:49:48.788 INFO:teuthology.orchestra.run.smithi155.stdout: fsid = d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:49:48.788 INFO:teuthology.orchestra.run.smithi155.stdout: mon_host = [v2:172.21.15.155:3300/0,v1:172.21.15.155:6789/0] [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] 2024-02-19T20:49:49.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:49 smithi155 bash[14250]: audit 2024-02-19T20:49:48.273148+0000 mon.smithi155 (mon.0) 213 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:49.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:49 smithi155 bash[14250]: cephadm 2024-02-19T20:49:48.274216+0000 mgr.smithi155.pwytll (mgr.14180) 39 : cephadm [INF] Reconfiguring alertmanager.smithi155 (dependencies changed)... 2024-02-19T20:49:49.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:49 smithi155 bash[14250]: cephadm 2024-02-19T20:49:48.287000+0000 mgr.smithi155.pwytll (mgr.14180) 40 : cephadm [INF] Reconfiguring daemon alertmanager.smithi155 on smithi155 2024-02-19T20:49:49.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:49 smithi155 bash[14250]: audit 2024-02-19T20:49:48.804902+0000 mon.smithi155 (mon.0) 214 : audit [DBG] from='client.? 172.21.15.155:0/3271893771' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:49.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:49 smithi160 bash[18819]: audit 2024-02-19T20:49:48.273148+0000 mon.smithi155 (mon.0) 213 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:49.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:49 smithi160 bash[18819]: cephadm 2024-02-19T20:49:48.274216+0000 mgr.smithi155.pwytll (mgr.14180) 39 : cephadm [INF] Reconfiguring alertmanager.smithi155 (dependencies changed)... 2024-02-19T20:49:49.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:49 smithi160 bash[18819]: cephadm 2024-02-19T20:49:48.287000+0000 mgr.smithi155.pwytll (mgr.14180) 40 : cephadm [INF] Reconfiguring daemon alertmanager.smithi155 on smithi155 2024-02-19T20:49:49.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:49 smithi160 bash[18819]: audit 2024-02-19T20:49:48.804902+0000 mon.smithi155 (mon.0) 214 : audit [DBG] from='client.? 172.21.15.155:0/3271893771' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:49.716 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-02-19T20:49:49.716 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:49:49.716 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd of=/etc/ceph/ceph.conf 2024-02-19T20:49:49.730 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:49:49.730 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-19T20:49:49.787 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:49:49.787 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/ceph/ceph.conf 2024-02-19T20:49:49.803 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:49:49.803 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-19T20:49:49.859 INFO:tasks.cephadm:Deploying OSDs... 2024-02-19T20:49:49.859 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:49:49.860 DEBUG:teuthology.orchestra.run.smithi155:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T20:49:49.867 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-19T20:49:49.867 DEBUG:teuthology.orchestra.run.smithi155:> stat /dev/nvme1n1 2024-02-19T20:49:49.917 INFO:teuthology.orchestra.run.smithi155.stdout: File: /dev/nvme1n1 2024-02-19T20:49:49.917 INFO:teuthology.orchestra.run.smithi155.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T20:49:49.917 INFO:teuthology.orchestra.run.smithi155.stdout:Device: 5h/5d Inode: 526 Links: 1 Device type: 103,2 2024-02-19T20:49:49.917 INFO:teuthology.orchestra.run.smithi155.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T20:49:49.917 INFO:teuthology.orchestra.run.smithi155.stdout:Access: 2024-02-19 20:48:08.390552913 +0000 2024-02-19T20:49:49.917 INFO:teuthology.orchestra.run.smithi155.stdout:Modify: 2024-02-19 20:45:40.377729490 +0000 2024-02-19T20:49:49.917 INFO:teuthology.orchestra.run.smithi155.stdout:Change: 2024-02-19 20:45:40.377729490 +0000 2024-02-19T20:49:49.917 INFO:teuthology.orchestra.run.smithi155.stdout: Birth: - 2024-02-19T20:49:49.918 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-19T20:49:49.976 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records in 2024-02-19T20:49:49.976 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records out 2024-02-19T20:49:49.976 INFO:teuthology.orchestra.run.smithi155.stderr:512 bytes copied, 0.000494008 s, 1.0 MB/s 2024-02-19T20:49:49.977 DEBUG:teuthology.orchestra.run.smithi155:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-19T20:49:50.029 DEBUG:teuthology.orchestra.run.smithi155:> stat /dev/nvme2n1 2024-02-19T20:49:50.074 INFO:teuthology.orchestra.run.smithi155.stdout: File: /dev/nvme2n1 2024-02-19T20:49:50.074 INFO:teuthology.orchestra.run.smithi155.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T20:49:50.074 INFO:teuthology.orchestra.run.smithi155.stdout:Device: 5h/5d Inode: 534 Links: 1 Device type: 103,4 2024-02-19T20:49:50.074 INFO:teuthology.orchestra.run.smithi155.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T20:49:50.074 INFO:teuthology.orchestra.run.smithi155.stdout:Access: 2024-02-19 20:48:08.406552544 +0000 2024-02-19T20:49:50.074 INFO:teuthology.orchestra.run.smithi155.stdout:Modify: 2024-02-19 20:45:40.489769243 +0000 2024-02-19T20:49:50.074 INFO:teuthology.orchestra.run.smithi155.stdout:Change: 2024-02-19 20:45:40.489769243 +0000 2024-02-19T20:49:50.074 INFO:teuthology.orchestra.run.smithi155.stdout: Birth: - 2024-02-19T20:49:50.075 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-19T20:49:50.126 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records in 2024-02-19T20:49:50.126 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records out 2024-02-19T20:49:50.126 INFO:teuthology.orchestra.run.smithi155.stderr:512 bytes copied, 0.000450134 s, 1.1 MB/s 2024-02-19T20:49:50.127 DEBUG:teuthology.orchestra.run.smithi155:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-19T20:49:50.176 DEBUG:teuthology.orchestra.run.smithi155:> stat /dev/nvme3n1 2024-02-19T20:49:50.224 INFO:teuthology.orchestra.run.smithi155.stdout: File: /dev/nvme3n1 2024-02-19T20:49:50.224 INFO:teuthology.orchestra.run.smithi155.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T20:49:50.224 INFO:teuthology.orchestra.run.smithi155.stdout:Device: 5h/5d Inode: 542 Links: 1 Device type: 103,6 2024-02-19T20:49:50.224 INFO:teuthology.orchestra.run.smithi155.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T20:49:50.224 INFO:teuthology.orchestra.run.smithi155.stdout:Access: 2024-02-19 20:48:08.426552083 +0000 2024-02-19T20:49:50.224 INFO:teuthology.orchestra.run.smithi155.stdout:Modify: 2024-02-19 20:45:40.609811835 +0000 2024-02-19T20:49:50.224 INFO:teuthology.orchestra.run.smithi155.stdout:Change: 2024-02-19 20:45:40.609811835 +0000 2024-02-19T20:49:50.224 INFO:teuthology.orchestra.run.smithi155.stdout: Birth: - 2024-02-19T20:49:50.225 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-19T20:49:50.275 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records in 2024-02-19T20:49:50.275 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records out 2024-02-19T20:49:50.275 INFO:teuthology.orchestra.run.smithi155.stderr:512 bytes copied, 0.000443741 s, 1.2 MB/s 2024-02-19T20:49:50.276 DEBUG:teuthology.orchestra.run.smithi155:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-19T20:49:50.325 DEBUG:teuthology.orchestra.run.smithi155:> stat /dev/nvme4n1 2024-02-19T20:49:50.374 INFO:teuthology.orchestra.run.smithi155.stdout: File: /dev/nvme4n1 2024-02-19T20:49:50.374 INFO:teuthology.orchestra.run.smithi155.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T20:49:50.374 INFO:teuthology.orchestra.run.smithi155.stdout:Device: 5h/5d Inode: 550 Links: 1 Device type: 103,8 2024-02-19T20:49:50.374 INFO:teuthology.orchestra.run.smithi155.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T20:49:50.374 INFO:teuthology.orchestra.run.smithi155.stdout:Access: 2024-02-19 20:48:08.442551715 +0000 2024-02-19T20:49:50.374 INFO:teuthology.orchestra.run.smithi155.stdout:Modify: 2024-02-19 20:45:40.717850170 +0000 2024-02-19T20:49:50.374 INFO:teuthology.orchestra.run.smithi155.stdout:Change: 2024-02-19 20:45:40.717850170 +0000 2024-02-19T20:49:50.375 INFO:teuthology.orchestra.run.smithi155.stdout: Birth: - 2024-02-19T20:49:50.375 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-19T20:49:50.431 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:50 smithi155 bash[14250]: cluster 2024-02-19T20:49:49.358306+0000 mgr.smithi155.pwytll (mgr.14180) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:50.432 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records in 2024-02-19T20:49:50.432 INFO:teuthology.orchestra.run.smithi155.stderr:1+0 records out 2024-02-19T20:49:50.432 INFO:teuthology.orchestra.run.smithi155.stderr:512 bytes copied, 0.000452977 s, 1.1 MB/s 2024-02-19T20:49:50.433 DEBUG:teuthology.orchestra.run.smithi155:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-19T20:49:50.486 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:49:50.486 DEBUG:teuthology.orchestra.run.smithi160:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T20:49:50.493 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-19T20:49:50.493 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/nvme1n1 2024-02-19T20:49:50.545 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/nvme1n1 2024-02-19T20:49:50.545 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T20:49:50.545 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 526 Links: 1 Device type: 103,2 2024-02-19T20:49:50.545 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T20:49:50.545 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-02-19 20:49:21.408459927 +0000 2024-02-19T20:49:50.545 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-02-19 20:45:41.771792305 +0000 2024-02-19T20:49:50.545 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-02-19 20:45:41.771792305 +0000 2024-02-19T20:49:50.545 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: - 2024-02-19T20:49:50.545 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-19T20:49:50.597 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:50 smithi160 bash[18819]: cluster 2024-02-19T20:49:49.358306+0000 mgr.smithi155.pwytll (mgr.14180) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:50.600 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-02-19T20:49:50.600 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-02-19T20:49:50.600 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000487635 s, 1.0 MB/s 2024-02-19T20:49:50.601 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-19T20:49:50.654 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/nvme2n1 2024-02-19T20:49:50.704 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/nvme2n1 2024-02-19T20:49:50.704 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T20:49:50.704 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 534 Links: 1 Device type: 103,4 2024-02-19T20:49:50.705 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T20:49:50.705 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-02-19 20:49:21.428460126 +0000 2024-02-19T20:49:50.705 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-02-19 20:45:41.887847634 +0000 2024-02-19T20:49:50.705 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-02-19 20:45:41.887847634 +0000 2024-02-19T20:49:50.705 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: - 2024-02-19T20:49:50.705 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-19T20:49:50.760 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-02-19T20:49:50.760 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-02-19T20:49:50.760 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000503662 s, 1.0 MB/s 2024-02-19T20:49:50.761 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-19T20:49:50.814 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/nvme3n1 2024-02-19T20:49:50.864 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/nvme3n1 2024-02-19T20:49:50.864 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T20:49:50.865 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 542 Links: 1 Device type: 103,6 2024-02-19T20:49:50.865 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T20:49:50.865 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-02-19 20:49:21.448460325 +0000 2024-02-19T20:49:50.865 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-02-19 20:45:42.007904864 +0000 2024-02-19T20:49:50.865 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-02-19 20:45:42.007904864 +0000 2024-02-19T20:49:50.865 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: - 2024-02-19T20:49:50.865 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-19T20:49:50.919 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-02-19T20:49:50.920 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-02-19T20:49:50.920 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000468803 s, 1.1 MB/s 2024-02-19T20:49:50.921 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-19T20:49:50.970 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/nvme4n1 2024-02-19T20:49:51.020 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/nvme4n1 2024-02-19T20:49:51.020 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T20:49:51.020 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 550 Links: 1 Device type: 103,8 2024-02-19T20:49:51.020 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T20:49:51.021 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-02-19 20:49:21.468460523 +0000 2024-02-19T20:49:51.021 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-02-19 20:45:42.115956375 +0000 2024-02-19T20:49:51.021 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-02-19 20:45:42.115956375 +0000 2024-02-19T20:49:51.021 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: - 2024-02-19T20:49:51.021 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-19T20:49:51.080 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-02-19T20:49:51.080 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-02-19T20:49:51.080 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000437796 s, 1.2 MB/s 2024-02-19T20:49:51.081 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-19T20:49:51.134 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-02-19T20:49:52.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:52 smithi155 bash[14250]: cluster 2024-02-19T20:49:51.358786+0000 mgr.smithi155.pwytll (mgr.14180) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:52.514 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:52 smithi160 bash[18819]: cluster 2024-02-19T20:49:51.358786+0000 mgr.smithi155.pwytll (mgr.14180) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:54.046 INFO:teuthology.orchestra.run.smithi160.stdout:Scheduled osd.all-available-devices update... 2024-02-19T20:49:54.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:54 smithi160 bash[18819]: audit 2024-02-19T20:49:53.191026+0000 mon.smithi155 (mon.0) 215 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:54.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:54 smithi160 bash[18819]: cephadm 2024-02-19T20:49:53.192077+0000 mgr.smithi155.pwytll (mgr.14180) 43 : cephadm [INF] Reconfiguring crash.smithi155 (monmap changed)... 2024-02-19T20:49:54.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:54 smithi160 bash[18819]: audit 2024-02-19T20:49:53.192500+0000 mon.smithi155 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi155", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T20:49:54.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:54 smithi160 bash[18819]: audit 2024-02-19T20:49:53.193912+0000 mon.smithi155 (mon.0) 217 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:54.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:54 smithi160 bash[18819]: cephadm 2024-02-19T20:49:53.195083+0000 mgr.smithi155.pwytll (mgr.14180) 44 : cephadm [INF] Reconfiguring daemon crash.smithi155 on smithi155 2024-02-19T20:49:54.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:54 smithi160 bash[18819]: cluster 2024-02-19T20:49:53.359133+0000 mgr.smithi155.pwytll (mgr.14180) 45 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:54.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:54 smithi160 bash[18819]: audit 2024-02-19T20:49:54.063416+0000 mon.smithi155 (mon.0) 218 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:54.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:54 smithi155 bash[14250]: audit 2024-02-19T20:49:53.191026+0000 mon.smithi155 (mon.0) 215 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:54.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:54 smithi155 bash[14250]: cephadm 2024-02-19T20:49:53.192077+0000 mgr.smithi155.pwytll (mgr.14180) 43 : cephadm [INF] Reconfiguring crash.smithi155 (monmap changed)... 2024-02-19T20:49:54.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:54 smithi155 bash[14250]: audit 2024-02-19T20:49:53.192500+0000 mon.smithi155 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi155", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T20:49:54.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:54 smithi155 bash[14250]: audit 2024-02-19T20:49:53.193912+0000 mon.smithi155 (mon.0) 217 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:49:54.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:54 smithi155 bash[14250]: cephadm 2024-02-19T20:49:53.195083+0000 mgr.smithi155.pwytll (mgr.14180) 44 : cephadm [INF] Reconfiguring daemon crash.smithi155 on smithi155 2024-02-19T20:49:54.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:54 smithi155 bash[14250]: cluster 2024-02-19T20:49:53.359133+0000 mgr.smithi155.pwytll (mgr.14180) 45 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:54.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:54 smithi155 bash[14250]: audit 2024-02-19T20:49:54.063416+0000 mon.smithi155 (mon.0) 218 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:54.674 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-02-19T20:49:54.675 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:49:55.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:55 smithi155 bash[14250]: audit 2024-02-19T20:49:54.053936+0000 mgr.smithi155.pwytll (mgr.14180) 46 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:49:55.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:55 smithi155 bash[14250]: cephadm 2024-02-19T20:49:54.056351+0000 mgr.smithi155.pwytll (mgr.14180) 47 : cephadm [INF] Marking host: smithi155 for OSDSpec preview refresh. 2024-02-19T20:49:55.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:55 smithi155 bash[14250]: cephadm 2024-02-19T20:49:54.056448+0000 mgr.smithi155.pwytll (mgr.14180) 48 : cephadm [INF] Marking host: smithi160 for OSDSpec preview refresh. 2024-02-19T20:49:55.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:55 smithi155 bash[14250]: cephadm 2024-02-19T20:49:54.057037+0000 mgr.smithi155.pwytll (mgr.14180) 49 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-19T20:49:55.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:55 smithi160 bash[18819]: audit 2024-02-19T20:49:54.053936+0000 mgr.smithi155.pwytll (mgr.14180) 46 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:49:55.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:55 smithi160 bash[18819]: cephadm 2024-02-19T20:49:54.056351+0000 mgr.smithi155.pwytll (mgr.14180) 47 : cephadm [INF] Marking host: smithi155 for OSDSpec preview refresh. 2024-02-19T20:49:55.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:55 smithi160 bash[18819]: cephadm 2024-02-19T20:49:54.056448+0000 mgr.smithi155.pwytll (mgr.14180) 48 : cephadm [INF] Marking host: smithi160 for OSDSpec preview refresh. 2024-02-19T20:49:55.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:55 smithi160 bash[18819]: cephadm 2024-02-19T20:49:54.057037+0000 mgr.smithi155.pwytll (mgr.14180) 49 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-19T20:49:56.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:56 smithi155 bash[14250]: cluster 2024-02-19T20:49:55.359712+0000 mgr.smithi155.pwytll (mgr.14180) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:56.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:56 smithi155 bash[14250]: audit 2024-02-19T20:49:56.124191+0000 mon.smithi155 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:56.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:56 smithi160 bash[18819]: cluster 2024-02-19T20:49:55.359712+0000 mgr.smithi155.pwytll (mgr.14180) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:56.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:56 smithi160 bash[18819]: audit 2024-02-19T20:49:56.124191+0000 mon.smithi155 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:49:57.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:57 smithi155 bash[14250]: cephadm 2024-02-19T20:49:56.125320+0000 mgr.smithi155.pwytll (mgr.14180) 51 : cephadm [INF] Reconfiguring grafana.smithi155 (dependencies changed)... 2024-02-19T20:49:57.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:57 smithi155 bash[14250]: cephadm 2024-02-19T20:49:56.169324+0000 mgr.smithi155.pwytll (mgr.14180) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi155 on smithi155 2024-02-19T20:49:57.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:57 smithi160 bash[18819]: cephadm 2024-02-19T20:49:56.125320+0000 mgr.smithi155.pwytll (mgr.14180) 51 : cephadm [INF] Reconfiguring grafana.smithi155 (dependencies changed)... 2024-02-19T20:49:57.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:57 smithi160 bash[18819]: cephadm 2024-02-19T20:49:56.169324+0000 mgr.smithi155.pwytll (mgr.14180) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi155 on smithi155 2024-02-19T20:49:58.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:49:58 smithi155 bash[14250]: cluster 2024-02-19T20:49:57.360043+0000 mgr.smithi155.pwytll (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:58.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:49:58 smithi160 bash[18819]: cluster 2024-02-19T20:49:57.360043+0000 mgr.smithi155.pwytll (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:49:59.724 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:00.634 INFO:teuthology.orchestra.run.smithi155.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-02-19T20:50:00.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:00 smithi160 bash[18819]: cluster 2024-02-19T20:49:59.360419+0000 mgr.smithi155.pwytll (mgr.14180) 54 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:00.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:00 smithi160 bash[18819]: audit 2024-02-19T20:49:59.742577+0000 mon.smithi155 (mon.0) 220 : audit [DBG] from='client.? 172.21.15.155:0/1624649600' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:00.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:00 smithi160 bash[18819]: cluster 2024-02-19T20:50:00.000178+0000 mon.smithi155 (mon.0) 221 : cluster [INF] overall HEALTH_OK 2024-02-19T20:50:00.663 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:00 smithi155 bash[14250]: cluster 2024-02-19T20:49:59.360419+0000 mgr.smithi155.pwytll (mgr.14180) 54 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:00.663 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:00 smithi155 bash[14250]: audit 2024-02-19T20:49:59.742577+0000 mon.smithi155 (mon.0) 220 : audit [DBG] from='client.? 172.21.15.155:0/1624649600' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:00.663 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:00 smithi155 bash[14250]: cluster 2024-02-19T20:50:00.000178+0000 mon.smithi155 (mon.0) 221 : cluster [INF] overall HEALTH_OK 2024-02-19T20:50:01.635 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:50:02.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:02 smithi160 bash[18819]: cluster 2024-02-19T20:50:01.360959+0000 mgr.smithi155.pwytll (mgr.14180) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:02.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:02 smithi155 bash[14250]: cluster 2024-02-19T20:50:01.360959+0000 mgr.smithi155.pwytll (mgr.14180) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:04.273 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:04 smithi155 bash[14250]: audit 2024-02-19T20:50:03.217966+0000 mon.smithi155 (mon.0) 222 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:04.273 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:04 smithi155 bash[14250]: cephadm 2024-02-19T20:50:03.219049+0000 mgr.smithi155.pwytll (mgr.14180) 56 : cephadm [INF] Reconfiguring prometheus.smithi155 (dependencies changed)... 2024-02-19T20:50:04.274 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:04 smithi155 bash[14250]: cephadm 2024-02-19T20:50:03.224609+0000 mgr.smithi155.pwytll (mgr.14180) 57 : cephadm [INF] Reconfiguring daemon prometheus.smithi155 on smithi155 2024-02-19T20:50:04.274 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:04 smithi155 bash[14250]: cluster 2024-02-19T20:50:03.361250+0000 mgr.smithi155.pwytll (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:04.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:04 smithi160 bash[18819]: audit 2024-02-19T20:50:03.217966+0000 mon.smithi155 (mon.0) 222 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:04.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:04 smithi160 bash[18819]: cephadm 2024-02-19T20:50:03.219049+0000 mgr.smithi155.pwytll (mgr.14180) 56 : cephadm [INF] Reconfiguring prometheus.smithi155 (dependencies changed)... 2024-02-19T20:50:04.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:04 smithi160 bash[18819]: cephadm 2024-02-19T20:50:03.224609+0000 mgr.smithi155.pwytll (mgr.14180) 57 : cephadm [INF] Reconfiguring daemon prometheus.smithi155 on smithi155 2024-02-19T20:50:04.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:04 smithi160 bash[18819]: cluster 2024-02-19T20:50:03.361250+0000 mgr.smithi155.pwytll (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:06.609 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:06 smithi155 bash[14250]: cluster 2024-02-19T20:50:05.361753+0000 mgr.smithi155.pwytll (mgr.14180) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:06.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:06 smithi160 bash[18819]: cluster 2024-02-19T20:50:05.361753+0000 mgr.smithi155.pwytll (mgr.14180) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:07.198 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:07.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:07 smithi155 bash[14250]: audit 2024-02-19T20:50:07.216486+0000 mon.smithi155 (mon.0) 223 : audit [DBG] from='client.? 172.21.15.155:0/2032037903' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:07.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:07 smithi160 bash[18819]: audit 2024-02-19T20:50:07.216486+0000 mon.smithi155 (mon.0) 223 : audit [DBG] from='client.? 172.21.15.155:0/2032037903' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:08.479 INFO:teuthology.orchestra.run.smithi155.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-02-19T20:50:08.683 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:08 smithi155 bash[14250]: cluster 2024-02-19T20:50:07.362231+0000 mgr.smithi155.pwytll (mgr.14180) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:08.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:08 smithi160 bash[18819]: cluster 2024-02-19T20:50:07.362231+0000 mgr.smithi155.pwytll (mgr.14180) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:09.481 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:50:10.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:10 smithi155 bash[14250]: cluster 2024-02-19T20:50:09.362682+0000 mgr.smithi155.pwytll (mgr.14180) 61 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:10.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:10 smithi160 bash[18819]: cluster 2024-02-19T20:50:09.362682+0000 mgr.smithi155.pwytll (mgr.14180) 61 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:12.394 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:12 smithi160 bash[18819]: audit 2024-02-19T20:50:11.112898+0000 mon.smithi155 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:12.394 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:12 smithi160 bash[18819]: cephadm 2024-02-19T20:50:11.114140+0000 mgr.smithi155.pwytll (mgr.14180) 62 : cephadm [INF] Reconfiguring crash.smithi160 (monmap changed)... 2024-02-19T20:50:12.395 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:12 smithi160 bash[18819]: audit 2024-02-19T20:50:11.114592+0000 mon.smithi155 (mon.0) 225 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi160", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T20:50:12.395 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:12 smithi160 bash[18819]: audit 2024-02-19T20:50:11.115665+0000 mon.smithi155 (mon.0) 226 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:12.395 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:12 smithi160 bash[18819]: cephadm 2024-02-19T20:50:11.116539+0000 mgr.smithi155.pwytll (mgr.14180) 63 : cephadm [INF] Reconfiguring daemon crash.smithi160 on smithi160 2024-02-19T20:50:12.395 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:12 smithi160 bash[18819]: cluster 2024-02-19T20:50:11.363113+0000 mgr.smithi155.pwytll (mgr.14180) 64 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:12.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:12 smithi155 bash[14250]: audit 2024-02-19T20:50:11.112898+0000 mon.smithi155 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:12.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:12 smithi155 bash[14250]: cephadm 2024-02-19T20:50:11.114140+0000 mgr.smithi155.pwytll (mgr.14180) 62 : cephadm [INF] Reconfiguring crash.smithi160 (monmap changed)... 2024-02-19T20:50:12.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:12 smithi155 bash[14250]: audit 2024-02-19T20:50:11.114592+0000 mon.smithi155 (mon.0) 225 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi160", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T20:50:12.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:12 smithi155 bash[14250]: audit 2024-02-19T20:50:11.115665+0000 mon.smithi155 (mon.0) 226 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:12.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:12 smithi155 bash[14250]: cephadm 2024-02-19T20:50:11.116539+0000 mgr.smithi155.pwytll (mgr.14180) 63 : cephadm [INF] Reconfiguring daemon crash.smithi160 on smithi160 2024-02-19T20:50:12.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:12 smithi155 bash[14250]: cluster 2024-02-19T20:50:11.363113+0000 mgr.smithi155.pwytll (mgr.14180) 64 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:13.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:13 smithi155 bash[14250]: audit 2024-02-19T20:50:12.886294+0000 mon.smithi155 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:13.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:13 smithi155 bash[14250]: cephadm 2024-02-19T20:50:12.887190+0000 mgr.smithi155.pwytll (mgr.14180) 65 : cephadm [INF] Reconfiguring mgr.smithi160.petcyg (monmap changed)... 2024-02-19T20:50:13.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:13 smithi155 bash[14250]: audit 2024-02-19T20:50:12.887521+0000 mon.smithi155 (mon.0) 228 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi160.petcyg", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-19T20:50:13.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:13 smithi155 bash[14250]: audit 2024-02-19T20:50:12.888607+0000 mon.smithi155 (mon.0) 229 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-19T20:50:13.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:13 smithi155 bash[14250]: audit 2024-02-19T20:50:12.889538+0000 mon.smithi155 (mon.0) 230 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:13.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:13 smithi155 bash[14250]: cephadm 2024-02-19T20:50:12.890295+0000 mgr.smithi155.pwytll (mgr.14180) 66 : cephadm [INF] Reconfiguring daemon mgr.smithi160.petcyg on smithi160 2024-02-19T20:50:13.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:13 smithi155 bash[14250]: cluster 2024-02-19T20:50:13.363557+0000 mgr.smithi155.pwytll (mgr.14180) 67 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:14.044 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:13 smithi160 bash[18819]: audit 2024-02-19T20:50:12.886294+0000 mon.smithi155 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:14.044 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:13 smithi160 bash[18819]: cephadm 2024-02-19T20:50:12.887190+0000 mgr.smithi155.pwytll (mgr.14180) 65 : cephadm [INF] Reconfiguring mgr.smithi160.petcyg (monmap changed)... 2024-02-19T20:50:14.044 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:13 smithi160 bash[18819]: audit 2024-02-19T20:50:12.887521+0000 mon.smithi155 (mon.0) 228 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi160.petcyg", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-19T20:50:14.044 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:13 smithi160 bash[18819]: audit 2024-02-19T20:50:12.888607+0000 mon.smithi155 (mon.0) 229 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-19T20:50:14.044 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:13 smithi160 bash[18819]: audit 2024-02-19T20:50:12.889538+0000 mon.smithi155 (mon.0) 230 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:14.045 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:13 smithi160 bash[18819]: cephadm 2024-02-19T20:50:12.890295+0000 mgr.smithi155.pwytll (mgr.14180) 66 : cephadm [INF] Reconfiguring daemon mgr.smithi160.petcyg on smithi160 2024-02-19T20:50:14.045 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:13 smithi160 bash[18819]: cluster 2024-02-19T20:50:13.363557+0000 mgr.smithi155.pwytll (mgr.14180) 67 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:14.080 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:14.732 INFO:teuthology.orchestra.run.smithi155.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-02-19T20:50:14.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:14 smithi155 bash[14250]: audit 2024-02-19T20:50:14.098897+0000 mon.smithi155 (mon.0) 231 : audit [DBG] from='client.? 172.21.15.155:0/3675405969' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:14.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:14 smithi155 bash[14250]: audit 2024-02-19T20:50:14.534460+0000 mon.smithi155 (mon.0) 232 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:14.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:14 smithi155 bash[14250]: cephadm 2024-02-19T20:50:14.535544+0000 mgr.smithi155.pwytll (mgr.14180) 68 : cephadm [INF] Reconfiguring mon.smithi160 (monmap changed)... 2024-02-19T20:50:14.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:14 smithi155 bash[14250]: audit 2024-02-19T20:50:14.536022+0000 mon.smithi155 (mon.0) 233 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-19T20:50:14.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:14 smithi155 bash[14250]: audit 2024-02-19T20:50:14.537481+0000 mon.smithi155 (mon.0) 234 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-19T20:50:14.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:14 smithi155 bash[14250]: audit 2024-02-19T20:50:14.538755+0000 mon.smithi155 (mon.0) 235 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:14.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:14 smithi155 bash[14250]: cephadm 2024-02-19T20:50:14.539939+0000 mgr.smithi155.pwytll (mgr.14180) 69 : cephadm [INF] Reconfiguring daemon mon.smithi160 on smithi160 2024-02-19T20:50:15.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:14 smithi160 bash[18819]: audit 2024-02-19T20:50:14.098897+0000 mon.smithi155 (mon.0) 231 : audit [DBG] from='client.? 172.21.15.155:0/3675405969' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:15.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:14 smithi160 bash[18819]: audit 2024-02-19T20:50:14.534460+0000 mon.smithi155 (mon.0) 232 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:15.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:14 smithi160 bash[18819]: cephadm 2024-02-19T20:50:14.535544+0000 mgr.smithi155.pwytll (mgr.14180) 68 : cephadm [INF] Reconfiguring mon.smithi160 (monmap changed)... 2024-02-19T20:50:15.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:14 smithi160 bash[18819]: audit 2024-02-19T20:50:14.536022+0000 mon.smithi155 (mon.0) 233 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-19T20:50:15.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:14 smithi160 bash[18819]: audit 2024-02-19T20:50:14.537481+0000 mon.smithi155 (mon.0) 234 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-19T20:50:15.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:14 smithi160 bash[18819]: audit 2024-02-19T20:50:14.538755+0000 mon.smithi155 (mon.0) 235 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:15.156 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:14 smithi160 bash[18819]: cephadm 2024-02-19T20:50:14.539939+0000 mgr.smithi155.pwytll (mgr.14180) 69 : cephadm [INF] Reconfiguring daemon mon.smithi160 on smithi160 2024-02-19T20:50:15.733 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:50:15.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:15 smithi155 bash[14250]: cluster 2024-02-19T20:50:15.363958+0000 mgr.smithi155.pwytll (mgr.14180) 70 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:16.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:15 smithi160 bash[18819]: cluster 2024-02-19T20:50:15.363958+0000 mgr.smithi155.pwytll (mgr.14180) 70 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:17.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.191190+0000 mon.smithi155 (mon.0) 236 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.195050+0000 mon.smithi155 (mon.0) 237 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.195660+0000 mgr.smithi155.pwytll (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.197420+0000 mon.smithi155 (mon.0) 238 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi155.front.sepia.ceph.com:9093"}]: dispatch 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.198002+0000 mgr.smithi155.pwytll (mgr.14180) 72 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi155.front.sepia.ceph.com:9093"}]: dispatch 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.203271+0000 mon.smithi155 (mon.0) 239 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.209481+0000 mon.smithi155 (mon.0) 240 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.210041+0000 mgr.smithi155.pwytll (mgr.14180) 73 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.220838+0000 mon.smithi155 (mon.0) 241 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi155.front.sepia.ceph.com:3000"}]: dispatch 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.221329+0000 mgr.smithi155.pwytll (mgr.14180) 74 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi155.front.sepia.ceph.com:3000"}]: dispatch 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.227289+0000 mon.smithi155 (mon.0) 242 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.234698+0000 mon.smithi155 (mon.0) 243 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.235267+0000 mgr.smithi155.pwytll (mgr.14180) 75 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T20:50:17.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.240842+0000 mon.smithi155 (mon.0) 244 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi155.front.sepia.ceph.com:9095"}]: dispatch 2024-02-19T20:50:17.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.241589+0000 mgr.smithi155.pwytll (mgr.14180) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi155.front.sepia.ceph.com:9095"}]: dispatch 2024-02-19T20:50:17.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.247749+0000 mon.smithi155 (mon.0) 245 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:17.497 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:17 smithi155 bash[14250]: audit 2024-02-19T20:50:16.250617+0000 mon.smithi155 (mon.0) 246 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:50:17.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.191190+0000 mon.smithi155 (mon.0) 236 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:17.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.195050+0000 mon.smithi155 (mon.0) 237 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.195660+0000 mgr.smithi155.pwytll (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.197420+0000 mon.smithi155 (mon.0) 238 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi155.front.sepia.ceph.com:9093"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.198002+0000 mgr.smithi155.pwytll (mgr.14180) 72 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi155.front.sepia.ceph.com:9093"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.203271+0000 mon.smithi155 (mon.0) 239 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.209481+0000 mon.smithi155 (mon.0) 240 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.210041+0000 mgr.smithi155.pwytll (mgr.14180) 73 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.220838+0000 mon.smithi155 (mon.0) 241 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi155.front.sepia.ceph.com:3000"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.221329+0000 mgr.smithi155.pwytll (mgr.14180) 74 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi155.front.sepia.ceph.com:3000"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.227289+0000 mon.smithi155 (mon.0) 242 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.234698+0000 mon.smithi155 (mon.0) 243 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.235267+0000 mgr.smithi155.pwytll (mgr.14180) 75 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.240842+0000 mon.smithi155 (mon.0) 244 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi155.front.sepia.ceph.com:9095"}]: dispatch 2024-02-19T20:50:17.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.241589+0000 mgr.smithi155.pwytll (mgr.14180) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi155.front.sepia.ceph.com:9095"}]: dispatch 2024-02-19T20:50:17.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.247749+0000 mon.smithi155 (mon.0) 245 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:17.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:17 smithi160 bash[18819]: audit 2024-02-19T20:50:16.250617+0000 mon.smithi155 (mon.0) 246 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:50:18.459 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:18 smithi155 bash[14250]: cluster 2024-02-19T20:50:17.364412+0000 mgr.smithi155.pwytll (mgr.14180) 77 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:18.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:18 smithi160 bash[18819]: cluster 2024-02-19T20:50:17.364412+0000 mgr.smithi155.pwytll (mgr.14180) 77 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:18.812 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:19.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:19 smithi155 bash[14250]: audit 2024-02-19T20:50:18.830822+0000 mon.smithi155 (mon.0) 247 : audit [DBG] from='client.? 172.21.15.155:0/4125688397' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:19.553 INFO:teuthology.orchestra.run.smithi155.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-02-19T20:50:19.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:19 smithi160 bash[18819]: audit 2024-02-19T20:50:18.830822+0000 mon.smithi155 (mon.0) 247 : audit [DBG] from='client.? 172.21.15.155:0/4125688397' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:20.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:20 smithi155 bash[14250]: cluster 2024-02-19T20:50:19.365010+0000 mgr.smithi155.pwytll (mgr.14180) 78 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:20.555 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:50:20.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:20 smithi160 bash[18819]: cluster 2024-02-19T20:50:19.365010+0000 mgr.smithi155.pwytll (mgr.14180) 78 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:22.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: cluster 2024-02-19T20:50:21.365370+0000 mgr.smithi155.pwytll (mgr.14180) 79 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:22.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:21.529444+0000 mon.smithi155 (mon.0) 248 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:22.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:21.537409+0000 mon.smithi155 (mon.0) 249 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:22.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:21.939444+0000 mon.smithi155 (mon.0) 250 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:22.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:22.202304+0000 mon.smithi155 (mon.0) 251 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:22.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:22.203409+0000 mon.smithi155 (mon.0) 252 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:22.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:22.204374+0000 mon.smithi155 (mon.0) 253 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:50:22.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:22.209717+0000 mon.smithi155 (mon.0) 254 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:22.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:22.216759+0000 mon.smithi155 (mon.0) 255 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:50:22.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:22.222289+0000 mon.smithi155 (mon.0) 256 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T20:50:22.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:22.223719+0000 mon.smithi155 (mon.0) 257 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T20:50:22.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:22.224100+0000 mon.smithi155 (mon.0) 258 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:22.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:22 smithi160 bash[18819]: audit 2024-02-19T20:50:22.224738+0000 mon.smithi155 (mon.0) 259 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:22.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: cluster 2024-02-19T20:50:21.365370+0000 mgr.smithi155.pwytll (mgr.14180) 79 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:22.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:21.529444+0000 mon.smithi155 (mon.0) 248 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:21.537409+0000 mon.smithi155 (mon.0) 249 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:21.939444+0000 mon.smithi155 (mon.0) 250 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:22.202304+0000 mon.smithi155 (mon.0) 251 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:22.203409+0000 mon.smithi155 (mon.0) 252 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:22.204374+0000 mon.smithi155 (mon.0) 253 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:22.209717+0000 mon.smithi155 (mon.0) 254 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:22.216759+0000 mon.smithi155 (mon.0) 255 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:22.222289+0000 mon.smithi155 (mon.0) 256 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:22.223719+0000 mon.smithi155 (mon.0) 257 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:22.224100+0000 mon.smithi155 (mon.0) 258 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:22.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:22 smithi155 bash[14250]: audit 2024-02-19T20:50:22.224738+0000 mon.smithi155 (mon.0) 259 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:23.713 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:24.436 INFO:teuthology.orchestra.run.smithi155.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-02-19T20:50:24.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:24 smithi160 bash[18819]: cluster 2024-02-19T20:50:23.365690+0000 mgr.smithi155.pwytll (mgr.14180) 80 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:24.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:24 smithi160 bash[18819]: audit 2024-02-19T20:50:23.732507+0000 mon.smithi155 (mon.0) 260 : audit [DBG] from='client.? 172.21.15.155:0/1432058905' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:24 smithi155 bash[14250]: cluster 2024-02-19T20:50:23.365690+0000 mgr.smithi155.pwytll (mgr.14180) 80 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:24 smithi155 bash[14250]: audit 2024-02-19T20:50:23.732507+0000 mon.smithi155 (mon.0) 260 : audit [DBG] from='client.? 172.21.15.155:0/1432058905' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:25.438 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:50:26.831 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:26 smithi155 bash[14250]: cluster 2024-02-19T20:50:25.366106+0000 mgr.smithi155.pwytll (mgr.14180) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:26 smithi160 bash[18819]: cluster 2024-02-19T20:50:25.366106+0000 mgr.smithi155.pwytll (mgr.14180) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:28.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:28 smithi155 bash[14250]: cluster 2024-02-19T20:50:27.366386+0000 mgr.smithi155.pwytll (mgr.14180) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:28.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:28 smithi160 bash[18819]: cluster 2024-02-19T20:50:27.366386+0000 mgr.smithi155.pwytll (mgr.14180) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:29.148 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:29.763 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:29 smithi155 bash[14250]: audit 2024-02-19T20:50:29.166995+0000 mon.smithi155 (mon.0) 261 : audit [DBG] from='client.? 172.21.15.155:0/1830294568' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:29.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:29 smithi160 bash[18819]: audit 2024-02-19T20:50:29.166995+0000 mon.smithi155 (mon.0) 261 : audit [DBG] from='client.? 172.21.15.155:0/1830294568' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:30.450 INFO:teuthology.orchestra.run.smithi155.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-02-19T20:50:30.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:30 smithi155 bash[14250]: cluster 2024-02-19T20:50:29.366779+0000 mgr.smithi155.pwytll (mgr.14180) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:30.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:30 smithi160 bash[18819]: cluster 2024-02-19T20:50:29.366779+0000 mgr.smithi155.pwytll (mgr.14180) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:31.451 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:50:31.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:31 smithi155 bash[14250]: audit 2024-02-19T20:50:30.832529+0000 mon.smithi160 (mon.1) 2 : audit [INF] from='client.? 172.21.15.160:0/254189956' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "28b1c46a-86db-4a4f-9b32-7ac9f1d62664"}]: dispatch 2024-02-19T20:50:31.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:31 smithi155 bash[14250]: audit 2024-02-19T20:50:30.833786+0000 mon.smithi155 (mon.0) 262 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "28b1c46a-86db-4a4f-9b32-7ac9f1d62664"}]: dispatch 2024-02-19T20:50:31.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:31 smithi155 bash[14250]: audit 2024-02-19T20:50:30.841081+0000 mon.smithi155 (mon.0) 263 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "28b1c46a-86db-4a4f-9b32-7ac9f1d62664"}]': finished 2024-02-19T20:50:31.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:31 smithi155 bash[14250]: cluster 2024-02-19T20:50:30.841201+0000 mon.smithi155 (mon.0) 264 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-19T20:50:31.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:31 smithi155 bash[14250]: audit 2024-02-19T20:50:30.841439+0000 mon.smithi155 (mon.0) 265 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:31.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:31 smithi160 bash[18819]: audit 2024-02-19T20:50:30.832529+0000 mon.smithi160 (mon.1) 2 : audit [INF] from='client.? 172.21.15.160:0/254189956' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "28b1c46a-86db-4a4f-9b32-7ac9f1d62664"}]: dispatch 2024-02-19T20:50:31.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:31 smithi160 bash[18819]: audit 2024-02-19T20:50:30.833786+0000 mon.smithi155 (mon.0) 262 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "28b1c46a-86db-4a4f-9b32-7ac9f1d62664"}]: dispatch 2024-02-19T20:50:31.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:31 smithi160 bash[18819]: audit 2024-02-19T20:50:30.841081+0000 mon.smithi155 (mon.0) 263 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "28b1c46a-86db-4a4f-9b32-7ac9f1d62664"}]': finished 2024-02-19T20:50:31.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:31 smithi160 bash[18819]: cluster 2024-02-19T20:50:30.841201+0000 mon.smithi155 (mon.0) 264 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-19T20:50:31.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:31 smithi160 bash[18819]: audit 2024-02-19T20:50:30.841439+0000 mon.smithi155 (mon.0) 265 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:32.729 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:32 smithi155 bash[14250]: cluster 2024-02-19T20:50:31.367165+0000 mgr.smithi155.pwytll (mgr.14180) 84 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:32.729 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:32 smithi155 bash[14250]: audit 2024-02-19T20:50:32.243543+0000 mon.smithi155 (mon.0) 266 : audit [INF] from='client.? 172.21.15.155:0/683477972' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e848e2da-03dc-4b14-92a6-2a3b67e97274"}]: dispatch 2024-02-19T20:50:32.729 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:32 smithi155 bash[14250]: audit 2024-02-19T20:50:32.248564+0000 mon.smithi155 (mon.0) 267 : audit [INF] from='client.? 172.21.15.155:0/683477972' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e848e2da-03dc-4b14-92a6-2a3b67e97274"}]': finished 2024-02-19T20:50:32.729 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:32 smithi155 bash[14250]: cluster 2024-02-19T20:50:32.248620+0000 mon.smithi155 (mon.0) 268 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-19T20:50:32.730 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:32 smithi155 bash[14250]: audit 2024-02-19T20:50:32.248737+0000 mon.smithi155 (mon.0) 269 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:32.730 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:32 smithi155 bash[14250]: audit 2024-02-19T20:50:32.249196+0000 mon.smithi155 (mon.0) 270 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:32.730 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:32 smithi155 bash[14250]: audit 2024-02-19T20:50:32.469741+0000 mon.smithi160 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.160:0/1194276904' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:32.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:32 smithi160 bash[18819]: cluster 2024-02-19T20:50:31.367165+0000 mgr.smithi155.pwytll (mgr.14180) 84 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:32.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:32 smithi160 bash[18819]: audit 2024-02-19T20:50:32.243543+0000 mon.smithi155 (mon.0) 266 : audit [INF] from='client.? 172.21.15.155:0/683477972' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e848e2da-03dc-4b14-92a6-2a3b67e97274"}]: dispatch 2024-02-19T20:50:32.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:32 smithi160 bash[18819]: audit 2024-02-19T20:50:32.248564+0000 mon.smithi155 (mon.0) 267 : audit [INF] from='client.? 172.21.15.155:0/683477972' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e848e2da-03dc-4b14-92a6-2a3b67e97274"}]': finished 2024-02-19T20:50:32.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:32 smithi160 bash[18819]: cluster 2024-02-19T20:50:32.248620+0000 mon.smithi155 (mon.0) 268 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-19T20:50:32.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:32 smithi160 bash[18819]: audit 2024-02-19T20:50:32.248737+0000 mon.smithi155 (mon.0) 269 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:32.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:32 smithi160 bash[18819]: audit 2024-02-19T20:50:32.249196+0000 mon.smithi155 (mon.0) 270 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:32.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:32 smithi160 bash[18819]: audit 2024-02-19T20:50:32.469741+0000 mon.smithi160 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.160:0/1194276904' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:34.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:34 smithi160 bash[18819]: cluster 2024-02-19T20:50:33.367564+0000 mgr.smithi155.pwytll (mgr.14180) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:34.801 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:34 smithi155 bash[14250]: cluster 2024-02-19T20:50:33.367564+0000 mgr.smithi155.pwytll (mgr.14180) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:35.215 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:35.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:35 smithi155 bash[14250]: audit 2024-02-19T20:50:34.715184+0000 mon.smithi155 (mon.0) 271 : audit [DBG] from='client.? 172.21.15.155:0/1088247398' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:35.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:35 smithi155 bash[14250]: audit 2024-02-19T20:50:35.233796+0000 mon.smithi155 (mon.0) 272 : audit [DBG] from='client.? 172.21.15.155:0/996503585' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:35.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:35 smithi155 bash[14250]: audit 2024-02-19T20:50:35.252892+0000 mon.smithi160 (mon.1) 4 : audit [INF] from='client.? 172.21.15.160:0/2265423786' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b5b35e9e-831a-4f5d-a850-241802583ef7"}]: dispatch 2024-02-19T20:50:35.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:35 smithi155 bash[14250]: audit 2024-02-19T20:50:35.253745+0000 mon.smithi155 (mon.0) 273 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b5b35e9e-831a-4f5d-a850-241802583ef7"}]: dispatch 2024-02-19T20:50:35.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:35 smithi155 bash[14250]: audit 2024-02-19T20:50:35.262800+0000 mon.smithi155 (mon.0) 274 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b5b35e9e-831a-4f5d-a850-241802583ef7"}]': finished 2024-02-19T20:50:35.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:35 smithi155 bash[14250]: cluster 2024-02-19T20:50:35.262865+0000 mon.smithi155 (mon.0) 275 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-19T20:50:35.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:35 smithi155 bash[14250]: audit 2024-02-19T20:50:35.263032+0000 mon.smithi155 (mon.0) 276 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:35.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:35 smithi155 bash[14250]: audit 2024-02-19T20:50:35.263575+0000 mon.smithi155 (mon.0) 277 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:35.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:35 smithi155 bash[14250]: audit 2024-02-19T20:50:35.263909+0000 mon.smithi155 (mon.0) 278 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:35.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:35 smithi160 bash[18819]: audit 2024-02-19T20:50:34.715184+0000 mon.smithi155 (mon.0) 271 : audit [DBG] from='client.? 172.21.15.155:0/1088247398' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:35.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:35 smithi160 bash[18819]: audit 2024-02-19T20:50:35.233796+0000 mon.smithi155 (mon.0) 272 : audit [DBG] from='client.? 172.21.15.155:0/996503585' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:35.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:35 smithi160 bash[18819]: audit 2024-02-19T20:50:35.252892+0000 mon.smithi160 (mon.1) 4 : audit [INF] from='client.? 172.21.15.160:0/2265423786' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b5b35e9e-831a-4f5d-a850-241802583ef7"}]: dispatch 2024-02-19T20:50:35.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:35 smithi160 bash[18819]: audit 2024-02-19T20:50:35.253745+0000 mon.smithi155 (mon.0) 273 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b5b35e9e-831a-4f5d-a850-241802583ef7"}]: dispatch 2024-02-19T20:50:35.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:35 smithi160 bash[18819]: audit 2024-02-19T20:50:35.262800+0000 mon.smithi155 (mon.0) 274 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b5b35e9e-831a-4f5d-a850-241802583ef7"}]': finished 2024-02-19T20:50:35.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:35 smithi160 bash[18819]: cluster 2024-02-19T20:50:35.262865+0000 mon.smithi155 (mon.0) 275 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-19T20:50:35.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:35 smithi160 bash[18819]: audit 2024-02-19T20:50:35.263032+0000 mon.smithi155 (mon.0) 276 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:35.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:35 smithi160 bash[18819]: audit 2024-02-19T20:50:35.263575+0000 mon.smithi155 (mon.0) 277 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:35.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:35 smithi160 bash[18819]: audit 2024-02-19T20:50:35.263909+0000 mon.smithi155 (mon.0) 278 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:35.927 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1708375832,"num_remapped_pgs":0} 2024-02-19T20:50:36.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:36 smithi160 bash[18819]: cluster 2024-02-19T20:50:35.368003+0000 mgr.smithi155.pwytll (mgr.14180) 86 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:36.928 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:50:36.941 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:36 smithi155 bash[14250]: cluster 2024-02-19T20:50:35.368003+0000 mgr.smithi155.pwytll (mgr.14180) 86 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:37.828 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:37 smithi155 bash[14250]: audit 2024-02-19T20:50:36.840122+0000 mon.smithi160 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.160:0/997567828' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:37.828 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:37 smithi155 bash[14250]: audit 2024-02-19T20:50:37.488439+0000 mon.smithi155 (mon.0) 279 : audit [INF] from='client.? 172.21.15.155:0/292721177' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ba7e6e85-ccd3-4328-bd42-4cb5dc4c20f1"}]: dispatch 2024-02-19T20:50:37.828 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:37 smithi155 bash[14250]: audit 2024-02-19T20:50:37.493523+0000 mon.smithi155 (mon.0) 280 : audit [INF] from='client.? 172.21.15.155:0/292721177' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ba7e6e85-ccd3-4328-bd42-4cb5dc4c20f1"}]': finished 2024-02-19T20:50:37.828 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:37 smithi155 bash[14250]: cluster 2024-02-19T20:50:37.493560+0000 mon.smithi155 (mon.0) 281 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-19T20:50:37.828 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:37 smithi155 bash[14250]: audit 2024-02-19T20:50:37.493804+0000 mon.smithi155 (mon.0) 282 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:37.828 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:37 smithi155 bash[14250]: audit 2024-02-19T20:50:37.494405+0000 mon.smithi155 (mon.0) 283 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:37.828 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:37 smithi155 bash[14250]: audit 2024-02-19T20:50:37.494780+0000 mon.smithi155 (mon.0) 284 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:37.828 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:37 smithi155 bash[14250]: audit 2024-02-19T20:50:37.495109+0000 mon.smithi155 (mon.0) 285 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:50:37.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:37 smithi160 bash[18819]: audit 2024-02-19T20:50:36.840122+0000 mon.smithi160 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.160:0/997567828' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:37.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:37 smithi160 bash[18819]: audit 2024-02-19T20:50:37.488439+0000 mon.smithi155 (mon.0) 279 : audit [INF] from='client.? 172.21.15.155:0/292721177' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ba7e6e85-ccd3-4328-bd42-4cb5dc4c20f1"}]: dispatch 2024-02-19T20:50:37.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:37 smithi160 bash[18819]: audit 2024-02-19T20:50:37.493523+0000 mon.smithi155 (mon.0) 280 : audit [INF] from='client.? 172.21.15.155:0/292721177' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ba7e6e85-ccd3-4328-bd42-4cb5dc4c20f1"}]': finished 2024-02-19T20:50:37.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:37 smithi160 bash[18819]: cluster 2024-02-19T20:50:37.493560+0000 mon.smithi155 (mon.0) 281 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-19T20:50:37.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:37 smithi160 bash[18819]: audit 2024-02-19T20:50:37.493804+0000 mon.smithi155 (mon.0) 282 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:37.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:37 smithi160 bash[18819]: audit 2024-02-19T20:50:37.494405+0000 mon.smithi155 (mon.0) 283 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:37.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:37 smithi160 bash[18819]: audit 2024-02-19T20:50:37.494780+0000 mon.smithi155 (mon.0) 284 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:37.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:37 smithi160 bash[18819]: audit 2024-02-19T20:50:37.495109+0000 mon.smithi155 (mon.0) 285 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:50:38.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:38 smithi160 bash[18819]: cluster 2024-02-19T20:50:37.368423+0000 mgr.smithi155.pwytll (mgr.14180) 87 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:38.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:38 smithi155 bash[14250]: cluster 2024-02-19T20:50:37.368423+0000 mgr.smithi155.pwytll (mgr.14180) 87 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:40.572 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: cluster 2024-02-19T20:50:39.368880+0000 mgr.smithi155.pwytll (mgr.14180) 88 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: audit 2024-02-19T20:50:39.643767+0000 mon.smithi160 (mon.1) 6 : audit [INF] from='client.? 172.21.15.160:0/4268567766' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "144900e3-0f0a-42b8-912c-24a3625101be"}]: dispatch 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: audit 2024-02-19T20:50:39.644990+0000 mon.smithi155 (mon.0) 286 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "144900e3-0f0a-42b8-912c-24a3625101be"}]: dispatch 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: audit 2024-02-19T20:50:39.654571+0000 mon.smithi155 (mon.0) 287 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "144900e3-0f0a-42b8-912c-24a3625101be"}]': finished 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: cluster 2024-02-19T20:50:39.654676+0000 mon.smithi155 (mon.0) 288 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: audit 2024-02-19T20:50:39.654846+0000 mon.smithi155 (mon.0) 289 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: audit 2024-02-19T20:50:39.655269+0000 mon.smithi155 (mon.0) 290 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: audit 2024-02-19T20:50:39.655526+0000 mon.smithi155 (mon.0) 291 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: audit 2024-02-19T20:50:39.655800+0000 mon.smithi155 (mon.0) 292 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: audit 2024-02-19T20:50:39.656049+0000 mon.smithi155 (mon.0) 293 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:50:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:40 smithi160 bash[18819]: audit 2024-02-19T20:50:39.816570+0000 mon.smithi155 (mon.0) 294 : audit [DBG] from='client.? 172.21.15.155:0/2396661666' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:40.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: cluster 2024-02-19T20:50:39.368880+0000 mgr.smithi155.pwytll (mgr.14180) 88 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:40.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: audit 2024-02-19T20:50:39.643767+0000 mon.smithi160 (mon.1) 6 : audit [INF] from='client.? 172.21.15.160:0/4268567766' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "144900e3-0f0a-42b8-912c-24a3625101be"}]: dispatch 2024-02-19T20:50:40.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: audit 2024-02-19T20:50:39.644990+0000 mon.smithi155 (mon.0) 286 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "144900e3-0f0a-42b8-912c-24a3625101be"}]: dispatch 2024-02-19T20:50:40.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: audit 2024-02-19T20:50:39.654571+0000 mon.smithi155 (mon.0) 287 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "144900e3-0f0a-42b8-912c-24a3625101be"}]': finished 2024-02-19T20:50:40.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: cluster 2024-02-19T20:50:39.654676+0000 mon.smithi155 (mon.0) 288 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-19T20:50:40.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: audit 2024-02-19T20:50:39.654846+0000 mon.smithi155 (mon.0) 289 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:40.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: audit 2024-02-19T20:50:39.655269+0000 mon.smithi155 (mon.0) 290 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:40.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: audit 2024-02-19T20:50:39.655526+0000 mon.smithi155 (mon.0) 291 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:40.999 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: audit 2024-02-19T20:50:39.655800+0000 mon.smithi155 (mon.0) 292 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:50:40.999 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: audit 2024-02-19T20:50:39.656049+0000 mon.smithi155 (mon.0) 293 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:50:40.999 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:40 smithi155 bash[14250]: audit 2024-02-19T20:50:39.816570+0000 mon.smithi155 (mon.0) 294 : audit [DBG] from='client.? 172.21.15.155:0/2396661666' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:41.287 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":10,"num_osds":5,"num_up_osds":0,"osd_up_since":0,"num_in_osds":5,"osd_in_since":1708375839,"num_remapped_pgs":0} 2024-02-19T20:50:41.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:41 smithi160 bash[18819]: audit 2024-02-19T20:50:40.591686+0000 mon.smithi155 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.155:0/420465532' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:41.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:41 smithi160 bash[18819]: audit 2024-02-19T20:50:41.240245+0000 mon.smithi155 (mon.0) 296 : audit [DBG] from='client.? 172.21.15.160:0/445730772' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:41.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:41 smithi155 bash[14250]: audit 2024-02-19T20:50:40.591686+0000 mon.smithi155 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.155:0/420465532' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:41.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:41 smithi155 bash[14250]: audit 2024-02-19T20:50:41.240245+0000 mon.smithi155 (mon.0) 296 : audit [DBG] from='client.? 172.21.15.160:0/445730772' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:42.288 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:50:42.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:42 smithi155 bash[14250]: cluster 2024-02-19T20:50:41.369280+0000 mgr.smithi155.pwytll (mgr.14180) 89 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:42.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:42 smithi160 bash[18819]: cluster 2024-02-19T20:50:41.369280+0000 mgr.smithi155.pwytll (mgr.14180) 89 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:43.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:43 smithi155 bash[14250]: audit 2024-02-19T20:50:42.629025+0000 mon.smithi160 (mon.1) 7 : audit [INF] from='client.? 172.21.15.155:0/3915952250' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0ff7fca8-cfca-4506-a6e6-049e9728befd"}]: dispatch 2024-02-19T20:50:43.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:43 smithi155 bash[14250]: audit 2024-02-19T20:50:42.629953+0000 mon.smithi155 (mon.0) 297 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0ff7fca8-cfca-4506-a6e6-049e9728befd"}]: dispatch 2024-02-19T20:50:43.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:43 smithi155 bash[14250]: audit 2024-02-19T20:50:42.635993+0000 mon.smithi155 (mon.0) 298 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0ff7fca8-cfca-4506-a6e6-049e9728befd"}]': finished 2024-02-19T20:50:43.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:43 smithi155 bash[14250]: cluster 2024-02-19T20:50:42.636110+0000 mon.smithi155 (mon.0) 299 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-19T20:50:43.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:43 smithi155 bash[14250]: audit 2024-02-19T20:50:42.636322+0000 mon.smithi155 (mon.0) 300 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:43.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:43 smithi155 bash[14250]: audit 2024-02-19T20:50:42.636671+0000 mon.smithi155 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:43.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:43 smithi155 bash[14250]: audit 2024-02-19T20:50:42.636947+0000 mon.smithi155 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:43 smithi155 bash[14250]: audit 2024-02-19T20:50:42.637193+0000 mon.smithi155 (mon.0) 303 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:50:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:43 smithi155 bash[14250]: audit 2024-02-19T20:50:42.637439+0000 mon.smithi155 (mon.0) 304 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:50:43.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:43 smithi155 bash[14250]: audit 2024-02-19T20:50:42.637681+0000 mon.smithi155 (mon.0) 305 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:50:43.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:43 smithi160 bash[18819]: audit 2024-02-19T20:50:42.629025+0000 mon.smithi160 (mon.1) 7 : audit [INF] from='client.? 172.21.15.155:0/3915952250' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0ff7fca8-cfca-4506-a6e6-049e9728befd"}]: dispatch 2024-02-19T20:50:43.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:43 smithi160 bash[18819]: audit 2024-02-19T20:50:42.629953+0000 mon.smithi155 (mon.0) 297 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0ff7fca8-cfca-4506-a6e6-049e9728befd"}]: dispatch 2024-02-19T20:50:43.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:43 smithi160 bash[18819]: audit 2024-02-19T20:50:42.635993+0000 mon.smithi155 (mon.0) 298 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0ff7fca8-cfca-4506-a6e6-049e9728befd"}]': finished 2024-02-19T20:50:43.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:43 smithi160 bash[18819]: cluster 2024-02-19T20:50:42.636110+0000 mon.smithi155 (mon.0) 299 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-19T20:50:43.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:43 smithi160 bash[18819]: audit 2024-02-19T20:50:42.636322+0000 mon.smithi155 (mon.0) 300 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:43.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:43 smithi160 bash[18819]: audit 2024-02-19T20:50:42.636671+0000 mon.smithi155 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:43.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:43 smithi160 bash[18819]: audit 2024-02-19T20:50:42.636947+0000 mon.smithi155 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:43.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:43 smithi160 bash[18819]: audit 2024-02-19T20:50:42.637193+0000 mon.smithi155 (mon.0) 303 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:50:43.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:43 smithi160 bash[18819]: audit 2024-02-19T20:50:42.637439+0000 mon.smithi155 (mon.0) 304 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:50:43.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:43 smithi160 bash[18819]: audit 2024-02-19T20:50:42.637681+0000 mon.smithi155 (mon.0) 305 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:50:44.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: cluster 2024-02-19T20:50:43.369690+0000 mgr.smithi155.pwytll (mgr.14180) 90 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:44.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: audit 2024-02-19T20:50:44.026830+0000 mon.smithi160 (mon.1) 8 : audit [INF] from='client.? 172.21.15.160:0/2155094576' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2f43a040-5faf-429d-9b49-8de7023123a2"}]: dispatch 2024-02-19T20:50:44.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: audit 2024-02-19T20:50:44.027992+0000 mon.smithi155 (mon.0) 306 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2f43a040-5faf-429d-9b49-8de7023123a2"}]: dispatch 2024-02-19T20:50:44.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: audit 2024-02-19T20:50:44.035778+0000 mon.smithi155 (mon.0) 307 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2f43a040-5faf-429d-9b49-8de7023123a2"}]': finished 2024-02-19T20:50:44.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: cluster 2024-02-19T20:50:44.035842+0000 mon.smithi155 (mon.0) 308 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-19T20:50:44.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: audit 2024-02-19T20:50:44.036061+0000 mon.smithi155 (mon.0) 309 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:44.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: audit 2024-02-19T20:50:44.036620+0000 mon.smithi155 (mon.0) 310 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:44.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: audit 2024-02-19T20:50:44.036941+0000 mon.smithi155 (mon.0) 311 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:44.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: audit 2024-02-19T20:50:44.037313+0000 mon.smithi155 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:50:44.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: audit 2024-02-19T20:50:44.037657+0000 mon.smithi155 (mon.0) 313 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:50:44.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: audit 2024-02-19T20:50:44.038000+0000 mon.smithi155 (mon.0) 314 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:50:44.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:44 smithi160 bash[18819]: audit 2024-02-19T20:50:44.038343+0000 mon.smithi155 (mon.0) 315 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:50:44.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: cluster 2024-02-19T20:50:43.369690+0000 mgr.smithi155.pwytll (mgr.14180) 90 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:44.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: audit 2024-02-19T20:50:44.026830+0000 mon.smithi160 (mon.1) 8 : audit [INF] from='client.? 172.21.15.160:0/2155094576' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2f43a040-5faf-429d-9b49-8de7023123a2"}]: dispatch 2024-02-19T20:50:44.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: audit 2024-02-19T20:50:44.027992+0000 mon.smithi155 (mon.0) 306 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2f43a040-5faf-429d-9b49-8de7023123a2"}]: dispatch 2024-02-19T20:50:44.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: audit 2024-02-19T20:50:44.035778+0000 mon.smithi155 (mon.0) 307 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2f43a040-5faf-429d-9b49-8de7023123a2"}]': finished 2024-02-19T20:50:44.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: cluster 2024-02-19T20:50:44.035842+0000 mon.smithi155 (mon.0) 308 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-19T20:50:44.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: audit 2024-02-19T20:50:44.036061+0000 mon.smithi155 (mon.0) 309 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:44.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: audit 2024-02-19T20:50:44.036620+0000 mon.smithi155 (mon.0) 310 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:44.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: audit 2024-02-19T20:50:44.036941+0000 mon.smithi155 (mon.0) 311 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:44.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: audit 2024-02-19T20:50:44.037313+0000 mon.smithi155 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:50:44.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: audit 2024-02-19T20:50:44.037657+0000 mon.smithi155 (mon.0) 313 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:50:44.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: audit 2024-02-19T20:50:44.038000+0000 mon.smithi155 (mon.0) 314 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:50:44.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:44 smithi155 bash[14250]: audit 2024-02-19T20:50:44.038343+0000 mon.smithi155 (mon.0) 315 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:50:45.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:45 smithi155 bash[14250]: audit 2024-02-19T20:50:45.054212+0000 mon.smithi155 (mon.0) 316 : audit [DBG] from='client.? 172.21.15.155:0/2919866621' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:45.789 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:45.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:45 smithi160 bash[18819]: audit 2024-02-19T20:50:45.054212+0000 mon.smithi155 (mon.0) 316 : audit [DBG] from='client.? 172.21.15.155:0/2919866621' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:46.438 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":12,"num_osds":7,"num_up_osds":0,"osd_up_since":0,"num_in_osds":7,"osd_in_since":1708375844,"num_remapped_pgs":0} 2024-02-19T20:50:46.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:46 smithi155 bash[14250]: cluster 2024-02-19T20:50:45.370149+0000 mgr.smithi155.pwytll (mgr.14180) 91 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:46.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:46 smithi155 bash[14250]: audit 2024-02-19T20:50:45.744682+0000 mon.smithi160 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.160:0/4002711882' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:46.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:46 smithi155 bash[14250]: audit 2024-02-19T20:50:45.807982+0000 mon.smithi155 (mon.0) 317 : audit [DBG] from='client.? 172.21.15.155:0/1998226311' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:46.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:46 smithi160 bash[18819]: cluster 2024-02-19T20:50:45.370149+0000 mgr.smithi155.pwytll (mgr.14180) 91 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:46.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:46 smithi160 bash[18819]: audit 2024-02-19T20:50:45.744682+0000 mon.smithi160 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.160:0/4002711882' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:46.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:46 smithi160 bash[18819]: audit 2024-02-19T20:50:45.807982+0000 mon.smithi155 (mon.0) 317 : audit [DBG] from='client.? 172.21.15.155:0/1998226311' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:47.440 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:50:48.714 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: cluster 2024-02-19T20:50:47.370625+0000 mgr.smithi155.pwytll (mgr.14180) 92 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: audit 2024-02-19T20:50:47.876959+0000 mon.smithi155 (mon.0) 318 : audit [INF] from='client.? 172.21.15.155:0/70472155' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "84121283-11de-4727-ad91-4050c18381dd"}]: dispatch 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: audit 2024-02-19T20:50:47.884741+0000 mon.smithi155 (mon.0) 319 : audit [INF] from='client.? 172.21.15.155:0/70472155' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "84121283-11de-4727-ad91-4050c18381dd"}]': finished 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: cluster 2024-02-19T20:50:47.884841+0000 mon.smithi155 (mon.0) 320 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: audit 2024-02-19T20:50:47.884979+0000 mon.smithi155 (mon.0) 321 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: audit 2024-02-19T20:50:47.885365+0000 mon.smithi155 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: audit 2024-02-19T20:50:47.885842+0000 mon.smithi155 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: audit 2024-02-19T20:50:47.886296+0000 mon.smithi155 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: audit 2024-02-19T20:50:47.886777+0000 mon.smithi155 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: audit 2024-02-19T20:50:47.887305+0000 mon.smithi155 (mon.0) 326 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: audit 2024-02-19T20:50:47.887805+0000 mon.smithi155 (mon.0) 327 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:50:48.715 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:48 smithi155 bash[14250]: audit 2024-02-19T20:50:47.888312+0000 mon.smithi155 (mon.0) 328 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:50:48.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: cluster 2024-02-19T20:50:47.370625+0000 mgr.smithi155.pwytll (mgr.14180) 92 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: audit 2024-02-19T20:50:47.876959+0000 mon.smithi155 (mon.0) 318 : audit [INF] from='client.? 172.21.15.155:0/70472155' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "84121283-11de-4727-ad91-4050c18381dd"}]: dispatch 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: audit 2024-02-19T20:50:47.884741+0000 mon.smithi155 (mon.0) 319 : audit [INF] from='client.? 172.21.15.155:0/70472155' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "84121283-11de-4727-ad91-4050c18381dd"}]': finished 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: cluster 2024-02-19T20:50:47.884841+0000 mon.smithi155 (mon.0) 320 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: audit 2024-02-19T20:50:47.884979+0000 mon.smithi155 (mon.0) 321 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: audit 2024-02-19T20:50:47.885365+0000 mon.smithi155 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: audit 2024-02-19T20:50:47.885842+0000 mon.smithi155 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: audit 2024-02-19T20:50:47.886296+0000 mon.smithi155 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: audit 2024-02-19T20:50:47.886777+0000 mon.smithi155 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: audit 2024-02-19T20:50:47.887305+0000 mon.smithi155 (mon.0) 326 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: audit 2024-02-19T20:50:47.887805+0000 mon.smithi155 (mon.0) 327 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:50:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:48 smithi160 bash[18819]: audit 2024-02-19T20:50:47.888312+0000 mon.smithi155 (mon.0) 328 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:50:50.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:50 smithi160 bash[18819]: cluster 2024-02-19T20:50:49.371048+0000 mgr.smithi155.pwytll (mgr.14180) 93 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:50.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:50 smithi160 bash[18819]: audit 2024-02-19T20:50:50.264278+0000 mon.smithi155 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.155:0/1964704866' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:50.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:50 smithi155 bash[14250]: cluster 2024-02-19T20:50:49.371048+0000 mgr.smithi155.pwytll (mgr.14180) 93 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:50.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:50 smithi155 bash[14250]: audit 2024-02-19T20:50:50.264278+0000 mon.smithi155 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.155:0/1964704866' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T20:50:51.031 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:51.716 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708375847,"num_remapped_pgs":0} 2024-02-19T20:50:51.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:51 smithi160 bash[18819]: audit 2024-02-19T20:50:51.049692+0000 mon.smithi155 (mon.0) 330 : audit [DBG] from='client.? 172.21.15.155:0/1916856607' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:51.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:51 smithi155 bash[14250]: audit 2024-02-19T20:50:51.049692+0000 mon.smithi155 (mon.0) 330 : audit [DBG] from='client.? 172.21.15.155:0/1916856607' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:52.718 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:50:52.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:52 smithi160 bash[18819]: cluster 2024-02-19T20:50:51.371360+0000 mgr.smithi155.pwytll (mgr.14180) 94 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:52.913 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:52 smithi155 bash[14250]: cluster 2024-02-19T20:50:51.371360+0000 mgr.smithi155.pwytll (mgr.14180) 94 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:54.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:54 smithi160 bash[18819]: cluster 2024-02-19T20:50:53.371774+0000 mgr.smithi155.pwytll (mgr.14180) 95 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:54.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:54 smithi155 bash[14250]: cluster 2024-02-19T20:50:53.371774+0000 mgr.smithi155.pwytll (mgr.14180) 95 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:55.919 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:55 smithi155 bash[14250]: cluster 2024-02-19T20:50:55.372179+0000 mgr.smithi155.pwytll (mgr.14180) 96 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:55.964 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:55 smithi160 bash[18819]: cluster 2024-02-19T20:50:55.372179+0000 mgr.smithi155.pwytll (mgr.14180) 96 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:56.259 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:50:56.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:56 smithi160 bash[18819]: audit 2024-02-19T20:50:56.277898+0000 mon.smithi155 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.155:0/1496463042' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:56.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:56 smithi155 bash[14250]: audit 2024-02-19T20:50:56.277898+0000 mon.smithi155 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.155:0/1496463042' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:50:57.029 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708375847,"num_remapped_pgs":0} 2024-02-19T20:50:57.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:57 smithi160 bash[18819]: audit 2024-02-19T20:50:57.182070+0000 mon.smithi155 (mon.0) 332 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-19T20:50:57.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:57 smithi160 bash[18819]: audit 2024-02-19T20:50:57.184085+0000 mon.smithi155 (mon.0) 333 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:57.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:57 smithi160 bash[18819]: cephadm 2024-02-19T20:50:57.185786+0000 mgr.smithi155.pwytll (mgr.14180) 97 : cephadm [INF] Deploying daemon osd.0 on smithi160 2024-02-19T20:50:57.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:50:57 smithi160 bash[18819]: cluster 2024-02-19T20:50:57.372593+0000 mgr.smithi155.pwytll (mgr.14180) 98 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:57.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:57 smithi155 bash[14250]: audit 2024-02-19T20:50:57.182070+0000 mon.smithi155 (mon.0) 332 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-19T20:50:57.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:57 smithi155 bash[14250]: audit 2024-02-19T20:50:57.184085+0000 mon.smithi155 (mon.0) 333 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:50:57.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:57 smithi155 bash[14250]: cephadm 2024-02-19T20:50:57.185786+0000 mgr.smithi155.pwytll (mgr.14180) 97 : cephadm [INF] Deploying daemon osd.0 on smithi160 2024-02-19T20:50:57.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:50:57 smithi155 bash[14250]: cluster 2024-02-19T20:50:57.372593+0000 mgr.smithi155.pwytll (mgr.14180) 98 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:50:58.031 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:51:00.721 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:00 smithi160 bash[18819]: cluster 2024-02-19T20:50:59.372995+0000 mgr.smithi155.pwytll (mgr.14180) 99 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:00.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:00 smithi155 bash[14250]: cluster 2024-02-19T20:50:59.372995+0000 mgr.smithi155.pwytll (mgr.14180) 99 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:01.757 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:51:02.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:02 smithi155 bash[14250]: audit 2024-02-19T20:51:01.011528+0000 mon.smithi155 (mon.0) 334 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:02.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:02 smithi155 bash[14250]: audit 2024-02-19T20:51:01.012841+0000 mon.smithi155 (mon.0) 335 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-19T20:51:02.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:02 smithi155 bash[14250]: audit 2024-02-19T20:51:01.014062+0000 mon.smithi155 (mon.0) 336 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:02.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:02 smithi155 bash[14250]: cephadm 2024-02-19T20:51:01.015229+0000 mgr.smithi155.pwytll (mgr.14180) 100 : cephadm [INF] Deploying daemon osd.2 on smithi160 2024-02-19T20:51:02.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:02 smithi155 bash[14250]: cluster 2024-02-19T20:51:01.373412+0000 mgr.smithi155.pwytll (mgr.14180) 101 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:02.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:02 smithi155 bash[14250]: audit 2024-02-19T20:51:01.776145+0000 mon.smithi155 (mon.0) 337 : audit [DBG] from='client.? 172.21.15.155:0/3720597318' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:02.284 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:02 smithi160 bash[18819]: audit 2024-02-19T20:51:01.011528+0000 mon.smithi155 (mon.0) 334 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:02.284 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:02 smithi160 bash[18819]: audit 2024-02-19T20:51:01.012841+0000 mon.smithi155 (mon.0) 335 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-19T20:51:02.284 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:02 smithi160 bash[18819]: audit 2024-02-19T20:51:01.014062+0000 mon.smithi155 (mon.0) 336 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:02.285 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:02 smithi160 bash[18819]: cephadm 2024-02-19T20:51:01.015229+0000 mgr.smithi155.pwytll (mgr.14180) 100 : cephadm [INF] Deploying daemon osd.2 on smithi160 2024-02-19T20:51:02.285 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:02 smithi160 bash[18819]: cluster 2024-02-19T20:51:01.373412+0000 mgr.smithi155.pwytll (mgr.14180) 101 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:02.285 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:02 smithi160 bash[18819]: audit 2024-02-19T20:51:01.776145+0000 mon.smithi155 (mon.0) 337 : audit [DBG] from='client.? 172.21.15.155:0/3720597318' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:02.975 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708375847,"num_remapped_pgs":0} 2024-02-19T20:51:03.976 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:51:04.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:04 smithi155 bash[14250]: cluster 2024-02-19T20:51:03.373767+0000 mgr.smithi155.pwytll (mgr.14180) 102 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:04.871 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:04 smithi160 bash[18819]: cluster 2024-02-19T20:51:03.373767+0000 mgr.smithi155.pwytll (mgr.14180) 102 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:06.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:06 smithi160 bash[18819]: cluster 2024-02-19T20:51:05.374152+0000 mgr.smithi155.pwytll (mgr.14180) 103 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:06.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:06 smithi160 bash[18819]: audit 2024-02-19T20:51:05.599440+0000 mon.smithi155 (mon.0) 338 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-19T20:51:06.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:06 smithi160 bash[18819]: audit 2024-02-19T20:51:05.600746+0000 mon.smithi155 (mon.0) 339 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:06.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:06 smithi160 bash[18819]: cephadm 2024-02-19T20:51:05.601763+0000 mgr.smithi155.pwytll (mgr.14180) 104 : cephadm [INF] Deploying daemon osd.1 on smithi155 2024-02-19T20:51:06.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:06 smithi160 bash[18819]: audit 2024-02-19T20:51:06.141753+0000 mon.smithi155 (mon.0) 340 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:06.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:06 smithi160 bash[18819]: audit 2024-02-19T20:51:06.142806+0000 mon.smithi155 (mon.0) 341 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-19T20:51:06.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:06 smithi160 bash[18819]: audit 2024-02-19T20:51:06.144102+0000 mon.smithi155 (mon.0) 342 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:06.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:06 smithi155 bash[14250]: cluster 2024-02-19T20:51:05.374152+0000 mgr.smithi155.pwytll (mgr.14180) 103 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:06.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:06 smithi155 bash[14250]: audit 2024-02-19T20:51:05.599440+0000 mon.smithi155 (mon.0) 338 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-19T20:51:06.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:06 smithi155 bash[14250]: audit 2024-02-19T20:51:05.600746+0000 mon.smithi155 (mon.0) 339 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:06.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:06 smithi155 bash[14250]: cephadm 2024-02-19T20:51:05.601763+0000 mgr.smithi155.pwytll (mgr.14180) 104 : cephadm [INF] Deploying daemon osd.1 on smithi155 2024-02-19T20:51:06.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:06 smithi155 bash[14250]: audit 2024-02-19T20:51:06.141753+0000 mon.smithi155 (mon.0) 340 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:06.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:06 smithi155 bash[14250]: audit 2024-02-19T20:51:06.142806+0000 mon.smithi155 (mon.0) 341 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-19T20:51:06.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:06 smithi155 bash[14250]: audit 2024-02-19T20:51:06.144102+0000 mon.smithi155 (mon.0) 342 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:07.710 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:07 smithi160 bash[18819]: cephadm 2024-02-19T20:51:06.145081+0000 mgr.smithi155.pwytll (mgr.14180) 105 : cephadm [INF] Deploying daemon osd.4 on smithi160 2024-02-19T20:51:07.725 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:07 smithi155 bash[14250]: cephadm 2024-02-19T20:51:06.145081+0000 mgr.smithi155.pwytll (mgr.14180) 105 : cephadm [INF] Deploying daemon osd.4 on smithi160 2024-02-19T20:51:08.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:08 smithi155 bash[14250]: cluster 2024-02-19T20:51:07.374601+0000 mgr.smithi155.pwytll (mgr.14180) 106 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:08.706 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:51:08.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:08 smithi160 bash[18819]: cluster 2024-02-19T20:51:07.374601+0000 mgr.smithi155.pwytll (mgr.14180) 106 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:09.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:09 smithi155 bash[14250]: audit 2024-02-19T20:51:08.610653+0000 mon.smithi160 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.160:6800/2737759641,v1:172.21.15.160:6801/2737759641]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-19T20:51:09.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:09 smithi155 bash[14250]: audit 2024-02-19T20:51:08.611122+0000 mon.smithi155 (mon.0) 343 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-19T20:51:09.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:09 smithi155 bash[14250]: audit 2024-02-19T20:51:08.725705+0000 mon.smithi155 (mon.0) 344 : audit [DBG] from='client.? 172.21.15.155:0/2371492707' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:09.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:09 smithi160 bash[18819]: audit 2024-02-19T20:51:08.610653+0000 mon.smithi160 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.160:6800/2737759641,v1:172.21.15.160:6801/2737759641]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-19T20:51:09.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:09 smithi160 bash[18819]: audit 2024-02-19T20:51:08.611122+0000 mon.smithi155 (mon.0) 343 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-19T20:51:09.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:09 smithi160 bash[18819]: audit 2024-02-19T20:51:08.725705+0000 mon.smithi155 (mon.0) 344 : audit [DBG] from='client.? 172.21.15.155:0/2371492707' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:09.817 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708375847,"num_remapped_pgs":0} 2024-02-19T20:51:10.635 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: cluster 2024-02-19T20:51:09.375027+0000 mgr.smithi155.pwytll (mgr.14180) 107 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:10.635 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.456114+0000 mon.smithi155 (mon.0) 345 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-19T20:51:10.635 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: cluster 2024-02-19T20:51:09.456213+0000 mon.smithi155 (mon.0) 346 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-19T20:51:10.635 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.456391+0000 mon.smithi155 (mon.0) 347 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:51:10.635 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.456901+0000 mon.smithi155 (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:10.635 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.457090+0000 mon.smithi160 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.160:6800/2737759641,v1:172.21.15.160:6801/2737759641]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:10.635 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.457171+0000 mon.smithi155 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:10.636 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.457556+0000 mon.smithi155 (mon.0) 350 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:10.636 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.457947+0000 mon.smithi155 (mon.0) 351 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:10.636 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.458308+0000 mon.smithi155 (mon.0) 352 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:10.636 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.458659+0000 mon.smithi155 (mon.0) 353 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:10.636 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.458949+0000 mon.smithi155 (mon.0) 354 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:10.636 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:10 smithi160 bash[18819]: audit 2024-02-19T20:51:09.459203+0000 mon.smithi155 (mon.0) 355 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:10.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: cluster 2024-02-19T20:51:09.375027+0000 mgr.smithi155.pwytll (mgr.14180) 107 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:10.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.456114+0000 mon.smithi155 (mon.0) 345 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-19T20:51:10.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: cluster 2024-02-19T20:51:09.456213+0000 mon.smithi155 (mon.0) 346 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-19T20:51:10.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.456391+0000 mon.smithi155 (mon.0) 347 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:51:10.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.456901+0000 mon.smithi155 (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:10.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.457090+0000 mon.smithi160 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.160:6800/2737759641,v1:172.21.15.160:6801/2737759641]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:10.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.457171+0000 mon.smithi155 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:10.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.457556+0000 mon.smithi155 (mon.0) 350 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:10.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.457947+0000 mon.smithi155 (mon.0) 351 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:10.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.458308+0000 mon.smithi155 (mon.0) 352 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:10.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.458659+0000 mon.smithi155 (mon.0) 353 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:10.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.458949+0000 mon.smithi155 (mon.0) 354 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:10.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:10 smithi155 bash[14250]: audit 2024-02-19T20:51:09.459203+0000 mon.smithi155 (mon.0) 355 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:10.818 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:51:11.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: audit 2024-02-19T20:51:10.458732+0000 mon.smithi155 (mon.0) 356 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-02-19T20:51:11.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: cluster 2024-02-19T20:51:10.458866+0000 mon.smithi155 (mon.0) 357 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-19T20:51:11.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: audit 2024-02-19T20:51:10.459477+0000 mon.smithi155 (mon.0) 358 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:51:11.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: audit 2024-02-19T20:51:10.459909+0000 mon.smithi155 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:11.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: audit 2024-02-19T20:51:10.460155+0000 mon.smithi155 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:11.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: audit 2024-02-19T20:51:10.460564+0000 mon.smithi155 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:11.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: audit 2024-02-19T20:51:10.464686+0000 mon.smithi155 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:11.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: audit 2024-02-19T20:51:10.465251+0000 mon.smithi155 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:11.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: audit 2024-02-19T20:51:10.465555+0000 mon.smithi155 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:11.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: audit 2024-02-19T20:51:10.465902+0000 mon.smithi155 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:11.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:11 smithi160 bash[18819]: audit 2024-02-19T20:51:10.466393+0000 mon.smithi155 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:51:11.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: audit 2024-02-19T20:51:10.458732+0000 mon.smithi155 (mon.0) 356 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-02-19T20:51:11.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: cluster 2024-02-19T20:51:10.458866+0000 mon.smithi155 (mon.0) 357 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-19T20:51:11.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: audit 2024-02-19T20:51:10.459477+0000 mon.smithi155 (mon.0) 358 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:51:11.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: audit 2024-02-19T20:51:10.459909+0000 mon.smithi155 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:11.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: audit 2024-02-19T20:51:10.460155+0000 mon.smithi155 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:11.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: audit 2024-02-19T20:51:10.460564+0000 mon.smithi155 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:11.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: audit 2024-02-19T20:51:10.464686+0000 mon.smithi155 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:11.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: audit 2024-02-19T20:51:10.465251+0000 mon.smithi155 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:11.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: audit 2024-02-19T20:51:10.465555+0000 mon.smithi155 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:11.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: audit 2024-02-19T20:51:10.465902+0000 mon.smithi155 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:11.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:11 smithi155 bash[14250]: audit 2024-02-19T20:51:10.466393+0000 mon.smithi155 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:51:12.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: cluster 2024-02-19T20:51:09.605761+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: cluster 2024-02-19T20:51:09.605822+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: cluster 2024-02-19T20:51:11.375466+0000 mgr.smithi155.pwytll (mgr.14180) 108 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: cluster 2024-02-19T20:51:11.468197+0000 mon.smithi155 (mon.0) 367 : cluster [INF] osd.0 [v2:172.21.15.160:6800/2737759641,v1:172.21.15.160:6801/2737759641] boot 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: cluster 2024-02-19T20:51:11.468296+0000 mon.smithi155 (mon.0) 368 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.468868+0000 mon.smithi155 (mon.0) 369 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.469268+0000 mon.smithi155 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.469517+0000 mon.smithi155 (mon.0) 371 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.469759+0000 mon.smithi155 (mon.0) 372 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.469998+0000 mon.smithi155 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.470246+0000 mon.smithi155 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.470509+0000 mon.smithi155 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:12.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.470791+0000 mon.smithi155 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:12.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.662238+0000 mon.smithi155 (mon.0) 377 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:12.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.663327+0000 mon.smithi155 (mon.0) 378 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-19T20:51:12.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:11.664455+0000 mon.smithi155 (mon.0) 379 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:12.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: cephadm 2024-02-19T20:51:11.665348+0000 mgr.smithi155.pwytll (mgr.14180) 109 : cephadm [INF] Deploying daemon osd.6 on smithi160 2024-02-19T20:51:12.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:12.082267+0000 mon.smithi155 (mon.0) 380 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:12.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:12.083592+0000 mon.smithi155 (mon.0) 381 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-19T20:51:12.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:12 smithi155 bash[14250]: audit 2024-02-19T20:51:12.084339+0000 mon.smithi155 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:12.759 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: cluster 2024-02-19T20:51:09.605761+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:12.759 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: cluster 2024-02-19T20:51:09.605822+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:12.759 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: cluster 2024-02-19T20:51:11.375466+0000 mgr.smithi155.pwytll (mgr.14180) 108 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T20:51:12.759 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: cluster 2024-02-19T20:51:11.468197+0000 mon.smithi155 (mon.0) 367 : cluster [INF] osd.0 [v2:172.21.15.160:6800/2737759641,v1:172.21.15.160:6801/2737759641] boot 2024-02-19T20:51:12.759 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: cluster 2024-02-19T20:51:11.468296+0000 mon.smithi155 (mon.0) 368 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-19T20:51:12.759 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.468868+0000 mon.smithi155 (mon.0) 369 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T20:51:12.759 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.469268+0000 mon.smithi155 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:12.759 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.469517+0000 mon.smithi155 (mon.0) 371 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.469759+0000 mon.smithi155 (mon.0) 372 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.469998+0000 mon.smithi155 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.470246+0000 mon.smithi155 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.470509+0000 mon.smithi155 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.470791+0000 mon.smithi155 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.662238+0000 mon.smithi155 (mon.0) 377 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.663327+0000 mon.smithi155 (mon.0) 378 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:11.664455+0000 mon.smithi155 (mon.0) 379 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: cephadm 2024-02-19T20:51:11.665348+0000 mgr.smithi155.pwytll (mgr.14180) 109 : cephadm [INF] Deploying daemon osd.6 on smithi160 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:12.082267+0000 mon.smithi155 (mon.0) 380 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:12.083592+0000 mon.smithi155 (mon.0) 381 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-19T20:51:12.760 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:12 smithi160 bash[18819]: audit 2024-02-19T20:51:12.084339+0000 mon.smithi155 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:13.637 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:13 smithi160 bash[18819]: cephadm 2024-02-19T20:51:12.084970+0000 mgr.smithi155.pwytll (mgr.14180) 110 : cephadm [INF] Deploying daemon osd.3 on smithi155 2024-02-19T20:51:13.637 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:13 smithi160 bash[18819]: cluster 2024-02-19T20:51:12.477390+0000 mon.smithi155 (mon.0) 383 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-19T20:51:13.637 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:13 smithi160 bash[18819]: audit 2024-02-19T20:51:12.477918+0000 mon.smithi155 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:13.637 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:13 smithi160 bash[18819]: audit 2024-02-19T20:51:12.478218+0000 mon.smithi155 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:13.637 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:13 smithi160 bash[18819]: audit 2024-02-19T20:51:12.478406+0000 mon.smithi155 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:13.637 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:13 smithi160 bash[18819]: audit 2024-02-19T20:51:12.478612+0000 mon.smithi155 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:13.637 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:13 smithi160 bash[18819]: audit 2024-02-19T20:51:12.478805+0000 mon.smithi155 (mon.0) 388 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:13.637 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:13 smithi160 bash[18819]: audit 2024-02-19T20:51:12.478994+0000 mon.smithi155 (mon.0) 389 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:13.637 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:13 smithi160 bash[18819]: audit 2024-02-19T20:51:12.479166+0000 mon.smithi155 (mon.0) 390 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:13.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:13 smithi155 bash[14250]: cephadm 2024-02-19T20:51:12.084970+0000 mgr.smithi155.pwytll (mgr.14180) 110 : cephadm [INF] Deploying daemon osd.3 on smithi155 2024-02-19T20:51:13.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:13 smithi155 bash[14250]: cluster 2024-02-19T20:51:12.477390+0000 mon.smithi155 (mon.0) 383 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-19T20:51:13.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:13 smithi155 bash[14250]: audit 2024-02-19T20:51:12.477918+0000 mon.smithi155 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:13.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:13 smithi155 bash[14250]: audit 2024-02-19T20:51:12.478218+0000 mon.smithi155 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:13.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:13 smithi155 bash[14250]: audit 2024-02-19T20:51:12.478406+0000 mon.smithi155 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:13.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:13 smithi155 bash[14250]: audit 2024-02-19T20:51:12.478612+0000 mon.smithi155 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:13.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:13 smithi155 bash[14250]: audit 2024-02-19T20:51:12.478805+0000 mon.smithi155 (mon.0) 388 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:13.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:13 smithi155 bash[14250]: audit 2024-02-19T20:51:12.478994+0000 mon.smithi155 (mon.0) 389 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:13.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:13 smithi155 bash[14250]: audit 2024-02-19T20:51:12.479166+0000 mon.smithi155 (mon.0) 390 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:14.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:14 smithi160 bash[18819]: cluster 2024-02-19T20:51:13.375906+0000 mgr.smithi155.pwytll (mgr.14180) 111 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-19T20:51:14.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:14 smithi160 bash[18819]: audit 2024-02-19T20:51:14.048047+0000 mon.smithi160 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.160:6808/2390546642,v1:172.21.15.160:6809/2390546642]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-19T20:51:14.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:14 smithi160 bash[18819]: audit 2024-02-19T20:51:14.049004+0000 mon.smithi155 (mon.0) 391 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-19T20:51:14.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:14 smithi155 bash[14250]: cluster 2024-02-19T20:51:13.375906+0000 mgr.smithi155.pwytll (mgr.14180) 111 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-19T20:51:14.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:14 smithi155 bash[14250]: audit 2024-02-19T20:51:14.048047+0000 mon.smithi160 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.160:6808/2390546642,v1:172.21.15.160:6809/2390546642]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-19T20:51:14.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:14 smithi155 bash[14250]: audit 2024-02-19T20:51:14.049004+0000 mon.smithi155 (mon.0) 391 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-19T20:51:15.377 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:51:15.560 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:14.571710+0000 mon.smithi155 (mon.0) 392 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-02-19T20:51:15.560 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: cluster 2024-02-19T20:51:14.571805+0000 mon.smithi155 (mon.0) 393 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-19T20:51:15.560 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:14.571967+0000 mon.smithi155 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:15.560 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:14.572292+0000 mon.smithi155 (mon.0) 395 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:15.563 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:14.572504+0000 mon.smithi155 (mon.0) 396 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:15.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:14.572602+0000 mon.smithi160 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.160:6808/2390546642,v1:172.21.15.160:6809/2390546642]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:15.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:14.572696+0000 mon.smithi155 (mon.0) 397 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:15.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:14.572969+0000 mon.smithi155 (mon.0) 398 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:15.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:14.573295+0000 mon.smithi155 (mon.0) 399 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:15.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:14.573538+0000 mon.smithi155 (mon.0) 400 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:15.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:14.573718+0000 mon.smithi155 (mon.0) 401 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:15.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:15 smithi160 bash[18819]: audit 2024-02-19T20:51:15.396178+0000 mon.smithi155 (mon.0) 402 : audit [DBG] from='client.? 172.21.15.155:0/2270697699' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:15.948 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:14.571710+0000 mon.smithi155 (mon.0) 392 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-02-19T20:51:15.948 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: cluster 2024-02-19T20:51:14.571805+0000 mon.smithi155 (mon.0) 393 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-19T20:51:15.948 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:14.571967+0000 mon.smithi155 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:15.949 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:14.572292+0000 mon.smithi155 (mon.0) 395 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:15.949 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:14.572504+0000 mon.smithi155 (mon.0) 396 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:15.949 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:14.572602+0000 mon.smithi160 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.160:6808/2390546642,v1:172.21.15.160:6809/2390546642]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:15.949 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:14.572696+0000 mon.smithi155 (mon.0) 397 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:15.949 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:14.572969+0000 mon.smithi155 (mon.0) 398 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:15.949 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:14.573295+0000 mon.smithi155 (mon.0) 399 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:15.949 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:14.573538+0000 mon.smithi155 (mon.0) 400 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:15.949 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:14.573718+0000 mon.smithi155 (mon.0) 401 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:15.949 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:15 smithi155 bash[14250]: audit 2024-02-19T20:51:15.396178+0000 mon.smithi155 (mon.0) 402 : audit [DBG] from='client.? 172.21.15.155:0/2270697699' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:16.567 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: cluster 2024-02-19T20:51:15.376359+0000 mgr.smithi155.pwytll (mgr.14180) 112 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-19T20:51:16.567 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: audit 2024-02-19T20:51:15.574225+0000 mon.smithi155 (mon.0) 403 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-02-19T20:51:16.567 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: cluster 2024-02-19T20:51:15.574301+0000 mon.smithi155 (mon.0) 404 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-19T20:51:16.567 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: audit 2024-02-19T20:51:15.574793+0000 mon.smithi155 (mon.0) 405 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:16.567 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: audit 2024-02-19T20:51:15.575509+0000 mon.smithi155 (mon.0) 406 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:16.568 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: audit 2024-02-19T20:51:15.575806+0000 mon.smithi155 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:16.568 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: audit 2024-02-19T20:51:15.576088+0000 mon.smithi155 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:16.568 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: audit 2024-02-19T20:51:15.576374+0000 mon.smithi155 (mon.0) 409 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:16.568 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: audit 2024-02-19T20:51:15.576672+0000 mon.smithi155 (mon.0) 410 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:16.568 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: audit 2024-02-19T20:51:15.576950+0000 mon.smithi155 (mon.0) 411 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:16.568 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:16 smithi155 bash[14250]: audit 2024-02-19T20:51:15.581280+0000 mon.smithi155 (mon.0) 412 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:16.858 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: cluster 2024-02-19T20:51:15.376359+0000 mgr.smithi155.pwytll (mgr.14180) 112 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-19T20:51:16.858 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: audit 2024-02-19T20:51:15.574225+0000 mon.smithi155 (mon.0) 403 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-02-19T20:51:16.858 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: cluster 2024-02-19T20:51:15.574301+0000 mon.smithi155 (mon.0) 404 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-19T20:51:16.858 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: audit 2024-02-19T20:51:15.574793+0000 mon.smithi155 (mon.0) 405 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:16.858 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: audit 2024-02-19T20:51:15.575509+0000 mon.smithi155 (mon.0) 406 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:16.858 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: audit 2024-02-19T20:51:15.575806+0000 mon.smithi155 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:16.859 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: audit 2024-02-19T20:51:15.576088+0000 mon.smithi155 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:16.859 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: audit 2024-02-19T20:51:15.576374+0000 mon.smithi155 (mon.0) 409 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:16.859 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: audit 2024-02-19T20:51:15.576672+0000 mon.smithi155 (mon.0) 410 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:16.859 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: audit 2024-02-19T20:51:15.576950+0000 mon.smithi155 (mon.0) 411 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:16.859 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:16 smithi160 bash[18819]: audit 2024-02-19T20:51:15.581280+0000 mon.smithi155 (mon.0) 412 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:16.962 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":18,"num_osds":8,"num_up_osds":1,"osd_up_since":1708375871,"num_in_osds":8,"osd_in_since":1708375847,"num_remapped_pgs":0} 2024-02-19T20:51:17.839 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: cluster 2024-02-19T20:51:15.013222+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:17.839 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: cluster 2024-02-19T20:51:15.013307+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:17.839 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: cluster 2024-02-19T20:51:16.582690+0000 mon.smithi155 (mon.0) 413 : cluster [INF] osd.2 [v2:172.21.15.160:6808/2390546642,v1:172.21.15.160:6809/2390546642] boot 2024-02-19T20:51:17.840 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: cluster 2024-02-19T20:51:16.582780+0000 mon.smithi155 (mon.0) 414 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-19T20:51:17.840 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: audit 2024-02-19T20:51:16.583307+0000 mon.smithi155 (mon.0) 415 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:17.840 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: audit 2024-02-19T20:51:16.583959+0000 mon.smithi155 (mon.0) 416 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:17.840 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: audit 2024-02-19T20:51:16.584344+0000 mon.smithi155 (mon.0) 417 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:17.840 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: audit 2024-02-19T20:51:16.584547+0000 mon.smithi155 (mon.0) 418 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:17.840 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: audit 2024-02-19T20:51:16.584802+0000 mon.smithi155 (mon.0) 419 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:17.840 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: audit 2024-02-19T20:51:16.585019+0000 mon.smithi155 (mon.0) 420 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:17.841 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: audit 2024-02-19T20:51:16.589656+0000 mon.smithi155 (mon.0) 421 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:17.841 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:17 smithi155 bash[14250]: audit 2024-02-19T20:51:16.840245+0000 mon.smithi155 (mon.0) 422 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:17.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: cluster 2024-02-19T20:51:15.013222+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:17.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: cluster 2024-02-19T20:51:15.013307+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:17.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: cluster 2024-02-19T20:51:16.582690+0000 mon.smithi155 (mon.0) 413 : cluster [INF] osd.2 [v2:172.21.15.160:6808/2390546642,v1:172.21.15.160:6809/2390546642] boot 2024-02-19T20:51:17.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: cluster 2024-02-19T20:51:16.582780+0000 mon.smithi155 (mon.0) 414 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-19T20:51:17.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: audit 2024-02-19T20:51:16.583307+0000 mon.smithi155 (mon.0) 415 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T20:51:17.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: audit 2024-02-19T20:51:16.583959+0000 mon.smithi155 (mon.0) 416 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:17.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: audit 2024-02-19T20:51:16.584344+0000 mon.smithi155 (mon.0) 417 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:17.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: audit 2024-02-19T20:51:16.584547+0000 mon.smithi155 (mon.0) 418 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:17.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: audit 2024-02-19T20:51:16.584802+0000 mon.smithi155 (mon.0) 419 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:17.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: audit 2024-02-19T20:51:16.585019+0000 mon.smithi155 (mon.0) 420 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:17.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: audit 2024-02-19T20:51:16.589656+0000 mon.smithi155 (mon.0) 421 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:17.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:17 smithi160 bash[18819]: audit 2024-02-19T20:51:16.840245+0000 mon.smithi155 (mon.0) 422 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:17.963 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:51:18.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:18 smithi160 bash[18819]: cluster 2024-02-19T20:51:17.376732+0000 mgr.smithi155.pwytll (mgr.14180) 113 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-19T20:51:18.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:18 smithi160 bash[18819]: cluster 2024-02-19T20:51:17.851336+0000 mon.smithi155 (mon.0) 423 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-02-19T20:51:18.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:18 smithi160 bash[18819]: audit 2024-02-19T20:51:17.851479+0000 mon.smithi155 (mon.0) 424 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:18.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:18 smithi160 bash[18819]: audit 2024-02-19T20:51:17.851865+0000 mon.smithi155 (mon.0) 425 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:18.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:18 smithi160 bash[18819]: audit 2024-02-19T20:51:17.852088+0000 mon.smithi155 (mon.0) 426 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:18.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:18 smithi160 bash[18819]: audit 2024-02-19T20:51:17.852397+0000 mon.smithi155 (mon.0) 427 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:18.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:18 smithi160 bash[18819]: audit 2024-02-19T20:51:17.852660+0000 mon.smithi155 (mon.0) 428 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:18.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:18 smithi160 bash[18819]: audit 2024-02-19T20:51:17.852936+0000 mon.smithi155 (mon.0) 429 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:18.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:18 smithi155 bash[14250]: cluster 2024-02-19T20:51:17.376732+0000 mgr.smithi155.pwytll (mgr.14180) 113 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-19T20:51:18.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:18 smithi155 bash[14250]: cluster 2024-02-19T20:51:17.851336+0000 mon.smithi155 (mon.0) 423 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-02-19T20:51:18.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:18 smithi155 bash[14250]: audit 2024-02-19T20:51:17.851479+0000 mon.smithi155 (mon.0) 424 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:18.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:18 smithi155 bash[14250]: audit 2024-02-19T20:51:17.851865+0000 mon.smithi155 (mon.0) 425 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:18.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:18 smithi155 bash[14250]: audit 2024-02-19T20:51:17.852088+0000 mon.smithi155 (mon.0) 426 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:18.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:18 smithi155 bash[14250]: audit 2024-02-19T20:51:17.852397+0000 mon.smithi155 (mon.0) 427 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:18.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:18 smithi155 bash[14250]: audit 2024-02-19T20:51:17.852660+0000 mon.smithi155 (mon.0) 428 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:18.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:18 smithi155 bash[14250]: audit 2024-02-19T20:51:17.852936+0000 mon.smithi155 (mon.0) 429 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:19.843 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:19 smithi160 bash[18819]: audit 2024-02-19T20:51:19.274680+0000 mon.smithi160 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.160:6816/957957975,v1:172.21.15.160:6817/957957975]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-19T20:51:19.843 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:19 smithi160 bash[18819]: audit 2024-02-19T20:51:19.275286+0000 mon.smithi155 (mon.0) 430 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-19T20:51:19.927 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:19 smithi155 bash[14250]: audit 2024-02-19T20:51:19.274680+0000 mon.smithi160 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.160:6816/957957975,v1:172.21.15.160:6817/957957975]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-19T20:51:19.927 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:19 smithi155 bash[14250]: audit 2024-02-19T20:51:19.275286+0000 mon.smithi155 (mon.0) 430 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-19T20:51:20.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: cluster 2024-02-19T20:51:19.377113+0000 mgr.smithi155.pwytll (mgr.14180) 114 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-19T20:51:20.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:19.598763+0000 mon.smithi155 (mon.0) 431 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-19T20:51:20.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: cluster 2024-02-19T20:51:19.598872+0000 mon.smithi155 (mon.0) 432 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2024-02-19T20:51:20.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:19.599004+0000 mon.smithi155 (mon.0) 433 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:19.599416+0000 mon.smithi155 (mon.0) 434 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:19.599645+0000 mon.smithi160 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.160:6816/957957975,v1:172.21.15.160:6817/957957975]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:19.599676+0000 mon.smithi155 (mon.0) 435 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:19.599939+0000 mon.smithi155 (mon.0) 436 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:19.600377+0000 mon.smithi155 (mon.0) 437 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:19.600657+0000 mon.smithi155 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:19.600898+0000 mon.smithi155 (mon.0) 439 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:20.280366+0000 mon.smithi155 (mon.0) 440 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:20.281265+0000 mon.smithi155 (mon.0) 441 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-19T20:51:20.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:20 smithi155 bash[14250]: audit 2024-02-19T20:51:20.282047+0000 mon.smithi155 (mon.0) 442 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:20.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: cluster 2024-02-19T20:51:19.377113+0000 mgr.smithi155.pwytll (mgr.14180) 114 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-19T20:51:20.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:19.598763+0000 mon.smithi155 (mon.0) 431 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: cluster 2024-02-19T20:51:19.598872+0000 mon.smithi155 (mon.0) 432 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:19.599004+0000 mon.smithi155 (mon.0) 433 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:19.599416+0000 mon.smithi155 (mon.0) 434 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:19.599645+0000 mon.smithi160 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.160:6816/957957975,v1:172.21.15.160:6817/957957975]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:19.599676+0000 mon.smithi155 (mon.0) 435 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:19.599939+0000 mon.smithi155 (mon.0) 436 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:19.600377+0000 mon.smithi155 (mon.0) 437 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:19.600657+0000 mon.smithi155 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:19.600898+0000 mon.smithi155 (mon.0) 439 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:20.280366+0000 mon.smithi155 (mon.0) 440 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:20.281265+0000 mon.smithi155 (mon.0) 441 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-19T20:51:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:20 smithi160 bash[18819]: audit 2024-02-19T20:51:20.282047+0000 mon.smithi155 (mon.0) 442 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:21.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:21 smithi160 bash[18819]: cephadm 2024-02-19T20:51:20.282662+0000 mgr.smithi155.pwytll (mgr.14180) 115 : cephadm [INF] Deploying daemon osd.5 on smithi155 2024-02-19T20:51:21.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:21 smithi160 bash[18819]: audit 2024-02-19T20:51:20.601449+0000 mon.smithi155 (mon.0) 443 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-02-19T20:51:21.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:21 smithi160 bash[18819]: cluster 2024-02-19T20:51:20.601523+0000 mon.smithi155 (mon.0) 444 : cluster [DBG] osdmap e23: 8 total, 2 up, 8 in 2024-02-19T20:51:21.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:21 smithi160 bash[18819]: audit 2024-02-19T20:51:20.602023+0000 mon.smithi155 (mon.0) 445 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:21.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:21 smithi160 bash[18819]: audit 2024-02-19T20:51:20.602277+0000 mon.smithi155 (mon.0) 446 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:21.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:21 smithi160 bash[18819]: audit 2024-02-19T20:51:20.602493+0000 mon.smithi155 (mon.0) 447 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:21.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:21 smithi160 bash[18819]: audit 2024-02-19T20:51:20.602642+0000 mon.smithi155 (mon.0) 448 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:21.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:21 smithi160 bash[18819]: audit 2024-02-19T20:51:20.602824+0000 mon.smithi155 (mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:21.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:21 smithi160 bash[18819]: audit 2024-02-19T20:51:20.603006+0000 mon.smithi155 (mon.0) 450 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:21.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:21 smithi160 bash[18819]: audit 2024-02-19T20:51:20.610405+0000 mon.smithi155 (mon.0) 451 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:21.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:21 smithi155 bash[14250]: cephadm 2024-02-19T20:51:20.282662+0000 mgr.smithi155.pwytll (mgr.14180) 115 : cephadm [INF] Deploying daemon osd.5 on smithi155 2024-02-19T20:51:21.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:21 smithi155 bash[14250]: audit 2024-02-19T20:51:20.601449+0000 mon.smithi155 (mon.0) 443 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-02-19T20:51:21.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:21 smithi155 bash[14250]: cluster 2024-02-19T20:51:20.601523+0000 mon.smithi155 (mon.0) 444 : cluster [DBG] osdmap e23: 8 total, 2 up, 8 in 2024-02-19T20:51:21.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:21 smithi155 bash[14250]: audit 2024-02-19T20:51:20.602023+0000 mon.smithi155 (mon.0) 445 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:21.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:21 smithi155 bash[14250]: audit 2024-02-19T20:51:20.602277+0000 mon.smithi155 (mon.0) 446 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:21.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:21 smithi155 bash[14250]: audit 2024-02-19T20:51:20.602493+0000 mon.smithi155 (mon.0) 447 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:21.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:21 smithi155 bash[14250]: audit 2024-02-19T20:51:20.602642+0000 mon.smithi155 (mon.0) 448 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:21.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:21 smithi155 bash[14250]: audit 2024-02-19T20:51:20.602824+0000 mon.smithi155 (mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:21.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:21 smithi155 bash[14250]: audit 2024-02-19T20:51:20.603006+0000 mon.smithi155 (mon.0) 450 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:21.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:21 smithi155 bash[14250]: audit 2024-02-19T20:51:20.610405+0000 mon.smithi155 (mon.0) 451 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:22.784 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: cluster 2024-02-19T20:51:20.291518+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:22.785 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: cluster 2024-02-19T20:51:20.291626+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:22.785 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: cluster 2024-02-19T20:51:21.377564+0000 mgr.smithi155.pwytll (mgr.14180) 116 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-19T20:51:22.785 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: audit 2024-02-19T20:51:21.614216+0000 mon.smithi155 (mon.0) 452 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:22.785 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: cluster 2024-02-19T20:51:21.618344+0000 mon.smithi155 (mon.0) 453 : cluster [INF] osd.4 [v2:172.21.15.160:6816/957957975,v1:172.21.15.160:6817/957957975] boot 2024-02-19T20:51:22.785 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: cluster 2024-02-19T20:51:21.618382+0000 mon.smithi155 (mon.0) 454 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-19T20:51:22.785 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: audit 2024-02-19T20:51:21.618534+0000 mon.smithi155 (mon.0) 455 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:22.785 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: audit 2024-02-19T20:51:21.618851+0000 mon.smithi155 (mon.0) 456 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:22.785 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: audit 2024-02-19T20:51:21.619039+0000 mon.smithi155 (mon.0) 457 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:22.785 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: audit 2024-02-19T20:51:21.619305+0000 mon.smithi155 (mon.0) 458 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:22.785 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: audit 2024-02-19T20:51:21.619601+0000 mon.smithi155 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:22.786 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: audit 2024-02-19T20:51:21.619822+0000 mon.smithi155 (mon.0) 460 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:22.786 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: audit 2024-02-19T20:51:21.620052+0000 mon.smithi155 (mon.0) 461 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-02-19T20:51:22.786 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: audit 2024-02-19T20:51:21.784161+0000 mon.smithi160 (mon.1) 16 : audit [INF] from='osd.1 [v2:172.21.15.155:6802/3601805210,v1:172.21.15.155:6803/3601805210]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-19T20:51:22.786 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:22 smithi155 bash[14250]: audit 2024-02-19T20:51:22.080918+0000 mon.smithi155 (mon.0) 462 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-19T20:51:22.830 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: cluster 2024-02-19T20:51:20.291518+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: cluster 2024-02-19T20:51:20.291626+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: cluster 2024-02-19T20:51:21.377564+0000 mgr.smithi155.pwytll (mgr.14180) 116 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: audit 2024-02-19T20:51:21.614216+0000 mon.smithi155 (mon.0) 452 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: cluster 2024-02-19T20:51:21.618344+0000 mon.smithi155 (mon.0) 453 : cluster [INF] osd.4 [v2:172.21.15.160:6816/957957975,v1:172.21.15.160:6817/957957975] boot 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: cluster 2024-02-19T20:51:21.618382+0000 mon.smithi155 (mon.0) 454 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: audit 2024-02-19T20:51:21.618534+0000 mon.smithi155 (mon.0) 455 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: audit 2024-02-19T20:51:21.618851+0000 mon.smithi155 (mon.0) 456 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: audit 2024-02-19T20:51:21.619039+0000 mon.smithi155 (mon.0) 457 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: audit 2024-02-19T20:51:21.619305+0000 mon.smithi155 (mon.0) 458 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: audit 2024-02-19T20:51:21.619601+0000 mon.smithi155 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: audit 2024-02-19T20:51:21.619822+0000 mon.smithi155 (mon.0) 460 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:22.831 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: audit 2024-02-19T20:51:21.620052+0000 mon.smithi155 (mon.0) 461 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-02-19T20:51:22.832 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: audit 2024-02-19T20:51:21.784161+0000 mon.smithi160 (mon.1) 16 : audit [INF] from='osd.1 [v2:172.21.15.155:6802/3601805210,v1:172.21.15.155:6803/3601805210]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-19T20:51:22.832 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:22 smithi160 bash[18819]: audit 2024-02-19T20:51:22.080918+0000 mon.smithi155 (mon.0) 462 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-19T20:51:23.084 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:51:23.753 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:22.622175+0000 mon.smithi155 (mon.0) 463 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-02-19T20:51:23.753 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:22.622264+0000 mon.smithi155 (mon.0) 464 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-19T20:51:23.753 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: cluster 2024-02-19T20:51:22.622350+0000 mon.smithi155 (mon.0) 465 : cluster [DBG] osdmap e25: 8 total, 3 up, 8 in 2024-02-19T20:51:23.753 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:22.622491+0000 mon.smithi155 (mon.0) 466 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:23.754 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:22.622809+0000 mon.smithi155 (mon.0) 467 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:23.754 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:22.622990+0000 mon.smithi155 (mon.0) 468 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:23.754 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:22.623173+0000 mon.smithi155 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:23.754 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:22.623390+0000 mon.smithi155 (mon.0) 470 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:23.754 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:22.623600+0000 mon.smithi160 (mon.1) 17 : audit [INF] from='osd.1 [v2:172.21.15.155:6802/3601805210,v1:172.21.15.155:6803/3601805210]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]: dispatch 2024-02-19T20:51:23.754 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:22.623959+0000 mon.smithi155 (mon.0) 471 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]: dispatch 2024-02-19T20:51:23.754 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:22.624253+0000 mon.smithi155 (mon.0) 472 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-19T20:51:23.754 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:23.103433+0000 mon.smithi155 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.155:0/3346615407' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:23.754 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:23.512708+0000 mon.smithi160 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.160:6824/2998001154,v1:172.21.15.160:6825/2998001154]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-19T20:51:23.754 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:23 smithi155 bash[14250]: audit 2024-02-19T20:51:23.513431+0000 mon.smithi155 (mon.0) 474 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-19T20:51:23.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:22.622175+0000 mon.smithi155 (mon.0) 463 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:22.622264+0000 mon.smithi155 (mon.0) 464 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: cluster 2024-02-19T20:51:22.622350+0000 mon.smithi155 (mon.0) 465 : cluster [DBG] osdmap e25: 8 total, 3 up, 8 in 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:22.622491+0000 mon.smithi155 (mon.0) 466 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:22.622809+0000 mon.smithi155 (mon.0) 467 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:22.622990+0000 mon.smithi155 (mon.0) 468 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:22.623173+0000 mon.smithi155 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:22.623390+0000 mon.smithi155 (mon.0) 470 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:22.623600+0000 mon.smithi160 (mon.1) 17 : audit [INF] from='osd.1 [v2:172.21.15.155:6802/3601805210,v1:172.21.15.155:6803/3601805210]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]: dispatch 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:22.623959+0000 mon.smithi155 (mon.0) 471 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]: dispatch 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:22.624253+0000 mon.smithi155 (mon.0) 472 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:23.103433+0000 mon.smithi155 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.155:0/3346615407' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:23.512708+0000 mon.smithi160 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.160:6824/2998001154,v1:172.21.15.160:6825/2998001154]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-19T20:51:23.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:23 smithi160 bash[18819]: audit 2024-02-19T20:51:23.513431+0000 mon.smithi155 (mon.0) 474 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-19T20:51:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: cluster 2024-02-19T20:51:23.377987+0000 mgr.smithi155.pwytll (mgr.14180) 117 : cluster [DBG] pgmap v89: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-19T20:51:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.624981+0000 mon.smithi155 (mon.0) 475 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]': finished 2024-02-19T20:51:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.625074+0000 mon.smithi155 (mon.0) 476 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-19T20:51:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.625185+0000 mon.smithi155 (mon.0) 477 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-19T20:51:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: cluster 2024-02-19T20:51:23.625270+0000 mon.smithi155 (mon.0) 478 : cluster [DBG] osdmap e26: 8 total, 3 up, 8 in 2024-02-19T20:51:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.625701+0000 mon.smithi155 (mon.0) 479 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.626001+0000 mon.smithi155 (mon.0) 480 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.626159+0000 mon.smithi155 (mon.0) 481 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:24.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.626340+0000 mon.smithi155 (mon.0) 482 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:24.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.626502+0000 mon.smithi155 (mon.0) 483 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:24.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.629581+0000 mon.smithi160 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.160:6824/2998001154,v1:172.21.15.160:6825/2998001154]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:24.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.633862+0000 mon.smithi155 (mon.0) 484 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:24.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:24 smithi155 bash[14250]: audit 2024-02-19T20:51:23.635325+0000 mon.smithi155 (mon.0) 485 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:24.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: cluster 2024-02-19T20:51:23.377987+0000 mgr.smithi155.pwytll (mgr.14180) 117 : cluster [DBG] pgmap v89: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-19T20:51:24.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.624981+0000 mon.smithi155 (mon.0) 475 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]': finished 2024-02-19T20:51:24.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.625074+0000 mon.smithi155 (mon.0) 476 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-19T20:51:24.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.625185+0000 mon.smithi155 (mon.0) 477 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-19T20:51:24.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: cluster 2024-02-19T20:51:23.625270+0000 mon.smithi155 (mon.0) 478 : cluster [DBG] osdmap e26: 8 total, 3 up, 8 in 2024-02-19T20:51:24.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.625701+0000 mon.smithi155 (mon.0) 479 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:24.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.626001+0000 mon.smithi155 (mon.0) 480 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:24.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.626159+0000 mon.smithi155 (mon.0) 481 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:24.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.626340+0000 mon.smithi155 (mon.0) 482 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:24.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.626502+0000 mon.smithi155 (mon.0) 483 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:24.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.629581+0000 mon.smithi160 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.160:6824/2998001154,v1:172.21.15.160:6825/2998001154]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:24.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.633862+0000 mon.smithi155 (mon.0) 484 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:24.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:24 smithi160 bash[18819]: audit 2024-02-19T20:51:23.635325+0000 mon.smithi155 (mon.0) 485 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-02-19T20:51:24.925 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":25,"num_osds":8,"num_up_osds":3,"osd_up_since":1708375881,"num_in_osds":8,"osd_in_since":1708375847,"num_remapped_pgs":0} 2024-02-19T20:51:25.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: cluster 2024-02-19T20:51:22.825642+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:25.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: cluster 2024-02-19T20:51:22.825711+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:25.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: audit 2024-02-19T20:51:24.634854+0000 mon.smithi155 (mon.0) 486 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-02-19T20:51:25.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: cluster 2024-02-19T20:51:24.634970+0000 mon.smithi155 (mon.0) 487 : cluster [INF] osd.1 [v2:172.21.15.155:6802/3601805210,v1:172.21.15.155:6803/3601805210] boot 2024-02-19T20:51:25.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: cluster 2024-02-19T20:51:24.635007+0000 mon.smithi155 (mon.0) 488 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-02-19T20:51:25.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: audit 2024-02-19T20:51:24.635547+0000 mon.smithi155 (mon.0) 489 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:25.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: audit 2024-02-19T20:51:24.636406+0000 mon.smithi155 (mon.0) 490 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:25.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: audit 2024-02-19T20:51:24.641000+0000 mon.smithi155 (mon.0) 491 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:25.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: audit 2024-02-19T20:51:24.641331+0000 mon.smithi155 (mon.0) 492 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:25.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: audit 2024-02-19T20:51:24.641570+0000 mon.smithi155 (mon.0) 493 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:25.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:25 smithi160 bash[18819]: audit 2024-02-19T20:51:25.243097+0000 mon.smithi155 (mon.0) 494 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:25.926 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:51:25.936 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: cluster 2024-02-19T20:51:22.825642+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:25.937 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: cluster 2024-02-19T20:51:22.825711+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:25.937 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: audit 2024-02-19T20:51:24.634854+0000 mon.smithi155 (mon.0) 486 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-02-19T20:51:25.937 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: cluster 2024-02-19T20:51:24.634970+0000 mon.smithi155 (mon.0) 487 : cluster [INF] osd.1 [v2:172.21.15.155:6802/3601805210,v1:172.21.15.155:6803/3601805210] boot 2024-02-19T20:51:25.937 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: cluster 2024-02-19T20:51:24.635007+0000 mon.smithi155 (mon.0) 488 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-02-19T20:51:25.937 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: audit 2024-02-19T20:51:24.635547+0000 mon.smithi155 (mon.0) 489 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T20:51:25.937 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: audit 2024-02-19T20:51:24.636406+0000 mon.smithi155 (mon.0) 490 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:25.937 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: audit 2024-02-19T20:51:24.641000+0000 mon.smithi155 (mon.0) 491 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:25.937 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: audit 2024-02-19T20:51:24.641331+0000 mon.smithi155 (mon.0) 492 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:25.937 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: audit 2024-02-19T20:51:24.641570+0000 mon.smithi155 (mon.0) 493 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:25.937 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:25 smithi155 bash[14250]: audit 2024-02-19T20:51:25.243097+0000 mon.smithi155 (mon.0) 494 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:26.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:26 smithi160 bash[18819]: cluster 2024-02-19T20:51:24.474639+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:26 smithi160 bash[18819]: cluster 2024-02-19T20:51:24.474702+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:26 smithi160 bash[18819]: cluster 2024-02-19T20:51:25.378327+0000 mgr.smithi155.pwytll (mgr.14180) 118 : cluster [DBG] pgmap v92: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-19T20:51:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:26 smithi160 bash[18819]: cluster 2024-02-19T20:51:25.641729+0000 mon.smithi155 (mon.0) 495 : cluster [INF] osd.6 [v2:172.21.15.160:6824/2998001154,v1:172.21.15.160:6825/2998001154] boot 2024-02-19T20:51:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:26 smithi160 bash[18819]: cluster 2024-02-19T20:51:25.641819+0000 mon.smithi155 (mon.0) 496 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-02-19T20:51:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:26 smithi160 bash[18819]: audit 2024-02-19T20:51:25.642314+0000 mon.smithi155 (mon.0) 497 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:26 smithi160 bash[18819]: audit 2024-02-19T20:51:25.642702+0000 mon.smithi155 (mon.0) 498 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:26 smithi160 bash[18819]: audit 2024-02-19T20:51:25.642942+0000 mon.smithi155 (mon.0) 499 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:26 smithi160 bash[18819]: audit 2024-02-19T20:51:25.643244+0000 mon.smithi155 (mon.0) 500 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:26.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:26 smithi155 bash[14250]: cluster 2024-02-19T20:51:24.474639+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:26.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:26 smithi155 bash[14250]: cluster 2024-02-19T20:51:24.474702+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:26.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:26 smithi155 bash[14250]: cluster 2024-02-19T20:51:25.378327+0000 mgr.smithi155.pwytll (mgr.14180) 118 : cluster [DBG] pgmap v92: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-19T20:51:26.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:26 smithi155 bash[14250]: cluster 2024-02-19T20:51:25.641729+0000 mon.smithi155 (mon.0) 495 : cluster [INF] osd.6 [v2:172.21.15.160:6824/2998001154,v1:172.21.15.160:6825/2998001154] boot 2024-02-19T20:51:26.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:26 smithi155 bash[14250]: cluster 2024-02-19T20:51:25.641819+0000 mon.smithi155 (mon.0) 496 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-02-19T20:51:26.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:26 smithi155 bash[14250]: audit 2024-02-19T20:51:25.642314+0000 mon.smithi155 (mon.0) 497 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:26.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:26 smithi155 bash[14250]: audit 2024-02-19T20:51:25.642702+0000 mon.smithi155 (mon.0) 498 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:26.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:26 smithi155 bash[14250]: audit 2024-02-19T20:51:25.642942+0000 mon.smithi155 (mon.0) 499 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T20:51:26.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:26 smithi155 bash[14250]: audit 2024-02-19T20:51:25.643244+0000 mon.smithi155 (mon.0) 500 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:27.882 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:27 smithi155 bash[14250]: cluster 2024-02-19T20:51:26.658259+0000 mon.smithi155 (mon.0) 501 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-02-19T20:51:27.883 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:27 smithi155 bash[14250]: audit 2024-02-19T20:51:26.658397+0000 mon.smithi155 (mon.0) 502 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:27.883 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:27 smithi155 bash[14250]: audit 2024-02-19T20:51:26.658688+0000 mon.smithi155 (mon.0) 503 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:27.883 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:27 smithi155 bash[14250]: audit 2024-02-19T20:51:26.658914+0000 mon.smithi155 (mon.0) 504 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:27.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:27 smithi160 bash[18819]: cluster 2024-02-19T20:51:26.658259+0000 mon.smithi155 (mon.0) 501 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-02-19T20:51:27.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:27 smithi160 bash[18819]: audit 2024-02-19T20:51:26.658397+0000 mon.smithi155 (mon.0) 502 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:27.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:27 smithi160 bash[18819]: audit 2024-02-19T20:51:26.658688+0000 mon.smithi155 (mon.0) 503 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:27.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:27 smithi160 bash[18819]: audit 2024-02-19T20:51:26.658914+0000 mon.smithi155 (mon.0) 504 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:28.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:28 smithi155 bash[14250]: cluster 2024-02-19T20:51:27.378680+0000 mgr.smithi155.pwytll (mgr.14180) 119 : cluster [DBG] pgmap v95: 1 pgs: 1 unknown; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-19T20:51:28.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:28 smithi155 bash[14250]: cluster 2024-02-19T20:51:27.666391+0000 mon.smithi155 (mon.0) 505 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-02-19T20:51:28.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:28 smithi155 bash[14250]: audit 2024-02-19T20:51:27.666652+0000 mon.smithi155 (mon.0) 506 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:28.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:28 smithi155 bash[14250]: audit 2024-02-19T20:51:27.666861+0000 mon.smithi155 (mon.0) 507 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:28.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:28 smithi155 bash[14250]: audit 2024-02-19T20:51:27.667154+0000 mon.smithi155 (mon.0) 508 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:28.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:28 smithi155 bash[14250]: audit 2024-02-19T20:51:28.176974+0000 mon.smithi155 (mon.0) 509 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:28.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:28 smithi155 bash[14250]: audit 2024-02-19T20:51:28.178414+0000 mon.smithi155 (mon.0) 510 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-19T20:51:28.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:28 smithi155 bash[14250]: audit 2024-02-19T20:51:28.179631+0000 mon.smithi155 (mon.0) 511 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:28.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:28 smithi160 bash[18819]: cluster 2024-02-19T20:51:27.378680+0000 mgr.smithi155.pwytll (mgr.14180) 119 : cluster [DBG] pgmap v95: 1 pgs: 1 unknown; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-19T20:51:28.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:28 smithi160 bash[18819]: cluster 2024-02-19T20:51:27.666391+0000 mon.smithi155 (mon.0) 505 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-02-19T20:51:28.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:28 smithi160 bash[18819]: audit 2024-02-19T20:51:27.666652+0000 mon.smithi155 (mon.0) 506 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:28.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:28 smithi160 bash[18819]: audit 2024-02-19T20:51:27.666861+0000 mon.smithi155 (mon.0) 507 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:28.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:28 smithi160 bash[18819]: audit 2024-02-19T20:51:27.667154+0000 mon.smithi155 (mon.0) 508 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:28.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:28 smithi160 bash[18819]: audit 2024-02-19T20:51:28.176974+0000 mon.smithi155 (mon.0) 509 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:28.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:28 smithi160 bash[18819]: audit 2024-02-19T20:51:28.178414+0000 mon.smithi155 (mon.0) 510 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-19T20:51:28.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:28 smithi160 bash[18819]: audit 2024-02-19T20:51:28.179631+0000 mon.smithi155 (mon.0) 511 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:51:29.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:29 smithi155 bash[14250]: cephadm 2024-02-19T20:51:28.180680+0000 mgr.smithi155.pwytll (mgr.14180) 120 : cephadm [INF] Deploying daemon osd.7 on smithi155 2024-02-19T20:51:29.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:29 smithi155 bash[14250]: cluster 2024-02-19T20:51:28.673607+0000 mon.smithi155 (mon.0) 512 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2024-02-19T20:51:29.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:29 smithi155 bash[14250]: audit 2024-02-19T20:51:28.673755+0000 mon.smithi155 (mon.0) 513 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:29.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:29 smithi155 bash[14250]: audit 2024-02-19T20:51:28.674054+0000 mon.smithi155 (mon.0) 514 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:29.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:29 smithi155 bash[14250]: audit 2024-02-19T20:51:28.674230+0000 mon.smithi155 (mon.0) 515 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:30.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:29 smithi160 bash[18819]: cephadm 2024-02-19T20:51:28.180680+0000 mgr.smithi155.pwytll (mgr.14180) 120 : cephadm [INF] Deploying daemon osd.7 on smithi155 2024-02-19T20:51:30.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:29 smithi160 bash[18819]: cluster 2024-02-19T20:51:28.673607+0000 mon.smithi155 (mon.0) 512 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2024-02-19T20:51:30.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:29 smithi160 bash[18819]: audit 2024-02-19T20:51:28.673755+0000 mon.smithi155 (mon.0) 513 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:30.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:29 smithi160 bash[18819]: audit 2024-02-19T20:51:28.674054+0000 mon.smithi155 (mon.0) 514 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:30.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:29 smithi160 bash[18819]: audit 2024-02-19T20:51:28.674230+0000 mon.smithi155 (mon.0) 515 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:30.923 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:51:30.945 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:30 smithi155 bash[14250]: cluster 2024-02-19T20:51:29.379191+0000 mgr.smithi155.pwytll (mgr.14180) 121 : cluster [DBG] pgmap v98: 1 pgs: 1 unknown; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-19T20:51:31.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:30 smithi160 bash[18819]: cluster 2024-02-19T20:51:29.379191+0000 mgr.smithi155.pwytll (mgr.14180) 121 : cluster [DBG] pgmap v98: 1 pgs: 1 unknown; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-19T20:51:31.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:31 smithi155 bash[14250]: audit 2024-02-19T20:51:30.942741+0000 mon.smithi155 (mon.0) 516 : audit [DBG] from='client.? 172.21.15.155:0/1291223946' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:31.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:31 smithi155 bash[14250]: audit 2024-02-19T20:51:31.198215+0000 mon.smithi155 (mon.0) 517 : audit [INF] from='osd.3 [v2:172.21.15.155:6810/268552064,v1:172.21.15.155:6811/268552064]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-19T20:51:32.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:31 smithi160 bash[18819]: audit 2024-02-19T20:51:30.942741+0000 mon.smithi155 (mon.0) 516 : audit [DBG] from='client.? 172.21.15.155:0/1291223946' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:32.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:31 smithi160 bash[18819]: audit 2024-02-19T20:51:31.198215+0000 mon.smithi155 (mon.0) 517 : audit [INF] from='osd.3 [v2:172.21.15.155:6810/268552064,v1:172.21.15.155:6811/268552064]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-19T20:51:32.536 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":31,"num_osds":8,"num_up_osds":5,"osd_up_since":1708375885,"num_in_osds":8,"osd_in_since":1708375847,"num_remapped_pgs":0} 2024-02-19T20:51:32.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:32 smithi155 bash[14250]: cluster 2024-02-19T20:51:31.379668+0000 mgr.smithi155.pwytll (mgr.14180) 122 : cluster [DBG] pgmap v99: 1 pgs: 1 unknown; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-19T20:51:32.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:32 smithi155 bash[14250]: audit 2024-02-19T20:51:31.693548+0000 mon.smithi155 (mon.0) 518 : audit [INF] from='osd.3 [v2:172.21.15.155:6810/268552064,v1:172.21.15.155:6811/268552064]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-19T20:51:32.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:32 smithi155 bash[14250]: cluster 2024-02-19T20:51:31.693607+0000 mon.smithi155 (mon.0) 519 : cluster [DBG] osdmap e32: 8 total, 5 up, 8 in 2024-02-19T20:51:32.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:32 smithi155 bash[14250]: audit 2024-02-19T20:51:31.693936+0000 mon.smithi155 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:32.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:32 smithi155 bash[14250]: audit 2024-02-19T20:51:31.694245+0000 mon.smithi155 (mon.0) 521 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:32.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:32 smithi155 bash[14250]: audit 2024-02-19T20:51:31.694473+0000 mon.smithi155 (mon.0) 522 : audit [INF] from='osd.3 [v2:172.21.15.155:6810/268552064,v1:172.21.15.155:6811/268552064]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]: dispatch 2024-02-19T20:51:32.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:32 smithi155 bash[14250]: audit 2024-02-19T20:51:31.694750+0000 mon.smithi155 (mon.0) 523 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:33.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:32 smithi160 bash[18819]: cluster 2024-02-19T20:51:31.379668+0000 mgr.smithi155.pwytll (mgr.14180) 122 : cluster [DBG] pgmap v99: 1 pgs: 1 unknown; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-19T20:51:33.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:32 smithi160 bash[18819]: audit 2024-02-19T20:51:31.693548+0000 mon.smithi155 (mon.0) 518 : audit [INF] from='osd.3 [v2:172.21.15.155:6810/268552064,v1:172.21.15.155:6811/268552064]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-19T20:51:33.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:32 smithi160 bash[18819]: cluster 2024-02-19T20:51:31.693607+0000 mon.smithi155 (mon.0) 519 : cluster [DBG] osdmap e32: 8 total, 5 up, 8 in 2024-02-19T20:51:33.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:32 smithi160 bash[18819]: audit 2024-02-19T20:51:31.693936+0000 mon.smithi155 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:33.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:32 smithi160 bash[18819]: audit 2024-02-19T20:51:31.694245+0000 mon.smithi155 (mon.0) 521 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:33.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:32 smithi160 bash[18819]: audit 2024-02-19T20:51:31.694473+0000 mon.smithi155 (mon.0) 522 : audit [INF] from='osd.3 [v2:172.21.15.155:6810/268552064,v1:172.21.15.155:6811/268552064]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]: dispatch 2024-02-19T20:51:33.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:32 smithi160 bash[18819]: audit 2024-02-19T20:51:31.694750+0000 mon.smithi155 (mon.0) 523 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:33.537 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:51:33.731 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:33 smithi155 bash[14250]: audit 2024-02-19T20:51:32.693942+0000 mon.smithi155 (mon.0) 524 : audit [INF] from='osd.3 [v2:172.21.15.155:6810/268552064,v1:172.21.15.155:6811/268552064]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]': finished 2024-02-19T20:51:33.731 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:33 smithi155 bash[14250]: cluster 2024-02-19T20:51:32.694030+0000 mon.smithi155 (mon.0) 525 : cluster [DBG] osdmap e33: 8 total, 5 up, 8 in 2024-02-19T20:51:33.731 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:33 smithi155 bash[14250]: audit 2024-02-19T20:51:32.694705+0000 mon.smithi155 (mon.0) 526 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:33.731 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:33 smithi155 bash[14250]: audit 2024-02-19T20:51:32.695090+0000 mon.smithi155 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:33.731 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:33 smithi155 bash[14250]: audit 2024-02-19T20:51:32.695783+0000 mon.smithi155 (mon.0) 528 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:33.731 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:33 smithi155 bash[14250]: audit 2024-02-19T20:51:32.701726+0000 mon.smithi155 (mon.0) 529 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:33.731 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:33 smithi155 bash[14250]: cluster 2024-02-19T20:51:33.380111+0000 mgr.smithi155.pwytll (mgr.14180) 123 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-19T20:51:34.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:33 smithi160 bash[18819]: audit 2024-02-19T20:51:32.693942+0000 mon.smithi155 (mon.0) 524 : audit [INF] from='osd.3 [v2:172.21.15.155:6810/268552064,v1:172.21.15.155:6811/268552064]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]': finished 2024-02-19T20:51:34.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:33 smithi160 bash[18819]: cluster 2024-02-19T20:51:32.694030+0000 mon.smithi155 (mon.0) 525 : cluster [DBG] osdmap e33: 8 total, 5 up, 8 in 2024-02-19T20:51:34.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:33 smithi160 bash[18819]: audit 2024-02-19T20:51:32.694705+0000 mon.smithi155 (mon.0) 526 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:34.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:33 smithi160 bash[18819]: audit 2024-02-19T20:51:32.695090+0000 mon.smithi155 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:34.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:33 smithi160 bash[18819]: audit 2024-02-19T20:51:32.695783+0000 mon.smithi155 (mon.0) 528 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:34.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:33 smithi160 bash[18819]: audit 2024-02-19T20:51:32.701726+0000 mon.smithi155 (mon.0) 529 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:34.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:33 smithi160 bash[18819]: cluster 2024-02-19T20:51:33.380111+0000 mgr.smithi155.pwytll (mgr.14180) 123 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-19T20:51:34.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:34 smithi155 bash[14250]: cluster 2024-02-19T20:51:32.209044+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:34.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:34 smithi155 bash[14250]: cluster 2024-02-19T20:51:32.209137+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:34.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:34 smithi155 bash[14250]: audit 2024-02-19T20:51:33.700732+0000 mon.smithi155 (mon.0) 530 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:34.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:34 smithi155 bash[14250]: cluster 2024-02-19T20:51:33.705944+0000 mon.smithi155 (mon.0) 531 : cluster [INF] osd.3 [v2:172.21.15.155:6810/268552064,v1:172.21.15.155:6811/268552064] boot 2024-02-19T20:51:34.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:34 smithi155 bash[14250]: cluster 2024-02-19T20:51:33.706006+0000 mon.smithi155 (mon.0) 532 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2024-02-19T20:51:34.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:34 smithi155 bash[14250]: audit 2024-02-19T20:51:33.706498+0000 mon.smithi155 (mon.0) 533 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:34.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:34 smithi155 bash[14250]: audit 2024-02-19T20:51:33.706767+0000 mon.smithi155 (mon.0) 534 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:34.746 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:34 smithi155 bash[14250]: audit 2024-02-19T20:51:33.707020+0000 mon.smithi155 (mon.0) 535 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:35.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:34 smithi160 bash[18819]: cluster 2024-02-19T20:51:32.209044+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:35.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:34 smithi160 bash[18819]: cluster 2024-02-19T20:51:32.209137+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:35.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:34 smithi160 bash[18819]: audit 2024-02-19T20:51:33.700732+0000 mon.smithi155 (mon.0) 530 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:35.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:34 smithi160 bash[18819]: cluster 2024-02-19T20:51:33.705944+0000 mon.smithi155 (mon.0) 531 : cluster [INF] osd.3 [v2:172.21.15.155:6810/268552064,v1:172.21.15.155:6811/268552064] boot 2024-02-19T20:51:35.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:34 smithi160 bash[18819]: cluster 2024-02-19T20:51:33.706006+0000 mon.smithi155 (mon.0) 532 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2024-02-19T20:51:35.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:34 smithi160 bash[18819]: audit 2024-02-19T20:51:33.706498+0000 mon.smithi155 (mon.0) 533 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T20:51:35.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:34 smithi160 bash[18819]: audit 2024-02-19T20:51:33.706767+0000 mon.smithi155 (mon.0) 534 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:35.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:34 smithi160 bash[18819]: audit 2024-02-19T20:51:33.707020+0000 mon.smithi155 (mon.0) 535 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:35.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:35 smithi155 bash[14250]: cluster 2024-02-19T20:51:34.716627+0000 mon.smithi155 (mon.0) 536 : cluster [DBG] osdmap e35: 8 total, 6 up, 8 in 2024-02-19T20:51:35.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:35 smithi155 bash[14250]: audit 2024-02-19T20:51:34.716790+0000 mon.smithi155 (mon.0) 537 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:35.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:35 smithi155 bash[14250]: audit 2024-02-19T20:51:34.717101+0000 mon.smithi155 (mon.0) 538 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:35.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:35 smithi155 bash[14250]: cluster 2024-02-19T20:51:35.380472+0000 mgr.smithi155.pwytll (mgr.14180) 124 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T20:51:36.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:35 smithi160 bash[18819]: cluster 2024-02-19T20:51:34.716627+0000 mon.smithi155 (mon.0) 536 : cluster [DBG] osdmap e35: 8 total, 6 up, 8 in 2024-02-19T20:51:36.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:35 smithi160 bash[18819]: audit 2024-02-19T20:51:34.716790+0000 mon.smithi155 (mon.0) 537 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:36.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:35 smithi160 bash[18819]: audit 2024-02-19T20:51:34.717101+0000 mon.smithi155 (mon.0) 538 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:36.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:35 smithi160 bash[18819]: cluster 2024-02-19T20:51:35.380472+0000 mgr.smithi155.pwytll (mgr.14180) 124 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T20:51:36.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:36 smithi155 bash[14250]: cluster 2024-02-19T20:51:35.720189+0000 mon.smithi155 (mon.0) 539 : cluster [DBG] osdmap e36: 8 total, 6 up, 8 in 2024-02-19T20:51:36.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:36 smithi155 bash[14250]: audit 2024-02-19T20:51:35.720822+0000 mon.smithi155 (mon.0) 540 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:36.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:36 smithi155 bash[14250]: audit 2024-02-19T20:51:35.721268+0000 mon.smithi155 (mon.0) 541 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:36.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:36 smithi155 bash[14250]: audit 2024-02-19T20:51:35.843155+0000 mon.smithi155 (mon.0) 542 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:37.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:36 smithi160 bash[18819]: cluster 2024-02-19T20:51:35.720189+0000 mon.smithi155 (mon.0) 539 : cluster [DBG] osdmap e36: 8 total, 6 up, 8 in 2024-02-19T20:51:37.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:36 smithi160 bash[18819]: audit 2024-02-19T20:51:35.720822+0000 mon.smithi155 (mon.0) 540 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:37.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:36 smithi160 bash[18819]: audit 2024-02-19T20:51:35.721268+0000 mon.smithi155 (mon.0) 541 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:37.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:36 smithi160 bash[18819]: audit 2024-02-19T20:51:35.843155+0000 mon.smithi155 (mon.0) 542 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:37.841 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:37 smithi155 bash[14250]: cluster 2024-02-19T20:51:37.380988+0000 mgr.smithi155.pwytll (mgr.14180) 125 : cluster [DBG] pgmap v107: 1 pgs: 1 peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T20:51:38.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:37 smithi160 bash[18819]: cluster 2024-02-19T20:51:37.380988+0000 mgr.smithi155.pwytll (mgr.14180) 125 : cluster [DBG] pgmap v107: 1 pgs: 1 peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T20:51:38.218 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:51:38.856 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:38 smithi155 bash[14250]: audit 2024-02-19T20:51:38.081504+0000 mon.smithi155 (mon.0) 543 : audit [INF] from='osd.5 [v2:172.21.15.155:6818/3434362593,v1:172.21.15.155:6819/3434362593]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-19T20:51:38.856 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:38 smithi155 bash[14250]: audit 2024-02-19T20:51:38.237577+0000 mon.smithi155 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.155:0/620113257' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:39.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:38 smithi160 bash[18819]: audit 2024-02-19T20:51:38.081504+0000 mon.smithi155 (mon.0) 543 : audit [INF] from='osd.5 [v2:172.21.15.155:6818/3434362593,v1:172.21.15.155:6819/3434362593]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-19T20:51:39.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:38 smithi160 bash[18819]: audit 2024-02-19T20:51:38.237577+0000 mon.smithi155 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.155:0/620113257' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:39.424 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":36,"num_osds":8,"num_up_osds":6,"osd_up_since":1708375893,"num_in_osds":8,"osd_in_since":1708375847,"num_remapped_pgs":0} 2024-02-19T20:51:39.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:39 smithi155 bash[14250]: audit 2024-02-19T20:51:38.744185+0000 mon.smithi155 (mon.0) 545 : audit [INF] from='osd.5 [v2:172.21.15.155:6818/3434362593,v1:172.21.15.155:6819/3434362593]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-19T20:51:39.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:39 smithi155 bash[14250]: cluster 2024-02-19T20:51:38.744321+0000 mon.smithi155 (mon.0) 546 : cluster [DBG] osdmap e37: 8 total, 6 up, 8 in 2024-02-19T20:51:39.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:39 smithi155 bash[14250]: audit 2024-02-19T20:51:38.744520+0000 mon.smithi155 (mon.0) 547 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:39.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:39 smithi155 bash[14250]: audit 2024-02-19T20:51:38.744985+0000 mon.smithi155 (mon.0) 548 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:39.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:39 smithi155 bash[14250]: audit 2024-02-19T20:51:38.745286+0000 mon.smithi155 (mon.0) 549 : audit [INF] from='osd.5 [v2:172.21.15.155:6818/3434362593,v1:172.21.15.155:6819/3434362593]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]: dispatch 2024-02-19T20:51:39.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:39 smithi155 bash[14250]: cluster 2024-02-19T20:51:39.381562+0000 mgr.smithi155.pwytll (mgr.14180) 126 : cluster [DBG] pgmap v109: 1 pgs: 1 peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T20:51:40.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:39 smithi160 bash[18819]: audit 2024-02-19T20:51:38.744185+0000 mon.smithi155 (mon.0) 545 : audit [INF] from='osd.5 [v2:172.21.15.155:6818/3434362593,v1:172.21.15.155:6819/3434362593]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-19T20:51:40.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:39 smithi160 bash[18819]: cluster 2024-02-19T20:51:38.744321+0000 mon.smithi155 (mon.0) 546 : cluster [DBG] osdmap e37: 8 total, 6 up, 8 in 2024-02-19T20:51:40.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:39 smithi160 bash[18819]: audit 2024-02-19T20:51:38.744520+0000 mon.smithi155 (mon.0) 547 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:40.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:39 smithi160 bash[18819]: audit 2024-02-19T20:51:38.744985+0000 mon.smithi155 (mon.0) 548 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:40.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:39 smithi160 bash[18819]: audit 2024-02-19T20:51:38.745286+0000 mon.smithi155 (mon.0) 549 : audit [INF] from='osd.5 [v2:172.21.15.155:6818/3434362593,v1:172.21.15.155:6819/3434362593]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]: dispatch 2024-02-19T20:51:40.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:39 smithi160 bash[18819]: cluster 2024-02-19T20:51:39.381562+0000 mgr.smithi155.pwytll (mgr.14180) 126 : cluster [DBG] pgmap v109: 1 pgs: 1 peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T20:51:40.425 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:51:40.960 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:40 smithi155 bash[14250]: audit 2024-02-19T20:51:39.747769+0000 mon.smithi155 (mon.0) 550 : audit [INF] from='osd.5 [v2:172.21.15.155:6818/3434362593,v1:172.21.15.155:6819/3434362593]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]': finished 2024-02-19T20:51:40.960 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:40 smithi155 bash[14250]: cluster 2024-02-19T20:51:39.748026+0000 mon.smithi155 (mon.0) 551 : cluster [DBG] osdmap e38: 8 total, 6 up, 8 in 2024-02-19T20:51:40.960 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:40 smithi155 bash[14250]: audit 2024-02-19T20:51:39.748829+0000 mon.smithi155 (mon.0) 552 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:40.961 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:40 smithi155 bash[14250]: audit 2024-02-19T20:51:39.749261+0000 mon.smithi155 (mon.0) 553 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:40.961 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:40 smithi155 bash[14250]: audit 2024-02-19T20:51:39.756277+0000 mon.smithi155 (mon.0) 554 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:41.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:40 smithi160 bash[18819]: audit 2024-02-19T20:51:39.747769+0000 mon.smithi155 (mon.0) 550 : audit [INF] from='osd.5 [v2:172.21.15.155:6818/3434362593,v1:172.21.15.155:6819/3434362593]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]': finished 2024-02-19T20:51:41.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:40 smithi160 bash[18819]: cluster 2024-02-19T20:51:39.748026+0000 mon.smithi155 (mon.0) 551 : cluster [DBG] osdmap e38: 8 total, 6 up, 8 in 2024-02-19T20:51:41.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:40 smithi160 bash[18819]: audit 2024-02-19T20:51:39.748829+0000 mon.smithi155 (mon.0) 552 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:41.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:40 smithi160 bash[18819]: audit 2024-02-19T20:51:39.749261+0000 mon.smithi155 (mon.0) 553 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:41.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:40 smithi160 bash[18819]: audit 2024-02-19T20:51:39.756277+0000 mon.smithi155 (mon.0) 554 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:41.750 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:41 smithi155 bash[14250]: cluster 2024-02-19T20:51:39.058000+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:41.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:41 smithi155 bash[14250]: cluster 2024-02-19T20:51:39.058115+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:41.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:41 smithi155 bash[14250]: cluster 2024-02-19T20:51:40.756458+0000 mon.smithi155 (mon.0) 555 : cluster [INF] osd.5 [v2:172.21.15.155:6818/3434362593,v1:172.21.15.155:6819/3434362593] boot 2024-02-19T20:51:41.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:41 smithi155 bash[14250]: cluster 2024-02-19T20:51:40.756490+0000 mon.smithi155 (mon.0) 556 : cluster [DBG] osdmap e39: 8 total, 7 up, 8 in 2024-02-19T20:51:41.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:41 smithi155 bash[14250]: audit 2024-02-19T20:51:40.757367+0000 mon.smithi155 (mon.0) 557 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:41.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:41 smithi155 bash[14250]: audit 2024-02-19T20:51:40.758037+0000 mon.smithi155 (mon.0) 558 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:41.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:41 smithi155 bash[14250]: cluster 2024-02-19T20:51:41.381931+0000 mgr.smithi155.pwytll (mgr.14180) 127 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T20:51:42.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:41 smithi160 bash[18819]: cluster 2024-02-19T20:51:39.058000+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:42.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:41 smithi160 bash[18819]: cluster 2024-02-19T20:51:39.058115+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:42.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:41 smithi160 bash[18819]: cluster 2024-02-19T20:51:40.756458+0000 mon.smithi155 (mon.0) 555 : cluster [INF] osd.5 [v2:172.21.15.155:6818/3434362593,v1:172.21.15.155:6819/3434362593] boot 2024-02-19T20:51:42.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:41 smithi160 bash[18819]: cluster 2024-02-19T20:51:40.756490+0000 mon.smithi155 (mon.0) 556 : cluster [DBG] osdmap e39: 8 total, 7 up, 8 in 2024-02-19T20:51:42.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:41 smithi160 bash[18819]: audit 2024-02-19T20:51:40.757367+0000 mon.smithi155 (mon.0) 557 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T20:51:42.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:41 smithi160 bash[18819]: audit 2024-02-19T20:51:40.758037+0000 mon.smithi155 (mon.0) 558 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:42.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:41 smithi160 bash[18819]: cluster 2024-02-19T20:51:41.381931+0000 mgr.smithi155.pwytll (mgr.14180) 127 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T20:51:42.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:42 smithi155 bash[14250]: cluster 2024-02-19T20:51:41.774670+0000 mon.smithi155 (mon.0) 559 : cluster [DBG] osdmap e40: 8 total, 7 up, 8 in 2024-02-19T20:51:42.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:42 smithi155 bash[14250]: audit 2024-02-19T20:51:41.774918+0000 mon.smithi155 (mon.0) 560 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:43.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:42 smithi160 bash[18819]: cluster 2024-02-19T20:51:41.774670+0000 mon.smithi155 (mon.0) 559 : cluster [DBG] osdmap e40: 8 total, 7 up, 8 in 2024-02-19T20:51:43.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:42 smithi160 bash[18819]: audit 2024-02-19T20:51:41.774918+0000 mon.smithi155 (mon.0) 560 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:44.012 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:43 smithi155 bash[14250]: cluster 2024-02-19T20:51:43.382488+0000 mgr.smithi155.pwytll (mgr.14180) 128 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-19T20:51:44.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:43 smithi160 bash[18819]: cluster 2024-02-19T20:51:43.382488+0000 mgr.smithi155.pwytll (mgr.14180) 128 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-19T20:51:44.156 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:51:45.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:44 smithi160 bash[18819]: audit 2024-02-19T20:51:44.037376+0000 mon.smithi155 (mon.0) 561 : audit [INF] from='osd.7 [v2:172.21.15.155:6826/630226012,v1:172.21.15.155:6827/630226012]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-19T20:51:45.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:44 smithi160 bash[18819]: audit 2024-02-19T20:51:44.175636+0000 mon.smithi155 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.155:0/3667707246' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:45.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:44 smithi155 bash[14250]: audit 2024-02-19T20:51:44.037376+0000 mon.smithi155 (mon.0) 561 : audit [INF] from='osd.7 [v2:172.21.15.155:6826/630226012,v1:172.21.15.155:6827/630226012]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-19T20:51:45.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:44 smithi155 bash[14250]: audit 2024-02-19T20:51:44.175636+0000 mon.smithi155 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.155:0/3667707246' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:45.694 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":40,"num_osds":8,"num_up_osds":7,"osd_up_since":1708375900,"num_in_osds":8,"osd_in_since":1708375847,"num_remapped_pgs":0} 2024-02-19T20:51:45.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:45 smithi155 bash[14250]: audit 2024-02-19T20:51:44.790593+0000 mon.smithi155 (mon.0) 563 : audit [INF] from='osd.7 [v2:172.21.15.155:6826/630226012,v1:172.21.15.155:6827/630226012]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-19T20:51:45.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:45 smithi155 bash[14250]: cluster 2024-02-19T20:51:44.790662+0000 mon.smithi155 (mon.0) 564 : cluster [DBG] osdmap e41: 8 total, 7 up, 8 in 2024-02-19T20:51:45.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:45 smithi155 bash[14250]: audit 2024-02-19T20:51:44.790886+0000 mon.smithi155 (mon.0) 565 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:45.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:45 smithi155 bash[14250]: audit 2024-02-19T20:51:44.791407+0000 mon.smithi155 (mon.0) 566 : audit [INF] from='osd.7 [v2:172.21.15.155:6826/630226012,v1:172.21.15.155:6827/630226012]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]: dispatch 2024-02-19T20:51:45.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:45 smithi155 bash[14250]: cluster 2024-02-19T20:51:45.383135+0000 mgr.smithi155.pwytll (mgr.14180) 129 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-19T20:51:46.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:45 smithi160 bash[18819]: audit 2024-02-19T20:51:44.790593+0000 mon.smithi155 (mon.0) 563 : audit [INF] from='osd.7 [v2:172.21.15.155:6826/630226012,v1:172.21.15.155:6827/630226012]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-19T20:51:46.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:45 smithi160 bash[18819]: cluster 2024-02-19T20:51:44.790662+0000 mon.smithi155 (mon.0) 564 : cluster [DBG] osdmap e41: 8 total, 7 up, 8 in 2024-02-19T20:51:46.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:45 smithi160 bash[18819]: audit 2024-02-19T20:51:44.790886+0000 mon.smithi155 (mon.0) 565 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:46.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:45 smithi160 bash[18819]: audit 2024-02-19T20:51:44.791407+0000 mon.smithi155 (mon.0) 566 : audit [INF] from='osd.7 [v2:172.21.15.155:6826/630226012,v1:172.21.15.155:6827/630226012]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]: dispatch 2024-02-19T20:51:46.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:45 smithi160 bash[18819]: cluster 2024-02-19T20:51:45.383135+0000 mgr.smithi155.pwytll (mgr.14180) 129 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-19T20:51:46.695 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T20:51:46.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:46 smithi155 bash[14250]: audit 2024-02-19T20:51:45.799866+0000 mon.smithi155 (mon.0) 567 : audit [INF] from='osd.7 [v2:172.21.15.155:6826/630226012,v1:172.21.15.155:6827/630226012]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]': finished 2024-02-19T20:51:47.336 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:46 smithi155 bash[14250]: cluster 2024-02-19T20:51:45.799924+0000 mon.smithi155 (mon.0) 568 : cluster [DBG] osdmap e42: 8 total, 7 up, 8 in 2024-02-19T20:51:47.336 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:46 smithi155 bash[14250]: audit 2024-02-19T20:51:45.800304+0000 mon.smithi155 (mon.0) 569 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:47.336 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:46 smithi155 bash[14250]: audit 2024-02-19T20:51:45.807143+0000 mon.smithi155 (mon.0) 570 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:47.337 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:46 smithi160 bash[18819]: audit 2024-02-19T20:51:45.799866+0000 mon.smithi155 (mon.0) 567 : audit [INF] from='osd.7 [v2:172.21.15.155:6826/630226012,v1:172.21.15.155:6827/630226012]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi155", "root=default"]}]': finished 2024-02-19T20:51:47.337 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:46 smithi160 bash[18819]: cluster 2024-02-19T20:51:45.799924+0000 mon.smithi155 (mon.0) 568 : cluster [DBG] osdmap e42: 8 total, 7 up, 8 in 2024-02-19T20:51:47.337 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:46 smithi160 bash[18819]: audit 2024-02-19T20:51:45.800304+0000 mon.smithi155 (mon.0) 569 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:47.337 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:46 smithi160 bash[18819]: audit 2024-02-19T20:51:45.807143+0000 mon.smithi155 (mon.0) 570 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:47.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:47 smithi155 bash[14250]: cluster 2024-02-19T20:51:44.985189+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:47.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:47 smithi155 bash[14250]: cluster 2024-02-19T20:51:44.985271+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:47.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:47 smithi155 bash[14250]: cluster 2024-02-19T20:51:46.802700+0000 mon.smithi155 (mon.0) 571 : cluster [INF] osd.7 [v2:172.21.15.155:6826/630226012,v1:172.21.15.155:6827/630226012] boot 2024-02-19T20:51:47.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:47 smithi155 bash[14250]: cluster 2024-02-19T20:51:46.802725+0000 mon.smithi155 (mon.0) 572 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-19T20:51:47.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:47 smithi155 bash[14250]: audit 2024-02-19T20:51:46.803363+0000 mon.smithi155 (mon.0) 573 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:47.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:47 smithi155 bash[14250]: cluster 2024-02-19T20:51:47.089696+0000 mon.smithi155 (mon.0) 574 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-19T20:51:47.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:47 smithi155 bash[14250]: cluster 2024-02-19T20:51:47.383670+0000 mgr.smithi155.pwytll (mgr.14180) 130 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:47.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:47 smithi155 bash[14250]: audit 2024-02-19T20:51:47.674314+0000 mon.smithi155 (mon.0) 575 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:47.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:47 smithi155 bash[14250]: audit 2024-02-19T20:51:47.677372+0000 mon.smithi155 (mon.0) 576 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:51:48.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:47 smithi160 bash[18819]: cluster 2024-02-19T20:51:44.985189+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T20:51:48.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:47 smithi160 bash[18819]: cluster 2024-02-19T20:51:44.985271+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T20:51:48.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:47 smithi160 bash[18819]: cluster 2024-02-19T20:51:46.802700+0000 mon.smithi155 (mon.0) 571 : cluster [INF] osd.7 [v2:172.21.15.155:6826/630226012,v1:172.21.15.155:6827/630226012] boot 2024-02-19T20:51:48.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:47 smithi160 bash[18819]: cluster 2024-02-19T20:51:46.802725+0000 mon.smithi155 (mon.0) 572 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-19T20:51:48.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:47 smithi160 bash[18819]: audit 2024-02-19T20:51:46.803363+0000 mon.smithi155 (mon.0) 573 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T20:51:48.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:47 smithi160 bash[18819]: cluster 2024-02-19T20:51:47.089696+0000 mon.smithi155 (mon.0) 574 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-19T20:51:48.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:47 smithi160 bash[18819]: cluster 2024-02-19T20:51:47.383670+0000 mgr.smithi155.pwytll (mgr.14180) 130 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:48.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:47 smithi160 bash[18819]: audit 2024-02-19T20:51:47.674314+0000 mon.smithi155 (mon.0) 575 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:48.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:47 smithi160 bash[18819]: audit 2024-02-19T20:51:47.677372+0000 mon.smithi155 (mon.0) 576 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:51:49.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:49 smithi155 bash[14250]: cluster 2024-02-19T20:51:48.100141+0000 mon.smithi155 (mon.0) 577 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-19T20:51:49.404 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:49 smithi160 bash[18819]: cluster 2024-02-19T20:51:48.100141+0000 mon.smithi155 (mon.0) 577 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-19T20:51:50.029 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:51:50.404 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:50 smithi160 bash[18819]: cluster 2024-02-19T20:51:49.384094+0000 mgr.smithi155.pwytll (mgr.14180) 131 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:50.404 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:50 smithi160 bash[18819]: audit 2024-02-19T20:51:50.048251+0000 mon.smithi155 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.155:0/78999340' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:50.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:50 smithi155 bash[14250]: cluster 2024-02-19T20:51:49.384094+0000 mgr.smithi155.pwytll (mgr.14180) 131 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:50.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:50 smithi155 bash[14250]: audit 2024-02-19T20:51:50.048251+0000 mon.smithi155 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.155:0/78999340' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T20:51:50.774 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":45,"num_osds":8,"num_up_osds":8,"osd_up_since":1708375906,"num_in_osds":8,"osd_in_since":1708375847,"num_remapped_pgs":0} 2024-02-19T20:51:50.775 INFO:tasks.cephadm:Setting up client nodes... 2024-02-19T20:51:50.775 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-19T20:51:52.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:52 smithi155 bash[14250]: cluster 2024-02-19T20:51:51.384701+0000 mgr.smithi155.pwytll (mgr.14180) 132 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:52.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:52 smithi160 bash[18819]: cluster 2024-02-19T20:51:51.384701+0000 mgr.smithi155.pwytll (mgr.14180) 132 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:53.984 INFO:teuthology.orchestra.run.smithi155.stdout:[client.0] 2024-02-19T20:51:53.984 INFO:teuthology.orchestra.run.smithi155.stdout: key = AQBpv9NlBJqCOxAA/lEc1XljA/AddDru/4Dfyw== 2024-02-19T20:51:54.404 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:54 smithi160 bash[18819]: audit 2024-02-19T20:51:53.156677+0000 mon.smithi155 (mon.0) 579 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:54.404 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:54 smithi160 bash[18819]: cluster 2024-02-19T20:51:53.385197+0000 mgr.smithi155.pwytll (mgr.14180) 133 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:54.404 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:54 smithi160 bash[18819]: audit 2024-02-19T20:51:53.998240+0000 mon.smithi155 (mon.0) 580 : audit [INF] from='client.? 172.21.15.155:0/2470137415' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-19T20:51:54.404 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:54 smithi160 bash[18819]: audit 2024-02-19T20:51:54.003441+0000 mon.smithi155 (mon.0) 581 : audit [INF] from='client.? 172.21.15.155:0/2470137415' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-19T20:51:54.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:54 smithi155 bash[14250]: audit 2024-02-19T20:51:53.156677+0000 mon.smithi155 (mon.0) 579 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:54.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:54 smithi155 bash[14250]: cluster 2024-02-19T20:51:53.385197+0000 mgr.smithi155.pwytll (mgr.14180) 133 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:54.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:54 smithi155 bash[14250]: audit 2024-02-19T20:51:53.998240+0000 mon.smithi155 (mon.0) 580 : audit [INF] from='client.? 172.21.15.155:0/2470137415' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-19T20:51:54.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:54 smithi155 bash[14250]: audit 2024-02-19T20:51:54.003441+0000 mon.smithi155 (mon.0) 581 : audit [INF] from='client.? 172.21.15.155:0/2470137415' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-19T20:51:54.698 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:51:54.698 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-02-19T20:51:54.698 DEBUG:teuthology.orchestra.run.smithi155:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-02-19T20:51:54.718 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-19T20:51:55.893 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:55 smithi160 bash[18819]: audit 2024-02-19T20:51:54.778972+0000 mon.smithi155 (mon.0) 582 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:55.893 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:55 smithi160 bash[18819]: cluster 2024-02-19T20:51:55.385723+0000 mgr.smithi155.pwytll (mgr.14180) 134 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:56.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:55 smithi155 bash[14250]: audit 2024-02-19T20:51:54.778972+0000 mon.smithi155 (mon.0) 582 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:51:56.245 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:55 smithi155 bash[14250]: cluster 2024-02-19T20:51:55.385723+0000 mgr.smithi155.pwytll (mgr.14180) 134 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:57.497 INFO:teuthology.orchestra.run.smithi160.stdout:[client.1] 2024-02-19T20:51:57.497 INFO:teuthology.orchestra.run.smithi160.stdout: key = AQBtv9NlqKZEHhAAjcN56Gh9IzSrd2ym+NnabA== 2024-02-19T20:51:58.128 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:51:58.129 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-02-19T20:51:58.129 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-02-19T20:51:58.153 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd dump --format=json 2024-02-19T20:51:58.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:58 smithi155 bash[14250]: cluster 2024-02-19T20:51:57.386363+0000 mgr.smithi155.pwytll (mgr.14180) 135 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:58.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:58 smithi155 bash[14250]: audit 2024-02-19T20:51:57.506601+0000 mon.smithi160 (mon.1) 20 : audit [INF] from='client.? 172.21.15.160:0/3393716253' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-19T20:51:58.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:58 smithi155 bash[14250]: audit 2024-02-19T20:51:57.507486+0000 mon.smithi155 (mon.0) 583 : 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-02-19T20:51:58.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:51:58 smithi155 bash[14250]: audit 2024-02-19T20:51:57.515953+0000 mon.smithi155 (mon.0) 584 : 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-02-19T20:51:58.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:58 smithi160 bash[18819]: cluster 2024-02-19T20:51:57.386363+0000 mgr.smithi155.pwytll (mgr.14180) 135 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:51:58.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:58 smithi160 bash[18819]: audit 2024-02-19T20:51:57.506601+0000 mon.smithi160 (mon.1) 20 : audit [INF] from='client.? 172.21.15.160:0/3393716253' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-19T20:51:58.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:58 smithi160 bash[18819]: audit 2024-02-19T20:51:57.507486+0000 mon.smithi155 (mon.0) 583 : 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-02-19T20:51:58.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:51:58 smithi160 bash[18819]: audit 2024-02-19T20:51:57.515953+0000 mon.smithi155 (mon.0) 584 : 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-02-19T20:52:00.733 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:00 smithi155 bash[14250]: cluster 2024-02-19T20:51:59.386983+0000 mgr.smithi155.pwytll (mgr.14180) 136 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:00.794 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:00 smithi160 bash[18819]: cluster 2024-02-19T20:51:59.386983+0000 mgr.smithi155.pwytll (mgr.14180) 136 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:02.588 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:52:02.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:02 smithi155 bash[14250]: cluster 2024-02-19T20:52:01.387583+0000 mgr.smithi155.pwytll (mgr.14180) 137 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:02.763 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:02 smithi160 bash[18819]: cluster 2024-02-19T20:52:01.387583+0000 mgr.smithi155.pwytll (mgr.14180) 137 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:04 smithi155 bash[14250]: cluster 2024-02-19T20:52:03.388243+0000 mgr.smithi155.pwytll (mgr.14180) 138 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:04 smithi155 bash[14250]: cephadm 2024-02-19T20:52:03.674524+0000 mgr.smithi155.pwytll (mgr.14180) 139 : cephadm [INF] Detected new or changed devices on smithi160 2024-02-19T20:52:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:04 smithi155 bash[14250]: audit 2024-02-19T20:52:03.682875+0000 mon.smithi155 (mon.0) 585 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:04 smithi155 bash[14250]: audit 2024-02-19T20:52:03.950987+0000 mon.smithi155 (mon.0) 586 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:04 smithi155 bash[14250]: audit 2024-02-19T20:52:03.952111+0000 mon.smithi155 (mon.0) 587 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:04 smithi155 bash[14250]: audit 2024-02-19T20:52:03.953163+0000 mon.smithi155 (mon.0) 588 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:04 smithi155 bash[14250]: audit 2024-02-19T20:52:03.954197+0000 mon.smithi155 (mon.0) 589 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:04 smithi155 bash[14250]: audit 2024-02-19T20:52:03.959901+0000 mon.smithi155 (mon.0) 590 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:05.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:04 smithi160 bash[18819]: cluster 2024-02-19T20:52:03.388243+0000 mgr.smithi155.pwytll (mgr.14180) 138 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:05.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:04 smithi160 bash[18819]: cephadm 2024-02-19T20:52:03.674524+0000 mgr.smithi155.pwytll (mgr.14180) 139 : cephadm [INF] Detected new or changed devices on smithi160 2024-02-19T20:52:05.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:04 smithi160 bash[18819]: audit 2024-02-19T20:52:03.682875+0000 mon.smithi155 (mon.0) 585 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:05.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:04 smithi160 bash[18819]: audit 2024-02-19T20:52:03.950987+0000 mon.smithi155 (mon.0) 586 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:05.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:04 smithi160 bash[18819]: audit 2024-02-19T20:52:03.952111+0000 mon.smithi155 (mon.0) 587 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:05.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:04 smithi160 bash[18819]: audit 2024-02-19T20:52:03.953163+0000 mon.smithi155 (mon.0) 588 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:05.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:04 smithi160 bash[18819]: audit 2024-02-19T20:52:03.954197+0000 mon.smithi155 (mon.0) 589 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:05.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:04 smithi160 bash[18819]: audit 2024-02-19T20:52:03.959901+0000 mon.smithi155 (mon.0) 590 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:05.905 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:52:05.906 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":45,"fsid":"d8f13c04-cf67-11ee-95bb-87774f69a715","created":"2024-02-19T20:46:46.040488+0000","modified":"2024-02-19T20:51:48.087542+0000","last_up_change":"2024-02-19T20:51:46.795714+0000","last_in_change":"2024-02-19T20:50:47.878244+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-19T20:51:22.079937+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"31","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_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"28b1c46a-86db-4a4f-9b32-7ac9f1d62664","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6800","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6801","nonce":2737759641}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6802","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6803","nonce":2737759641}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6806","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6807","nonce":2737759641}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6804","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6805","nonce":2737759641}]},"public_addr":"172.21.15.160:6801/2737759641","cluster_addr":"172.21.15.160:6803/2737759641","heartbeat_back_addr":"172.21.15.160:6807/2737759641","heartbeat_front_addr":"172.21.15.160:6805/2737759641","state":["exists","up"]},{"osd":1,"uuid":"e848e2da-03dc-4b14-92a6-2a3b67e97274","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":35,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6802","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6803","nonce":3601805210}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6804","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6805","nonce":3601805210}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6808","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6809","nonce":3601805210}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6806","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6807","nonce":3601805210}]},"public_addr":"172.21.15.155:6803/3601805210","cluster_addr":"172.21.15.155:6805/3601805210","heartbeat_back_addr":"172.21.15.155:6809/3601805210","heartbeat_front_addr":"172.21.15.155:6807/3601805210","state":["exists","up"]},{"osd":2,"uuid":"b5b35e9e-831a-4f5d-a850-241802583ef7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6808","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6809","nonce":2390546642}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6810","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6811","nonce":2390546642}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6814","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6815","nonce":2390546642}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6812","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6813","nonce":2390546642}]},"public_addr":"172.21.15.160:6809/2390546642","cluster_addr":"172.21.15.160:6811/2390546642","heartbeat_back_addr":"172.21.15.160:6815/2390546642","heartbeat_front_addr":"172.21.15.160:6813/2390546642","state":["exists","up"]},{"osd":3,"uuid":"ba7e6e85-ccd3-4328-bd42-4cb5dc4c20f1","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6810","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6811","nonce":268552064}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6812","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6813","nonce":268552064}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6816","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6817","nonce":268552064}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6814","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6815","nonce":268552064}]},"public_addr":"172.21.15.155:6811/268552064","cluster_addr":"172.21.15.155:6813/268552064","heartbeat_back_addr":"172.21.15.155:6817/268552064","heartbeat_front_addr":"172.21.15.155:6815/268552064","state":["exists","up"]},{"osd":4,"uuid":"144900e3-0f0a-42b8-912c-24a3625101be","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6816","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6817","nonce":957957975}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6818","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6819","nonce":957957975}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6822","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6823","nonce":957957975}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6820","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6821","nonce":957957975}]},"public_addr":"172.21.15.160:6817/957957975","cluster_addr":"172.21.15.160:6819/957957975","heartbeat_back_addr":"172.21.15.160:6823/957957975","heartbeat_front_addr":"172.21.15.160:6821/957957975","state":["exists","up"]},{"osd":5,"uuid":"0ff7fca8-cfca-4506-a6e6-049e9728befd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6818","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6819","nonce":3434362593}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6820","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6821","nonce":3434362593}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6824","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6825","nonce":3434362593}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6822","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6823","nonce":3434362593}]},"public_addr":"172.21.15.155:6819/3434362593","cluster_addr":"172.21.15.155:6821/3434362593","heartbeat_back_addr":"172.21.15.155:6825/3434362593","heartbeat_front_addr":"172.21.15.155:6823/3434362593","state":["exists","up"]},{"osd":6,"uuid":"2f43a040-5faf-429d-9b49-8de7023123a2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":29,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6824","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6825","nonce":2998001154}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6826","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6827","nonce":2998001154}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6830","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6831","nonce":2998001154}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6828","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6829","nonce":2998001154}]},"public_addr":"172.21.15.160:6825/2998001154","cluster_addr":"172.21.15.160:6827/2998001154","heartbeat_back_addr":"172.21.15.160:6831/2998001154","heartbeat_front_addr":"172.21.15.160:6829/2998001154","state":["exists","up"]},{"osd":7,"uuid":"84121283-11de-4727-ad91-4050c18381dd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":43,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6826","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6827","nonce":630226012}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6828","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6829","nonce":630226012}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6832","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6833","nonce":630226012}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6830","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6831","nonce":630226012}]},"public_addr":"172.21.15.155:6827/630226012","cluster_addr":"172.21.15.155:6829/630226012","heartbeat_back_addr":"172.21.15.155:6833/630226012","heartbeat_front_addr":"172.21.15.155:6831/630226012","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:09.605824+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:22.825715+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:15.013312+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:32.209149+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:20.291632+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:39.058124+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:24.474706+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:44.985277+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.155:0/4168802219":"2024-02-20T20:48:53.338558+0000","172.21.15.155:6801/4241738903":"2024-02-20T20:48:53.338558+0000","172.21.15.155:6800/4241738903":"2024-02-20T20:48:53.338558+0000","172.21.15.155:6801/4025590812":"2024-02-20T20:47:53.219338+0000","172.21.15.155:6800/4025590812":"2024-02-20T20:47:53.219338+0000","172.21.15.155:0/3792745755":"2024-02-20T20:47:53.219338+0000","172.21.15.155:0/96337458":"2024-02-20T20:48:53.338558+0000","172.21.15.155:0/2271707611":"2024-02-20T20:47:53.219338+0000","172.21.15.155:0/239574550":"2024-02-20T20:47:13.218939+0000","172.21.15.155:6800/3267236656":"2024-02-20T20:47:13.218939+0000","172.21.15.155:6801/3267236656":"2024-02-20T20:47:13.218939+0000","172.21.15.155:0/2821705930":"2024-02-20T20:47:13.218939+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","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-02-19T20:52:05.936 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:05 smithi155 bash[14250]: cephadm 2024-02-19T20:52:03.955008+0000 mgr.smithi155.pwytll (mgr.14180) 140 : cephadm [INF] Adjusting osd_memory_target on smithi160 to 4028M 2024-02-19T20:52:05.936 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:05 smithi155 bash[14250]: audit 2024-02-19T20:52:05.512883+0000 mon.smithi155 (mon.0) 591 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:06.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:05 smithi160 bash[18819]: cephadm 2024-02-19T20:52:03.955008+0000 mgr.smithi155.pwytll (mgr.14180) 140 : cephadm [INF] Adjusting osd_memory_target on smithi160 to 4028M 2024-02-19T20:52:06.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:05 smithi160 bash[18819]: audit 2024-02-19T20:52:05.512883+0000 mon.smithi155 (mon.0) 591 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:06.656 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2024-02-19T20:51:22.079937+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '31', '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_devicehealth': {}}}] 2024-02-19T20:52:06.656 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2024-02-19T20:52:06.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: cluster 2024-02-19T20:52:05.388788+0000 mgr.smithi155.pwytll (mgr.14180) 141 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:06.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: cephadm 2024-02-19T20:52:05.502860+0000 mgr.smithi155.pwytll (mgr.14180) 142 : cephadm [INF] Detected new or changed devices on smithi155 2024-02-19T20:52:06.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.794716+0000 mon.smithi155 (mon.0) 592 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:06.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.795814+0000 mon.smithi155 (mon.0) 593 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.796758+0000 mon.smithi155 (mon.0) 594 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.797695+0000 mon.smithi155 (mon.0) 595 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: cephadm 2024-02-19T20:52:05.798554+0000 mgr.smithi155.pwytll (mgr.14180) 143 : cephadm [INF] Adjusting osd_memory_target on smithi155 to 3260M 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.804994+0000 mon.smithi155 (mon.0) 596 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.806551+0000 mon.smithi155 (mon.0) 597 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.807607+0000 mon.smithi155 (mon.0) 598 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.813173+0000 mon.smithi155 (mon.0) 599 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.819592+0000 mon.smithi155 (mon.0) 600 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.825959+0000 mon.smithi155 (mon.0) 601 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.828980+0000 mon.smithi155 (mon.0) 602 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.829509+0000 mon.smithi155 (mon.0) 603 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.830717+0000 mon.smithi155 (mon.0) 604 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:52:06.996 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:06 smithi155 bash[14250]: audit 2024-02-19T20:52:05.923611+0000 mon.smithi155 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.155:0/842472631' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T20:52:07.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: cluster 2024-02-19T20:52:05.388788+0000 mgr.smithi155.pwytll (mgr.14180) 141 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:07.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: cephadm 2024-02-19T20:52:05.502860+0000 mgr.smithi155.pwytll (mgr.14180) 142 : cephadm [INF] Detected new or changed devices on smithi155 2024-02-19T20:52:07.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.794716+0000 mon.smithi155 (mon.0) 592 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.795814+0000 mon.smithi155 (mon.0) 593 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.796758+0000 mon.smithi155 (mon.0) 594 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.797695+0000 mon.smithi155 (mon.0) 595 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: cephadm 2024-02-19T20:52:05.798554+0000 mgr.smithi155.pwytll (mgr.14180) 143 : cephadm [INF] Adjusting osd_memory_target on smithi155 to 3260M 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.804994+0000 mon.smithi155 (mon.0) 596 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.806551+0000 mon.smithi155 (mon.0) 597 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.807607+0000 mon.smithi155 (mon.0) 598 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.813173+0000 mon.smithi155 (mon.0) 599 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.819592+0000 mon.smithi155 (mon.0) 600 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.825959+0000 mon.smithi155 (mon.0) 601 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.828980+0000 mon.smithi155 (mon.0) 602 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.829509+0000 mon.smithi155 (mon.0) 603 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:52:07.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.830717+0000 mon.smithi155 (mon.0) 604 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:52:07.156 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:06 smithi160 bash[18819]: audit 2024-02-19T20:52:05.923611+0000 mon.smithi155 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.155:0/842472631' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T20:52:07.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:07 smithi155 bash[14250]: cluster 2024-02-19T20:52:07.389430+0000 mgr.smithi155.pwytll (mgr.14180) 144 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:08.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:07 smithi160 bash[18819]: cluster 2024-02-19T20:52:07.389430+0000 mgr.smithi155.pwytll (mgr.14180) 144 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:10.588 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:52:10.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:10 smithi155 bash[14250]: cluster 2024-02-19T20:52:09.390058+0000 mgr.smithi155.pwytll (mgr.14180) 145 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:10.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:10 smithi160 bash[18819]: cluster 2024-02-19T20:52:09.390058+0000 mgr.smithi155.pwytll (mgr.14180) 145 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:12.717 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:12 smithi160 bash[18819]: cluster 2024-02-19T20:52:11.390624+0000 mgr.smithi155.pwytll (mgr.14180) 146 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:12.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:12 smithi155 bash[14250]: cluster 2024-02-19T20:52:11.390624+0000 mgr.smithi155.pwytll (mgr.14180) 146 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:14.582 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:14 smithi160 bash[18819]: cluster 2024-02-19T20:52:13.391128+0000 mgr.smithi155.pwytll (mgr.14180) 147 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:14.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:14 smithi155 bash[14250]: cluster 2024-02-19T20:52:13.391128+0000 mgr.smithi155.pwytll (mgr.14180) 147 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:14.878 INFO:teuthology.orchestra.run.smithi155.stdout:pg_num: 1 2024-02-19T20:52:15.650 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-02-19T20:52:15.651 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-02-19T20:52:15.651 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph mgr dump --format=json 2024-02-19T20:52:15.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:15 smithi155 bash[14250]: audit 2024-02-19T20:52:14.897743+0000 mon.smithi155 (mon.0) 606 : audit [DBG] from='client.? 172.21.15.155:0/3282124741' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-19T20:52:15.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:15 smithi160 bash[18819]: audit 2024-02-19T20:52:14.897743+0000 mon.smithi155 (mon.0) 606 : audit [DBG] from='client.? 172.21.15.155:0/3282124741' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-19T20:52:16.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:16 smithi155 bash[14250]: cluster 2024-02-19T20:52:15.391655+0000 mgr.smithi155.pwytll (mgr.14180) 148 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:16.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:16 smithi160 bash[18819]: cluster 2024-02-19T20:52:15.391655+0000 mgr.smithi155.pwytll (mgr.14180) 148 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:18.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:18 smithi155 bash[14250]: cluster 2024-02-19T20:52:17.392467+0000 mgr.smithi155.pwytll (mgr.14180) 149 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:18.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:18 smithi160 bash[18819]: cluster 2024-02-19T20:52:17.392467+0000 mgr.smithi155.pwytll (mgr.14180) 149 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:20.646 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:52:20.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:20 smithi155 bash[14250]: cluster 2024-02-19T20:52:19.393128+0000 mgr.smithi155.pwytll (mgr.14180) 150 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:20.799 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:20 smithi160 bash[18819]: cluster 2024-02-19T20:52:19.393128+0000 mgr.smithi155.pwytll (mgr.14180) 150 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:22.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:22 smithi155 bash[14250]: cluster 2024-02-19T20:52:21.393552+0000 mgr.smithi155.pwytll (mgr.14180) 151 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:22.772 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:22 smithi160 bash[18819]: cluster 2024-02-19T20:52:21.393552+0000 mgr.smithi155.pwytll (mgr.14180) 151 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:24.637 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:52:24.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:24 smithi160 bash[18819]: cluster 2024-02-19T20:52:23.393935+0000 mgr.smithi155.pwytll (mgr.14180) 152 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:24.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:24 smithi155 bash[14250]: cluster 2024-02-19T20:52:23.393935+0000 mgr.smithi155.pwytll (mgr.14180) 152 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:25.707 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":18,"active_gid":14180,"active_name":"smithi155.pwytll","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6800","nonce":3182082414},{"type":"v1","addr":"172.21.15.155:6801","nonce":3182082414}]},"active_addr":"172.21.15.155:6801/3182082414","active_change":"2024-02-19T20:48:53.338780+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14200,"name":"smithi160.petcyg","mgr_features":4540138314316775423,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"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":[]},"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.23.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_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:8.3.5","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":"docker.io/library/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"docker.io/arcts/keepalived","min":"","max":"","enum_allowed":[],"desc":"Keepalived 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.3.1","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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.33.4","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","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":[]},"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":[]},"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_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_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":[]},"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":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"str","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"str","level":"advanced","flags":0,"default_value":"30","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":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"str","level":"advanced","flags":0,"default_value":"8086","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":"","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"str","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"","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":"","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"noautoscale":{"name":"noautoscale","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"global autoscale flag","long_desc":"Option to turn on/off the autoscaler for all pools","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":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"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":[]}}},{"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":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"None","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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"str","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","prometheus","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"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":[]},"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.23.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_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:8.3.5","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":"docker.io/library/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"docker.io/arcts/keepalived","min":"","max":"","enum_allowed":[],"desc":"Keepalived 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.3.1","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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.33.4","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","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":[]},"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":[]},"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_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_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":[]},"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":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"str","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"str","level":"advanced","flags":0,"default_value":"30","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":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"str","level":"advanced","flags":0,"default_value":"8086","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":"","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"str","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"","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":"","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"noautoscale":{"name":"noautoscale","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"global autoscale flag","long_desc":"Option to turn on/off the autoscaler for all pools","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":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"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":[]}}},{"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":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"None","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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"str","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"None","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.155:8443/","prometheus":"http://172.21.15.155:9283/"},"always_on_modules":{"nautilus":["balancer","crash","devicehealth","orchestrator_cli","progress","rbd_support","status","volumes"],"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"]},"last_failure_osd_epoch":4,"active_clients":[{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.155:0","nonce":3843597335}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.155:0","nonce":2979717185}]}]} 2024-02-19T20:52:25.711 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-02-19T20:52:25.711 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-02-19T20:52:25.711 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd dump --format=json 2024-02-19T20:52:25.712 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:25 smithi155 bash[14250]: audit 2024-02-19T20:52:24.646336+0000 mon.smithi155 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.155:0/1498840638' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-19T20:52:25.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:25 smithi160 bash[18819]: audit 2024-02-19T20:52:24.646336+0000 mon.smithi155 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.155:0/1498840638' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-19T20:52:26.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:26 smithi155 bash[14250]: cluster 2024-02-19T20:52:25.394262+0000 mgr.smithi155.pwytll (mgr.14180) 153 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:26.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:26 smithi160 bash[18819]: cluster 2024-02-19T20:52:25.394262+0000 mgr.smithi155.pwytll (mgr.14180) 153 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:28.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:28 smithi155 bash[14250]: cluster 2024-02-19T20:52:27.394983+0000 mgr.smithi155.pwytll (mgr.14180) 154 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:28.781 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:28 smithi160 bash[18819]: cluster 2024-02-19T20:52:27.394983+0000 mgr.smithi155.pwytll (mgr.14180) 154 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:30.628 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:52:30.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:30 smithi160 bash[18819]: cluster 2024-02-19T20:52:29.395583+0000 mgr.smithi155.pwytll (mgr.14180) 155 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:30.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:30 smithi155 bash[14250]: cluster 2024-02-19T20:52:29.395583+0000 mgr.smithi155.pwytll (mgr.14180) 155 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:32.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:32 smithi155 bash[14250]: cluster 2024-02-19T20:52:31.396227+0000 mgr.smithi155.pwytll (mgr.14180) 156 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:32.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:32 smithi155 bash[14250]: audit 2024-02-19T20:52:31.467714+0000 mon.smithi155 (mon.0) 608 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:32.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:32 smithi160 bash[18819]: cluster 2024-02-19T20:52:31.396227+0000 mgr.smithi155.pwytll (mgr.14180) 156 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:32.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:32 smithi160 bash[18819]: audit 2024-02-19T20:52:31.467714+0000 mon.smithi155 (mon.0) 608 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:34.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:34 smithi160 bash[18819]: cluster 2024-02-19T20:52:33.396789+0000 mgr.smithi155.pwytll (mgr.14180) 157 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:34.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:34 smithi155 bash[14250]: cluster 2024-02-19T20:52:33.396789+0000 mgr.smithi155.pwytll (mgr.14180) 157 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:34.822 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:52:34.822 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":45,"fsid":"d8f13c04-cf67-11ee-95bb-87774f69a715","created":"2024-02-19T20:46:46.040488+0000","modified":"2024-02-19T20:51:48.087542+0000","last_up_change":"2024-02-19T20:51:46.795714+0000","last_in_change":"2024-02-19T20:50:47.878244+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-19T20:51:22.079937+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"31","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_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"28b1c46a-86db-4a4f-9b32-7ac9f1d62664","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6800","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6801","nonce":2737759641}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6802","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6803","nonce":2737759641}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6806","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6807","nonce":2737759641}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6804","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6805","nonce":2737759641}]},"public_addr":"172.21.15.160:6801/2737759641","cluster_addr":"172.21.15.160:6803/2737759641","heartbeat_back_addr":"172.21.15.160:6807/2737759641","heartbeat_front_addr":"172.21.15.160:6805/2737759641","state":["exists","up"]},{"osd":1,"uuid":"e848e2da-03dc-4b14-92a6-2a3b67e97274","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":35,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6802","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6803","nonce":3601805210}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6804","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6805","nonce":3601805210}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6808","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6809","nonce":3601805210}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6806","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6807","nonce":3601805210}]},"public_addr":"172.21.15.155:6803/3601805210","cluster_addr":"172.21.15.155:6805/3601805210","heartbeat_back_addr":"172.21.15.155:6809/3601805210","heartbeat_front_addr":"172.21.15.155:6807/3601805210","state":["exists","up"]},{"osd":2,"uuid":"b5b35e9e-831a-4f5d-a850-241802583ef7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6808","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6809","nonce":2390546642}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6810","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6811","nonce":2390546642}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6814","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6815","nonce":2390546642}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6812","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6813","nonce":2390546642}]},"public_addr":"172.21.15.160:6809/2390546642","cluster_addr":"172.21.15.160:6811/2390546642","heartbeat_back_addr":"172.21.15.160:6815/2390546642","heartbeat_front_addr":"172.21.15.160:6813/2390546642","state":["exists","up"]},{"osd":3,"uuid":"ba7e6e85-ccd3-4328-bd42-4cb5dc4c20f1","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6810","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6811","nonce":268552064}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6812","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6813","nonce":268552064}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6816","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6817","nonce":268552064}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6814","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6815","nonce":268552064}]},"public_addr":"172.21.15.155:6811/268552064","cluster_addr":"172.21.15.155:6813/268552064","heartbeat_back_addr":"172.21.15.155:6817/268552064","heartbeat_front_addr":"172.21.15.155:6815/268552064","state":["exists","up"]},{"osd":4,"uuid":"144900e3-0f0a-42b8-912c-24a3625101be","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6816","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6817","nonce":957957975}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6818","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6819","nonce":957957975}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6822","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6823","nonce":957957975}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6820","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6821","nonce":957957975}]},"public_addr":"172.21.15.160:6817/957957975","cluster_addr":"172.21.15.160:6819/957957975","heartbeat_back_addr":"172.21.15.160:6823/957957975","heartbeat_front_addr":"172.21.15.160:6821/957957975","state":["exists","up"]},{"osd":5,"uuid":"0ff7fca8-cfca-4506-a6e6-049e9728befd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6818","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6819","nonce":3434362593}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6820","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6821","nonce":3434362593}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6824","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6825","nonce":3434362593}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6822","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6823","nonce":3434362593}]},"public_addr":"172.21.15.155:6819/3434362593","cluster_addr":"172.21.15.155:6821/3434362593","heartbeat_back_addr":"172.21.15.155:6825/3434362593","heartbeat_front_addr":"172.21.15.155:6823/3434362593","state":["exists","up"]},{"osd":6,"uuid":"2f43a040-5faf-429d-9b49-8de7023123a2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":29,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6824","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6825","nonce":2998001154}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6826","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6827","nonce":2998001154}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6830","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6831","nonce":2998001154}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6828","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6829","nonce":2998001154}]},"public_addr":"172.21.15.160:6825/2998001154","cluster_addr":"172.21.15.160:6827/2998001154","heartbeat_back_addr":"172.21.15.160:6831/2998001154","heartbeat_front_addr":"172.21.15.160:6829/2998001154","state":["exists","up"]},{"osd":7,"uuid":"84121283-11de-4727-ad91-4050c18381dd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":43,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6826","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6827","nonce":630226012}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6828","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6829","nonce":630226012}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6832","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6833","nonce":630226012}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6830","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6831","nonce":630226012}]},"public_addr":"172.21.15.155:6827/630226012","cluster_addr":"172.21.15.155:6829/630226012","heartbeat_back_addr":"172.21.15.155:6833/630226012","heartbeat_front_addr":"172.21.15.155:6831/630226012","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:09.605824+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:22.825715+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:15.013312+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:32.209149+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:20.291632+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:39.058124+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:24.474706+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:44.985277+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.155:0/4168802219":"2024-02-20T20:48:53.338558+0000","172.21.15.155:6801/4241738903":"2024-02-20T20:48:53.338558+0000","172.21.15.155:6800/4241738903":"2024-02-20T20:48:53.338558+0000","172.21.15.155:6801/4025590812":"2024-02-20T20:47:53.219338+0000","172.21.15.155:6800/4025590812":"2024-02-20T20:47:53.219338+0000","172.21.15.155:0/3792745755":"2024-02-20T20:47:53.219338+0000","172.21.15.155:0/96337458":"2024-02-20T20:48:53.338558+0000","172.21.15.155:0/2271707611":"2024-02-20T20:47:53.219338+0000","172.21.15.155:0/239574550":"2024-02-20T20:47:13.218939+0000","172.21.15.155:6800/3267236656":"2024-02-20T20:47:13.218939+0000","172.21.15.155:6801/3267236656":"2024-02-20T20:47:13.218939+0000","172.21.15.155:0/2821705930":"2024-02-20T20:47:13.218939+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","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-02-19T20:52:35.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:35 smithi155 bash[14250]: audit 2024-02-19T20:52:34.839963+0000 mon.smithi155 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.155:0/504891345' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T20:52:35.864 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-02-19T20:52:35.865 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd dump --format=json 2024-02-19T20:52:35.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:35 smithi160 bash[18819]: audit 2024-02-19T20:52:34.839963+0000 mon.smithi155 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.155:0/504891345' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T20:52:36.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:36 smithi155 bash[14250]: cluster 2024-02-19T20:52:35.397311+0000 mgr.smithi155.pwytll (mgr.14180) 158 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:36.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:36 smithi160 bash[18819]: cluster 2024-02-19T20:52:35.397311+0000 mgr.smithi155.pwytll (mgr.14180) 158 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:38.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:38 smithi155 bash[14250]: audit 2024-02-19T20:52:37.229087+0000 mon.smithi155 (mon.0) 610 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:38.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:38 smithi155 bash[14250]: cluster 2024-02-19T20:52:37.397891+0000 mgr.smithi155.pwytll (mgr.14180) 159 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:38.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:38 smithi160 bash[18819]: audit 2024-02-19T20:52:37.229087+0000 mon.smithi155 (mon.0) 610 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:52:38.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:38 smithi160 bash[18819]: cluster 2024-02-19T20:52:37.397891+0000 mgr.smithi155.pwytll (mgr.14180) 159 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:40.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:40 smithi155 bash[14250]: cluster 2024-02-19T20:52:39.398442+0000 mgr.smithi155.pwytll (mgr.14180) 160 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:40.746 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:52:40.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:40 smithi160 bash[18819]: cluster 2024-02-19T20:52:39.398442+0000 mgr.smithi155.pwytll (mgr.14180) 160 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:42.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:42 smithi155 bash[14250]: cluster 2024-02-19T20:52:41.398982+0000 mgr.smithi155.pwytll (mgr.14180) 161 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:42.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:42 smithi160 bash[18819]: cluster 2024-02-19T20:52:41.398982+0000 mgr.smithi155.pwytll (mgr.14180) 161 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:43.570 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:52:43.570 INFO:teuthology.orchestra.run.smithi155.stdout:{"epoch":45,"fsid":"d8f13c04-cf67-11ee-95bb-87774f69a715","created":"2024-02-19T20:46:46.040488+0000","modified":"2024-02-19T20:51:48.087542+0000","last_up_change":"2024-02-19T20:51:46.795714+0000","last_in_change":"2024-02-19T20:50:47.878244+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-19T20:51:22.079937+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"31","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_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"28b1c46a-86db-4a4f-9b32-7ac9f1d62664","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6800","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6801","nonce":2737759641}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6802","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6803","nonce":2737759641}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6806","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6807","nonce":2737759641}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6804","nonce":2737759641},{"type":"v1","addr":"172.21.15.160:6805","nonce":2737759641}]},"public_addr":"172.21.15.160:6801/2737759641","cluster_addr":"172.21.15.160:6803/2737759641","heartbeat_back_addr":"172.21.15.160:6807/2737759641","heartbeat_front_addr":"172.21.15.160:6805/2737759641","state":["exists","up"]},{"osd":1,"uuid":"e848e2da-03dc-4b14-92a6-2a3b67e97274","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":35,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6802","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6803","nonce":3601805210}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6804","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6805","nonce":3601805210}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6808","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6809","nonce":3601805210}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6806","nonce":3601805210},{"type":"v1","addr":"172.21.15.155:6807","nonce":3601805210}]},"public_addr":"172.21.15.155:6803/3601805210","cluster_addr":"172.21.15.155:6805/3601805210","heartbeat_back_addr":"172.21.15.155:6809/3601805210","heartbeat_front_addr":"172.21.15.155:6807/3601805210","state":["exists","up"]},{"osd":2,"uuid":"b5b35e9e-831a-4f5d-a850-241802583ef7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6808","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6809","nonce":2390546642}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6810","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6811","nonce":2390546642}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6814","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6815","nonce":2390546642}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6812","nonce":2390546642},{"type":"v1","addr":"172.21.15.160:6813","nonce":2390546642}]},"public_addr":"172.21.15.160:6809/2390546642","cluster_addr":"172.21.15.160:6811/2390546642","heartbeat_back_addr":"172.21.15.160:6815/2390546642","heartbeat_front_addr":"172.21.15.160:6813/2390546642","state":["exists","up"]},{"osd":3,"uuid":"ba7e6e85-ccd3-4328-bd42-4cb5dc4c20f1","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6810","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6811","nonce":268552064}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6812","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6813","nonce":268552064}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6816","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6817","nonce":268552064}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6814","nonce":268552064},{"type":"v1","addr":"172.21.15.155:6815","nonce":268552064}]},"public_addr":"172.21.15.155:6811/268552064","cluster_addr":"172.21.15.155:6813/268552064","heartbeat_back_addr":"172.21.15.155:6817/268552064","heartbeat_front_addr":"172.21.15.155:6815/268552064","state":["exists","up"]},{"osd":4,"uuid":"144900e3-0f0a-42b8-912c-24a3625101be","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6816","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6817","nonce":957957975}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6818","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6819","nonce":957957975}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6822","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6823","nonce":957957975}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6820","nonce":957957975},{"type":"v1","addr":"172.21.15.160:6821","nonce":957957975}]},"public_addr":"172.21.15.160:6817/957957975","cluster_addr":"172.21.15.160:6819/957957975","heartbeat_back_addr":"172.21.15.160:6823/957957975","heartbeat_front_addr":"172.21.15.160:6821/957957975","state":["exists","up"]},{"osd":5,"uuid":"0ff7fca8-cfca-4506-a6e6-049e9728befd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6818","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6819","nonce":3434362593}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6820","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6821","nonce":3434362593}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6824","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6825","nonce":3434362593}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6822","nonce":3434362593},{"type":"v1","addr":"172.21.15.155:6823","nonce":3434362593}]},"public_addr":"172.21.15.155:6819/3434362593","cluster_addr":"172.21.15.155:6821/3434362593","heartbeat_back_addr":"172.21.15.155:6825/3434362593","heartbeat_front_addr":"172.21.15.155:6823/3434362593","state":["exists","up"]},{"osd":6,"uuid":"2f43a040-5faf-429d-9b49-8de7023123a2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":29,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6824","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6825","nonce":2998001154}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6826","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6827","nonce":2998001154}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6830","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6831","nonce":2998001154}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6828","nonce":2998001154},{"type":"v1","addr":"172.21.15.160:6829","nonce":2998001154}]},"public_addr":"172.21.15.160:6825/2998001154","cluster_addr":"172.21.15.160:6827/2998001154","heartbeat_back_addr":"172.21.15.160:6831/2998001154","heartbeat_front_addr":"172.21.15.160:6829/2998001154","state":["exists","up"]},{"osd":7,"uuid":"84121283-11de-4727-ad91-4050c18381dd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":43,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6826","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6827","nonce":630226012}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6828","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6829","nonce":630226012}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6832","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6833","nonce":630226012}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.155:6830","nonce":630226012},{"type":"v1","addr":"172.21.15.155:6831","nonce":630226012}]},"public_addr":"172.21.15.155:6827/630226012","cluster_addr":"172.21.15.155:6829/630226012","heartbeat_back_addr":"172.21.15.155:6833/630226012","heartbeat_front_addr":"172.21.15.155:6831/630226012","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:09.605824+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:22.825715+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:15.013312+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:32.209149+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:20.291632+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:39.058124+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:24.474706+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-19T20:51:44.985277+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.155:0/4168802219":"2024-02-20T20:48:53.338558+0000","172.21.15.155:6801/4241738903":"2024-02-20T20:48:53.338558+0000","172.21.15.155:6800/4241738903":"2024-02-20T20:48:53.338558+0000","172.21.15.155:6801/4025590812":"2024-02-20T20:47:53.219338+0000","172.21.15.155:6800/4025590812":"2024-02-20T20:47:53.219338+0000","172.21.15.155:0/3792745755":"2024-02-20T20:47:53.219338+0000","172.21.15.155:0/96337458":"2024-02-20T20:48:53.338558+0000","172.21.15.155:0/2271707611":"2024-02-20T20:47:53.219338+0000","172.21.15.155:0/239574550":"2024-02-20T20:47:13.218939+0000","172.21.15.155:6800/3267236656":"2024-02-20T20:47:13.218939+0000","172.21.15.155:6801/3267236656":"2024-02-20T20:47:13.218939+0000","172.21.15.155:0/2821705930":"2024-02-20T20:47:13.218939+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","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-02-19T20:52:44.300 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-02-19T20:52:44.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:44 smithi160 bash[18819]: cluster 2024-02-19T20:52:43.399436+0000 mgr.smithi155.pwytll (mgr.14180) 162 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:44.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:44 smithi160 bash[18819]: audit 2024-02-19T20:52:43.587897+0000 mon.smithi155 (mon.0) 611 : audit [DBG] from='client.? 172.21.15.155:0/1418553375' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T20:52:44.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:44 smithi155 bash[14250]: cluster 2024-02-19T20:52:43.399436+0000 mgr.smithi155.pwytll (mgr.14180) 162 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:44.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:44 smithi155 bash[14250]: audit 2024-02-19T20:52:43.587897+0000 mon.smithi155 (mon.0) 611 : audit [DBG] from='client.? 172.21.15.155:0/1418553375' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T20:52:46.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:46 smithi155 bash[14250]: cluster 2024-02-19T20:52:45.399960+0000 mgr.smithi155.pwytll (mgr.14180) 163 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:46.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:46 smithi160 bash[18819]: cluster 2024-02-19T20:52:45.399960+0000 mgr.smithi155.pwytll (mgr.14180) 163 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:48.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:48 smithi155 bash[14250]: cluster 2024-02-19T20:52:47.400580+0000 mgr.smithi155.pwytll (mgr.14180) 164 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:48.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:48 smithi160 bash[18819]: cluster 2024-02-19T20:52:47.400580+0000 mgr.smithi155.pwytll (mgr.14180) 164 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:49.081 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:52:50.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:50 smithi155 bash[14250]: cluster 2024-02-19T20:52:49.401083+0000 mgr.smithi155.pwytll (mgr.14180) 165 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:50.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:50 smithi160 bash[18819]: cluster 2024-02-19T20:52:49.401083+0000 mgr.smithi155.pwytll (mgr.14180) 165 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:52.486 INFO:teuthology.orchestra.run.smithi155.stdout:68719476759 2024-02-19T20:52:52.486 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-02-19T20:52:52.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:52 smithi155 bash[14250]: cluster 2024-02-19T20:52:51.401684+0000 mgr.smithi155.pwytll (mgr.14180) 166 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:52.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:52 smithi160 bash[18819]: cluster 2024-02-19T20:52:51.401684+0000 mgr.smithi155.pwytll (mgr.14180) 166 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:54.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:54 smithi160 bash[18819]: cluster 2024-02-19T20:52:53.402260+0000 mgr.smithi155.pwytll (mgr.14180) 167 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:54.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:54 smithi155 bash[14250]: cluster 2024-02-19T20:52:53.402260+0000 mgr.smithi155.pwytll (mgr.14180) 167 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:56.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:56 smithi155 bash[14250]: cluster 2024-02-19T20:52:55.402869+0000 mgr.smithi155.pwytll (mgr.14180) 168 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:56.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:56 smithi160 bash[18819]: cluster 2024-02-19T20:52:55.402869+0000 mgr.smithi155.pwytll (mgr.14180) 168 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:57.267 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:52:58.747 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:52:58 smithi155 bash[14250]: cluster 2024-02-19T20:52:57.403475+0000 mgr.smithi155.pwytll (mgr.14180) 169 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:52:58.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:52:58 smithi160 bash[18819]: cluster 2024-02-19T20:52:57.403475+0000 mgr.smithi155.pwytll (mgr.14180) 169 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:00.731 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:00 smithi155 bash[14250]: cluster 2024-02-19T20:52:59.404057+0000 mgr.smithi155.pwytll (mgr.14180) 170 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:00.732 INFO:teuthology.orchestra.run.smithi155.stdout:115964117013 2024-02-19T20:53:00.733 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-02-19T20:53:00.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:00 smithi160 bash[18819]: cluster 2024-02-19T20:52:59.404057+0000 mgr.smithi155.pwytll (mgr.14180) 170 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:02.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:02 smithi155 bash[14250]: cluster 2024-02-19T20:53:01.404593+0000 mgr.smithi155.pwytll (mgr.14180) 171 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:02.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:02 smithi160 bash[18819]: cluster 2024-02-19T20:53:01.404593+0000 mgr.smithi155.pwytll (mgr.14180) 171 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:04.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:04 smithi160 bash[18819]: cluster 2024-02-19T20:53:03.405140+0000 mgr.smithi155.pwytll (mgr.14180) 172 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:04.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:04 smithi155 bash[14250]: cluster 2024-02-19T20:53:03.405140+0000 mgr.smithi155.pwytll (mgr.14180) 172 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:05.517 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:53:06.665 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:06 smithi155 bash[14250]: cluster 2024-02-19T20:53:05.405777+0000 mgr.smithi155.pwytll (mgr.14180) 173 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:06.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:06 smithi160 bash[18819]: cluster 2024-02-19T20:53:05.405777+0000 mgr.smithi155.pwytll (mgr.14180) 173 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:08.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:08 smithi155 bash[14250]: cluster 2024-02-19T20:53:07.406257+0000 mgr.smithi155.pwytll (mgr.14180) 174 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:08.849 INFO:teuthology.orchestra.run.smithi155.stdout:85899345946 2024-02-19T20:53:08.850 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-02-19T20:53:08.910 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:08 smithi160 bash[18819]: cluster 2024-02-19T20:53:07.406257+0000 mgr.smithi155.pwytll (mgr.14180) 174 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:10.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:10 smithi160 bash[18819]: cluster 2024-02-19T20:53:09.406796+0000 mgr.smithi155.pwytll (mgr.14180) 175 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:10.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:10 smithi155 bash[14250]: cluster 2024-02-19T20:53:09.406796+0000 mgr.smithi155.pwytll (mgr.14180) 175 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:12.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:12 smithi160 bash[18819]: cluster 2024-02-19T20:53:11.407368+0000 mgr.smithi155.pwytll (mgr.14180) 176 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:12.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:12 smithi155 bash[14250]: cluster 2024-02-19T20:53:11.407368+0000 mgr.smithi155.pwytll (mgr.14180) 176 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:13.638 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:53:14.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:14 smithi160 bash[18819]: cluster 2024-02-19T20:53:13.407990+0000 mgr.smithi155.pwytll (mgr.14180) 177 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:14.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:14 smithi155 bash[14250]: cluster 2024-02-19T20:53:13.407990+0000 mgr.smithi155.pwytll (mgr.14180) 177 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:16.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:16 smithi155 bash[14250]: cluster 2024-02-19T20:53:15.408592+0000 mgr.smithi155.pwytll (mgr.14180) 178 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:16.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:16 smithi160 bash[18819]: cluster 2024-02-19T20:53:15.408592+0000 mgr.smithi155.pwytll (mgr.14180) 178 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:16.994 INFO:teuthology.orchestra.run.smithi155.stdout:146028888088 2024-02-19T20:53:16.994 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-02-19T20:53:18.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:18 smithi160 bash[18819]: cluster 2024-02-19T20:53:17.409073+0000 mgr.smithi155.pwytll (mgr.14180) 179 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:18.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:18 smithi155 bash[14250]: cluster 2024-02-19T20:53:17.409073+0000 mgr.smithi155.pwytll (mgr.14180) 179 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:20.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:20 smithi160 bash[18819]: cluster 2024-02-19T20:53:19.409637+0000 mgr.smithi155.pwytll (mgr.14180) 180 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:20.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:20 smithi155 bash[14250]: cluster 2024-02-19T20:53:19.409637+0000 mgr.smithi155.pwytll (mgr.14180) 180 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:21.784 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:53:22.908 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:22 smithi160 bash[18819]: cluster 2024-02-19T20:53:21.410138+0000 mgr.smithi155.pwytll (mgr.14180) 181 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:22.929 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:22 smithi155 bash[14250]: cluster 2024-02-19T20:53:21.410138+0000 mgr.smithi155.pwytll (mgr.14180) 181 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:24.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:24 smithi160 bash[18819]: cluster 2024-02-19T20:53:23.410522+0000 mgr.smithi155.pwytll (mgr.14180) 182 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:24.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:24 smithi155 bash[14250]: cluster 2024-02-19T20:53:23.410522+0000 mgr.smithi155.pwytll (mgr.14180) 182 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:25.184 INFO:teuthology.orchestra.run.smithi155.stdout:103079215132 2024-02-19T20:53:25.185 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-02-19T20:53:26.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:26 smithi160 bash[18819]: cluster 2024-02-19T20:53:25.410952+0000 mgr.smithi155.pwytll (mgr.14180) 183 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:26.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:26 smithi155 bash[14250]: cluster 2024-02-19T20:53:25.410952+0000 mgr.smithi155.pwytll (mgr.14180) 183 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:28.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:28 smithi160 bash[18819]: cluster 2024-02-19T20:53:27.411562+0000 mgr.smithi155.pwytll (mgr.14180) 184 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:28.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:28 smithi155 bash[14250]: cluster 2024-02-19T20:53:27.411562+0000 mgr.smithi155.pwytll (mgr.14180) 184 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:29.969 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:53:30.843 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:30 smithi155 bash[14250]: cluster 2024-02-19T20:53:29.412108+0000 mgr.smithi155.pwytll (mgr.14180) 185 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:30.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:30 smithi160 bash[18819]: cluster 2024-02-19T20:53:29.412108+0000 mgr.smithi155.pwytll (mgr.14180) 185 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:32.756 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:32 smithi155 bash[14250]: cluster 2024-02-19T20:53:31.412654+0000 mgr.smithi155.pwytll (mgr.14180) 186 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:32.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:32 smithi160 bash[18819]: cluster 2024-02-19T20:53:31.412654+0000 mgr.smithi155.pwytll (mgr.14180) 186 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:33.459 INFO:teuthology.orchestra.run.smithi155.stdout:167503724570 2024-02-19T20:53:33.460 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-02-19T20:53:34.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:34 smithi160 bash[18819]: cluster 2024-02-19T20:53:33.413226+0000 mgr.smithi155.pwytll (mgr.14180) 187 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:34.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:34 smithi155 bash[14250]: cluster 2024-02-19T20:53:33.413226+0000 mgr.smithi155.pwytll (mgr.14180) 187 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:36.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:36 smithi160 bash[18819]: cluster 2024-02-19T20:53:35.413754+0000 mgr.smithi155.pwytll (mgr.14180) 188 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:36.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:36 smithi155 bash[14250]: cluster 2024-02-19T20:53:35.413754+0000 mgr.smithi155.pwytll (mgr.14180) 188 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:37.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:37 smithi160 bash[18819]: audit 2024-02-19T20:53:37.234102+0000 mon.smithi155 (mon.0) 612 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:53:37.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:37 smithi155 bash[14250]: audit 2024-02-19T20:53:37.234102+0000 mon.smithi155 (mon.0) 612 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:53:38.250 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:53:38.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:38 smithi160 bash[18819]: cluster 2024-02-19T20:53:37.414155+0000 mgr.smithi155.pwytll (mgr.14180) 189 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:38.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:38 smithi155 bash[14250]: cluster 2024-02-19T20:53:37.414155+0000 mgr.smithi155.pwytll (mgr.14180) 189 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:40.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:40 smithi160 bash[18819]: cluster 2024-02-19T20:53:39.414688+0000 mgr.smithi155.pwytll (mgr.14180) 190 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:40.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:40 smithi155 bash[14250]: cluster 2024-02-19T20:53:39.414688+0000 mgr.smithi155.pwytll (mgr.14180) 190 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:41.779 INFO:teuthology.orchestra.run.smithi155.stdout:120259084318 2024-02-19T20:53:41.780 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-02-19T20:53:42.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:42 smithi160 bash[18819]: cluster 2024-02-19T20:53:41.415121+0000 mgr.smithi155.pwytll (mgr.14180) 191 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:42.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:42 smithi160 bash[18819]: audit 2024-02-19T20:53:42.408676+0000 mon.smithi155 (mon.0) 613 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:53:42.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:42 smithi155 bash[14250]: cluster 2024-02-19T20:53:41.415121+0000 mgr.smithi155.pwytll (mgr.14180) 191 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:42.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:42 smithi155 bash[14250]: audit 2024-02-19T20:53:42.408676+0000 mon.smithi155 (mon.0) 613 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:53:43.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:43 smithi155 bash[14250]: audit 2024-02-19T20:53:42.715568+0000 mon.smithi155 (mon.0) 614 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:53:43.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:43 smithi155 bash[14250]: audit 2024-02-19T20:53:42.992202+0000 mon.smithi155 (mon.0) 615 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:53:43.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:43 smithi155 bash[14250]: audit 2024-02-19T20:53:42.994238+0000 mon.smithi155 (mon.0) 616 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:53:43.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:43 smithi155 bash[14250]: audit 2024-02-19T20:53:43.003576+0000 mon.smithi155 (mon.0) 617 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:53:43.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:43 smithi155 bash[14250]: audit 2024-02-19T20:53:43.013716+0000 mon.smithi155 (mon.0) 618 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:53:43.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:43 smithi155 bash[14250]: cluster 2024-02-19T20:53:43.415659+0000 mgr.smithi155.pwytll (mgr.14180) 192 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:44.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:43 smithi160 bash[18819]: audit 2024-02-19T20:53:42.715568+0000 mon.smithi155 (mon.0) 614 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:53:44.154 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:43 smithi160 bash[18819]: audit 2024-02-19T20:53:42.992202+0000 mon.smithi155 (mon.0) 615 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:53:44.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:43 smithi160 bash[18819]: audit 2024-02-19T20:53:42.994238+0000 mon.smithi155 (mon.0) 616 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:53:44.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:43 smithi160 bash[18819]: audit 2024-02-19T20:53:43.003576+0000 mon.smithi155 (mon.0) 617 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:53:44.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:43 smithi160 bash[18819]: audit 2024-02-19T20:53:43.013716+0000 mon.smithi155 (mon.0) 618 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:53:44.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:43 smithi160 bash[18819]: cluster 2024-02-19T20:53:43.415659+0000 mgr.smithi155.pwytll (mgr.14180) 192 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:46.562 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:53:46.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:46 smithi155 bash[14250]: cluster 2024-02-19T20:53:45.416131+0000 mgr.smithi155.pwytll (mgr.14180) 193 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:46.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:46 smithi160 bash[18819]: cluster 2024-02-19T20:53:45.416131+0000 mgr.smithi155.pwytll (mgr.14180) 193 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:48.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:48 smithi155 bash[14250]: cluster 2024-02-19T20:53:47.416720+0000 mgr.smithi155.pwytll (mgr.14180) 194 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:48.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:48 smithi160 bash[18819]: cluster 2024-02-19T20:53:47.416720+0000 mgr.smithi155.pwytll (mgr.14180) 194 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:50.075 INFO:teuthology.orchestra.run.smithi155.stdout:184683593755 2024-02-19T20:53:50.076 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-02-19T20:53:50.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:50 smithi155 bash[14250]: cluster 2024-02-19T20:53:49.417114+0000 mgr.smithi155.pwytll (mgr.14180) 195 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:50.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:50 smithi160 bash[18819]: cluster 2024-02-19T20:53:49.417114+0000 mgr.smithi155.pwytll (mgr.14180) 195 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:52.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:52 smithi155 bash[14250]: cluster 2024-02-19T20:53:51.417747+0000 mgr.smithi155.pwytll (mgr.14180) 196 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:52.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:52 smithi160 bash[18819]: cluster 2024-02-19T20:53:51.417747+0000 mgr.smithi155.pwytll (mgr.14180) 196 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:54.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:54 smithi160 bash[18819]: cluster 2024-02-19T20:53:53.418281+0000 mgr.smithi155.pwytll (mgr.14180) 197 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:54.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:54 smithi155 bash[14250]: cluster 2024-02-19T20:53:53.418281+0000 mgr.smithi155.pwytll (mgr.14180) 197 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:54.851 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:53:56.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:56 smithi155 bash[14250]: cluster 2024-02-19T20:53:55.418856+0000 mgr.smithi155.pwytll (mgr.14180) 198 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:56.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:56 smithi160 bash[18819]: cluster 2024-02-19T20:53:55.418856+0000 mgr.smithi155.pwytll (mgr.14180) 198 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:57.724 INFO:teuthology.orchestra.run.smithi155.stdout:68719476772 2024-02-19T20:53:58.392 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476759 got 68719476772 for osd.0 2024-02-19T20:53:58.392 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-02-19T20:53:58.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:58 smithi155 bash[14250]: cluster 2024-02-19T20:53:57.419439+0000 mgr.smithi155.pwytll (mgr.14180) 199 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:58.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:53:58 smithi155 bash[14250]: audit 2024-02-19T20:53:57.744156+0000 mon.smithi155 (mon.0) 619 : audit [DBG] from='client.? 172.21.15.155:0/4110748971' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-19T20:53:58.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:58 smithi160 bash[18819]: cluster 2024-02-19T20:53:57.419439+0000 mgr.smithi155.pwytll (mgr.14180) 199 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:53:58.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:53:58 smithi160 bash[18819]: audit 2024-02-19T20:53:57.744156+0000 mon.smithi155 (mon.0) 619 : audit [DBG] from='client.? 172.21.15.155:0/4110748971' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-19T20:54:00.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:00 smithi155 bash[14250]: cluster 2024-02-19T20:53:59.420034+0000 mgr.smithi155.pwytll (mgr.14180) 200 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:00.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:00 smithi160 bash[18819]: cluster 2024-02-19T20:53:59.420034+0000 mgr.smithi155.pwytll (mgr.14180) 200 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:02.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:02 smithi155 bash[14250]: cluster 2024-02-19T20:54:01.420597+0000 mgr.smithi155.pwytll (mgr.14180) 201 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:02.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:02 smithi160 bash[18819]: cluster 2024-02-19T20:54:01.420597+0000 mgr.smithi155.pwytll (mgr.14180) 201 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:03.181 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:54:04.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:04 smithi160 bash[18819]: cluster 2024-02-19T20:54:03.421170+0000 mgr.smithi155.pwytll (mgr.14180) 202 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:04.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:04 smithi155 bash[14250]: cluster 2024-02-19T20:54:03.421170+0000 mgr.smithi155.pwytll (mgr.14180) 202 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:06.077 INFO:teuthology.orchestra.run.smithi155.stdout:115964117026 2024-02-19T20:54:06.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:06 smithi155 bash[14250]: cluster 2024-02-19T20:54:05.421763+0000 mgr.smithi155.pwytll (mgr.14180) 203 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:06.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:06 smithi155 bash[14250]: audit 2024-02-19T20:54:06.096789+0000 mon.smithi155 (mon.0) 620 : audit [DBG] from='client.? 172.21.15.155:0/652923483' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-19T20:54:06.780 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964117013 got 115964117026 for osd.1 2024-02-19T20:54:06.780 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-02-19T20:54:06.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:06 smithi160 bash[18819]: cluster 2024-02-19T20:54:05.421763+0000 mgr.smithi155.pwytll (mgr.14180) 203 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:06.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:06 smithi160 bash[18819]: audit 2024-02-19T20:54:06.096789+0000 mon.smithi155 (mon.0) 620 : audit [DBG] from='client.? 172.21.15.155:0/652923483' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-19T20:54:08.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:08 smithi160 bash[18819]: cluster 2024-02-19T20:54:07.422441+0000 mgr.smithi155.pwytll (mgr.14180) 204 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:08.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:08 smithi155 bash[14250]: cluster 2024-02-19T20:54:07.422441+0000 mgr.smithi155.pwytll (mgr.14180) 204 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:10.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:10 smithi160 bash[18819]: cluster 2024-02-19T20:54:09.423168+0000 mgr.smithi155.pwytll (mgr.14180) 205 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:10.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:10 smithi155 bash[14250]: cluster 2024-02-19T20:54:09.423168+0000 mgr.smithi155.pwytll (mgr.14180) 205 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:11.563 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:54:12.783 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:12 smithi155 bash[14250]: cluster 2024-02-19T20:54:11.423777+0000 mgr.smithi155.pwytll (mgr.14180) 206 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:12.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:12 smithi160 bash[18819]: cluster 2024-02-19T20:54:11.423777+0000 mgr.smithi155.pwytll (mgr.14180) 206 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:14.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:14 smithi160 bash[18819]: cluster 2024-02-19T20:54:13.424393+0000 mgr.smithi155.pwytll (mgr.14180) 207 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:14.656 INFO:teuthology.orchestra.run.smithi155.stdout:85899345959 2024-02-19T20:54:14.895 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:14 smithi155 bash[14250]: cluster 2024-02-19T20:54:13.424393+0000 mgr.smithi155.pwytll (mgr.14180) 207 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:15.384 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345946 got 85899345959 for osd.2 2024-02-19T20:54:15.385 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-02-19T20:54:15.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:15 smithi155 bash[14250]: audit 2024-02-19T20:54:14.675490+0000 mon.smithi155 (mon.0) 621 : audit [DBG] from='client.? 172.21.15.155:0/3330556435' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-19T20:54:15.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:15 smithi160 bash[18819]: audit 2024-02-19T20:54:14.675490+0000 mon.smithi155 (mon.0) 621 : audit [DBG] from='client.? 172.21.15.155:0/3330556435' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-19T20:54:16.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:16 smithi160 bash[18819]: cluster 2024-02-19T20:54:15.424999+0000 mgr.smithi155.pwytll (mgr.14180) 208 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:16.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:16 smithi155 bash[14250]: cluster 2024-02-19T20:54:15.424999+0000 mgr.smithi155.pwytll (mgr.14180) 208 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:18.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:18 smithi160 bash[18819]: cluster 2024-02-19T20:54:17.425571+0000 mgr.smithi155.pwytll (mgr.14180) 209 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:18.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:18 smithi155 bash[14250]: cluster 2024-02-19T20:54:17.425571+0000 mgr.smithi155.pwytll (mgr.14180) 209 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:20.168 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:54:20.908 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:20 smithi160 bash[18819]: cluster 2024-02-19T20:54:19.426220+0000 mgr.smithi155.pwytll (mgr.14180) 210 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:20.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:20 smithi155 bash[14250]: cluster 2024-02-19T20:54:19.426220+0000 mgr.smithi155.pwytll (mgr.14180) 210 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:22.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:22 smithi160 bash[18819]: cluster 2024-02-19T20:54:21.426753+0000 mgr.smithi155.pwytll (mgr.14180) 211 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:22.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:22 smithi155 bash[14250]: cluster 2024-02-19T20:54:21.426753+0000 mgr.smithi155.pwytll (mgr.14180) 211 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:23.009 INFO:teuthology.orchestra.run.smithi155.stdout:146028888101 2024-02-19T20:54:23.804 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:23 smithi155 bash[14250]: audit 2024-02-19T20:54:23.028503+0000 mon.smithi155 (mon.0) 622 : audit [DBG] from='client.? 172.21.15.155:0/583186684' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-19T20:54:23.805 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888088 got 146028888101 for osd.3 2024-02-19T20:54:23.805 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-02-19T20:54:23.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:23 smithi160 bash[18819]: audit 2024-02-19T20:54:23.028503+0000 mon.smithi155 (mon.0) 622 : audit [DBG] from='client.? 172.21.15.155:0/583186684' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-19T20:54:24.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:24 smithi160 bash[18819]: cluster 2024-02-19T20:54:23.427352+0000 mgr.smithi155.pwytll (mgr.14180) 212 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:24.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:24 smithi155 bash[14250]: cluster 2024-02-19T20:54:23.427352+0000 mgr.smithi155.pwytll (mgr.14180) 212 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:26.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:26 smithi160 bash[18819]: cluster 2024-02-19T20:54:25.427892+0000 mgr.smithi155.pwytll (mgr.14180) 213 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:26.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:26 smithi155 bash[14250]: cluster 2024-02-19T20:54:25.427892+0000 mgr.smithi155.pwytll (mgr.14180) 213 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:28.590 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:54:28.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:28 smithi160 bash[18819]: cluster 2024-02-19T20:54:27.428559+0000 mgr.smithi155.pwytll (mgr.14180) 214 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:28.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:28 smithi155 bash[14250]: cluster 2024-02-19T20:54:27.428559+0000 mgr.smithi155.pwytll (mgr.14180) 214 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:30.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:30 smithi155 bash[14250]: cluster 2024-02-19T20:54:29.429188+0000 mgr.smithi155.pwytll (mgr.14180) 215 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:30.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:30 smithi160 bash[18819]: cluster 2024-02-19T20:54:29.429188+0000 mgr.smithi155.pwytll (mgr.14180) 215 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:31.482 INFO:teuthology.orchestra.run.smithi155.stdout:103079215145 2024-02-19T20:54:31.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:31 smithi160 bash[18819]: audit 2024-02-19T20:54:31.501596+0000 mon.smithi155 (mon.0) 623 : audit [DBG] from='client.? 172.21.15.155:0/1898970511' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-19T20:54:31.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:31 smithi155 bash[14250]: audit 2024-02-19T20:54:31.501596+0000 mon.smithi155 (mon.0) 623 : audit [DBG] from='client.? 172.21.15.155:0/1898970511' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-19T20:54:32.120 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215132 got 103079215145 for osd.4 2024-02-19T20:54:32.120 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-02-19T20:54:32.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:32 smithi160 bash[18819]: cluster 2024-02-19T20:54:31.429597+0000 mgr.smithi155.pwytll (mgr.14180) 216 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:32.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:32 smithi155 bash[14250]: cluster 2024-02-19T20:54:31.429597+0000 mgr.smithi155.pwytll (mgr.14180) 216 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:34.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:34 smithi160 bash[18819]: cluster 2024-02-19T20:54:33.430079+0000 mgr.smithi155.pwytll (mgr.14180) 217 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:34.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:34 smithi155 bash[14250]: cluster 2024-02-19T20:54:33.430079+0000 mgr.smithi155.pwytll (mgr.14180) 217 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:36.901 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:54:36.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:36 smithi160 bash[18819]: cluster 2024-02-19T20:54:35.430743+0000 mgr.smithi155.pwytll (mgr.14180) 218 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:36.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:36 smithi155 bash[14250]: cluster 2024-02-19T20:54:35.430743+0000 mgr.smithi155.pwytll (mgr.14180) 218 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:38.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:38 smithi155 bash[14250]: cluster 2024-02-19T20:54:37.431239+0000 mgr.smithi155.pwytll (mgr.14180) 219 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:38.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:38 smithi160 bash[18819]: cluster 2024-02-19T20:54:37.431239+0000 mgr.smithi155.pwytll (mgr.14180) 219 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:39.570 INFO:teuthology.orchestra.run.smithi155.stdout:167503724583 2024-02-19T20:54:39.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:39 smithi160 bash[18819]: audit 2024-02-19T20:54:39.589781+0000 mon.smithi155 (mon.0) 624 : audit [DBG] from='client.? 172.21.15.155:0/2691966116' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-19T20:54:39.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:39 smithi155 bash[14250]: audit 2024-02-19T20:54:39.589781+0000 mon.smithi155 (mon.0) 624 : audit [DBG] from='client.? 172.21.15.155:0/2691966116' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-19T20:54:40.321 INFO:tasks.cephadm.ceph_manager.ceph:need seq 167503724570 got 167503724583 for osd.5 2024-02-19T20:54:40.322 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-02-19T20:54:40.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:40 smithi160 bash[18819]: cluster 2024-02-19T20:54:39.431765+0000 mgr.smithi155.pwytll (mgr.14180) 220 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:40.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:40 smithi155 bash[14250]: cluster 2024-02-19T20:54:39.431765+0000 mgr.smithi155.pwytll (mgr.14180) 220 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:42.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:42 smithi160 bash[18819]: cluster 2024-02-19T20:54:41.432359+0000 mgr.smithi155.pwytll (mgr.14180) 221 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:42.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:42 smithi155 bash[14250]: cluster 2024-02-19T20:54:41.432359+0000 mgr.smithi155.pwytll (mgr.14180) 221 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:43.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:43 smithi160 bash[18819]: audit 2024-02-19T20:54:43.025897+0000 mon.smithi155 (mon.0) 625 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:54:43.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:43 smithi155 bash[14250]: audit 2024-02-19T20:54:43.025897+0000 mon.smithi155 (mon.0) 625 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:54:44.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:44 smithi160 bash[18819]: cluster 2024-02-19T20:54:43.432961+0000 mgr.smithi155.pwytll (mgr.14180) 222 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:44.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:44 smithi155 bash[14250]: cluster 2024-02-19T20:54:43.432961+0000 mgr.smithi155.pwytll (mgr.14180) 222 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:45.112 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:54:46.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:46 smithi160 bash[18819]: cluster 2024-02-19T20:54:45.433477+0000 mgr.smithi155.pwytll (mgr.14180) 223 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:46.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:46 smithi155 bash[14250]: cluster 2024-02-19T20:54:45.433477+0000 mgr.smithi155.pwytll (mgr.14180) 223 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:47.920 INFO:teuthology.orchestra.run.smithi155.stdout:120259084331 2024-02-19T20:54:48.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:48 smithi155 bash[14250]: cluster 2024-02-19T20:54:47.433864+0000 mgr.smithi155.pwytll (mgr.14180) 224 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:48.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:48 smithi155 bash[14250]: audit 2024-02-19T20:54:47.939843+0000 mon.smithi155 (mon.0) 626 : audit [DBG] from='client.? 172.21.15.155:0/1567712548' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-19T20:54:48.404 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:48 smithi160 bash[18819]: cluster 2024-02-19T20:54:47.433864+0000 mgr.smithi155.pwytll (mgr.14180) 224 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:48.404 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:48 smithi160 bash[18819]: audit 2024-02-19T20:54:47.939843+0000 mon.smithi155 (mon.0) 626 : audit [DBG] from='client.? 172.21.15.155:0/1567712548' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-19T20:54:48.643 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084318 got 120259084331 for osd.6 2024-02-19T20:54:48.643 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-02-19T20:54:49.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:49 smithi160 bash[18819]: audit 2024-02-19T20:54:48.316924+0000 mon.smithi155 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:54:49.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:49 smithi160 bash[18819]: audit 2024-02-19T20:54:48.485364+0000 mon.smithi155 (mon.0) 628 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:54:49.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:49 smithi160 bash[18819]: audit 2024-02-19T20:54:48.760677+0000 mon.smithi155 (mon.0) 629 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:54:49.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:49 smithi160 bash[18819]: audit 2024-02-19T20:54:48.762297+0000 mon.smithi155 (mon.0) 630 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:54:49.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:49 smithi160 bash[18819]: audit 2024-02-19T20:54:48.768336+0000 mon.smithi155 (mon.0) 631 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:54:49.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:49 smithi160 bash[18819]: audit 2024-02-19T20:54:48.775650+0000 mon.smithi155 (mon.0) 632 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:54:49.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:49 smithi155 bash[14250]: audit 2024-02-19T20:54:48.316924+0000 mon.smithi155 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:54:49.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:49 smithi155 bash[14250]: audit 2024-02-19T20:54:48.485364+0000 mon.smithi155 (mon.0) 628 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:54:49.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:49 smithi155 bash[14250]: audit 2024-02-19T20:54:48.760677+0000 mon.smithi155 (mon.0) 629 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:54:49.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:49 smithi155 bash[14250]: audit 2024-02-19T20:54:48.762297+0000 mon.smithi155 (mon.0) 630 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:54:49.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:49 smithi155 bash[14250]: audit 2024-02-19T20:54:48.768336+0000 mon.smithi155 (mon.0) 631 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:54:49.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:49 smithi155 bash[14250]: audit 2024-02-19T20:54:48.775650+0000 mon.smithi155 (mon.0) 632 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:54:50.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:50 smithi160 bash[18819]: cluster 2024-02-19T20:54:49.434365+0000 mgr.smithi155.pwytll (mgr.14180) 225 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:50.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:50 smithi155 bash[14250]: cluster 2024-02-19T20:54:49.434365+0000 mgr.smithi155.pwytll (mgr.14180) 225 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:52.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:52 smithi155 bash[14250]: cluster 2024-02-19T20:54:51.434896+0000 mgr.smithi155.pwytll (mgr.14180) 226 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:52.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:52 smithi160 bash[18819]: cluster 2024-02-19T20:54:51.434896+0000 mgr.smithi155.pwytll (mgr.14180) 226 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:53.427 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:54:54.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:54 smithi160 bash[18819]: cluster 2024-02-19T20:54:53.435478+0000 mgr.smithi155.pwytll (mgr.14180) 227 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:54.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:54 smithi155 bash[14250]: cluster 2024-02-19T20:54:53.435478+0000 mgr.smithi155.pwytll (mgr.14180) 227 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:56.248 INFO:teuthology.orchestra.run.smithi155.stdout:184683593768 2024-02-19T20:54:56.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:56 smithi155 bash[14250]: cluster 2024-02-19T20:54:55.436078+0000 mgr.smithi155.pwytll (mgr.14180) 228 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:56.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:56 smithi155 bash[14250]: audit 2024-02-19T20:54:56.268284+0000 mon.smithi155 (mon.0) 633 : audit [DBG] from='client.? 172.21.15.155:0/2590024866' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-19T20:54:56.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:56 smithi160 bash[18819]: cluster 2024-02-19T20:54:55.436078+0000 mgr.smithi155.pwytll (mgr.14180) 228 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:56.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:56 smithi160 bash[18819]: audit 2024-02-19T20:54:56.268284+0000 mon.smithi155 (mon.0) 633 : audit [DBG] from='client.? 172.21.15.155:0/2590024866' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-19T20:54:56.930 INFO:tasks.cephadm.ceph_manager.ceph:need seq 184683593755 got 184683593768 for osd.7 2024-02-19T20:54:56.931 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-02-19T20:54:56.931 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph pg dump --format=json 2024-02-19T20:54:58.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:54:58 smithi155 bash[14250]: cluster 2024-02-19T20:54:57.436673+0000 mgr.smithi155.pwytll (mgr.14180) 229 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:54:58.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:54:58 smithi160 bash[18819]: cluster 2024-02-19T20:54:57.436673+0000 mgr.smithi155.pwytll (mgr.14180) 229 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:00.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:00 smithi155 bash[14250]: cluster 2024-02-19T20:54:59.437272+0000 mgr.smithi155.pwytll (mgr.14180) 230 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:00.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:00 smithi160 bash[18819]: cluster 2024-02-19T20:54:59.437272+0000 mgr.smithi155.pwytll (mgr.14180) 230 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:01.714 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:55:02.755 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:02 smithi155 bash[14250]: cluster 2024-02-19T20:55:01.437884+0000 mgr.smithi155.pwytll (mgr.14180) 231 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:02.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:02 smithi160 bash[18819]: cluster 2024-02-19T20:55:01.437884+0000 mgr.smithi155.pwytll (mgr.14180) 231 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:04.564 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:55:04.566 INFO:teuthology.orchestra.run.smithi155.stderr:dumped all 2024-02-19T20:55:04.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:04 smithi160 bash[18819]: cluster 2024-02-19T20:55:03.438505+0000 mgr.smithi155.pwytll (mgr.14180) 232 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:04.779 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:04 smithi155 bash[14250]: cluster 2024-02-19T20:55:03.438505+0000 mgr.smithi155.pwytll (mgr.14180) 232 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:05.252 INFO:teuthology.orchestra.run.smithi155.stdout:{"pg_ready":true,"pg_map":{"version":219,"stamp":"2024-02-19T20:55:03.438147+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"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":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":2380308,"kb_used_data":3540,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548140,"statfs":{"total":767926730752,"available":765489295360,"internally_reserved":0,"allocated":3624960,"data_stored":1417516,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":2433744896},"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":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"0'0","reported_seq":10,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-02-19T20:51:48.336465+0000","last_change":"2024-02-19T20:51:48.336465+0000","last_active":"2024-02-19T20:51:48.336465+0000","last_peered":"2024-02-19T20:51:48.336465+0000","last_clean":"2024-02-19T20:51:48.336465+0000","last_became_active":"2024-02-19T20:51:48.336095+0000","last_became_peered":"2024-02-19T20:51:48.336095+0000","last_unstale":"2024-02-19T20:51:48.336465+0000","last_undegraded":"2024-02-19T20:51:48.336465+0000","last_fullsized":"2024-02-19T20:51:48.336465+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":25,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-19T20:51:22.615835+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-19T20:51:22.615835+0000","last_clean_scrub_stamp":"2024-02-19T20:51:22.615835+0000","log_size":0,"ondisk_log_size":0,"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,"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},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":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":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":7,"up_from":43,"seq":184683593770,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297540,"kb_used_data":444,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443516,"statfs":{"total":95990841344,"available":95686160384,"internally_reserved":0,"allocated":454656,"data_stored":177436,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":0.78400000000000003,"5min":0.80700000000000005,"15min":0.80300000000000005},"min":{"1min":0.58099999999999996,"5min":0.51500000000000001,"15min":0.51500000000000001},"max":{"1min":1.181,"5min":1.181,"15min":1.181},"last":0.67100000000000004},{"interface":"front","average":{"1min":0.94099999999999995,"5min":0.91200000000000003,"15min":0.90400000000000003},"min":{"1min":0.61399999999999999,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":1.208,"5min":1.264,"15min":1.264},"last":0.93799999999999994}]},{"osd":1,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":0.82699999999999996,"5min":0.753,"15min":0.747},"min":{"1min":0.51100000000000001,"5min":0.46800000000000003,"15min":0.46800000000000003},"max":{"1min":1.141,"5min":1.141,"15min":1.141},"last":0.84199999999999997},{"interface":"front","average":{"1min":0.80400000000000005,"5min":0.745,"15min":0.72299999999999998},"min":{"1min":0.52800000000000002,"5min":0.46600000000000003,"15min":0.46600000000000003},"max":{"1min":1.3140000000000001,"5min":1.3140000000000001,"15min":1.3140000000000001},"last":0.69799999999999995}]},{"osd":2,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":0.92500000000000004,"5min":0.83999999999999997,"15min":0.82099999999999995},"min":{"1min":0.59999999999999998,"5min":0.52900000000000003,"15min":0.52900000000000003},"max":{"1min":1.381,"5min":1.381,"15min":1.381},"last":0.88600000000000001},{"interface":"front","average":{"1min":0.92100000000000004,"5min":0.88200000000000001,"15min":0.87},"min":{"1min":0.66900000000000004,"5min":0.65200000000000002,"15min":0.65200000000000002},"max":{"1min":1.647,"5min":1.647,"15min":1.647},"last":0.98799999999999999}]},{"osd":3,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":0.879,"5min":0.84599999999999997,"15min":0.82799999999999996},"min":{"1min":0.57399999999999995,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":1.4119999999999999,"5min":1.4119999999999999,"15min":1.4119999999999999},"last":1.028},{"interface":"front","average":{"1min":0.91600000000000004,"5min":0.85599999999999998,"15min":0.84399999999999997},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":1.5820000000000001,"5min":1.5820000000000001,"15min":1.5820000000000001},"last":1.0700000000000001}]},{"osd":4,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":1.0449999999999999,"5min":0.97399999999999998,"15min":0.95699999999999996},"min":{"1min":0.76100000000000001,"5min":0.71299999999999997,"15min":0.71299999999999997},"max":{"1min":1.6890000000000001,"5min":1.6890000000000001,"15min":1.6890000000000001},"last":0.96499999999999997},{"interface":"front","average":{"1min":1.0600000000000001,"5min":0.995,"15min":0.98399999999999999},"min":{"1min":0.70499999999999996,"5min":0.66100000000000003,"15min":0.66100000000000003},"max":{"1min":1.615,"5min":1.615,"15min":1.615},"last":1.105}]},{"osd":5,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":1.056,"5min":0.94899999999999995,"15min":0.92700000000000005},"min":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"max":{"1min":1.5629999999999999,"5min":1.5629999999999999,"15min":1.5629999999999999},"last":1.1879999999999999},{"interface":"front","average":{"1min":1.1100000000000001,"5min":1.0149999999999999,"15min":0.98899999999999999},"min":{"1min":0.67100000000000004,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.617,"5min":1.617,"15min":1.617},"last":1.141}]},{"osd":6,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":1.179,"5min":1.089,"15min":1.069},"min":{"1min":0.73299999999999998,"5min":0.73299999999999998,"15min":0.73299999999999998},"max":{"1min":1.671,"5min":1.774,"15min":1.774},"last":1.21},{"interface":"front","average":{"1min":1.1830000000000001,"5min":1.081,"15min":1.0529999999999999},"min":{"1min":0.83699999999999997,"5min":0.64000000000000001,"15min":0.64000000000000001},"max":{"1min":1.7529999999999999,"5min":1.7529999999999999,"15min":1.7529999999999999},"last":1.1679999999999999}]}]},{"osd":5,"up_from":39,"seq":167503724588,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297540,"kb_used_data":444,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443516,"statfs":{"total":95990841344,"available":95686160384,"internally_reserved":0,"allocated":454656,"data_stored":177436,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.85599999999999998,"5min":0.86099999999999999,"15min":0.873},"min":{"1min":0.60899999999999999,"5min":0.59099999999999997,"15min":0.59099999999999997},"max":{"1min":1.0700000000000001,"5min":2.0779999999999998,"15min":2.0779999999999998},"last":0.86299999999999999},{"interface":"front","average":{"1min":0.83599999999999997,"5min":0.87,"15min":0.878},"min":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":1.1699999999999999,"5min":2.1070000000000002,"15min":2.1070000000000002},"last":0.69999999999999996}]},{"osd":1,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.77100000000000002,"5min":0.88,"15min":0.93600000000000005},"min":{"1min":0.40400000000000003,"5min":0.40400000000000003,"15min":0.40400000000000003},"max":{"1min":1.2310000000000001,"5min":5.0570000000000004,"15min":5.0570000000000004},"last":0.76100000000000001},{"interface":"front","average":{"1min":0.71799999999999997,"5min":0.73999999999999999,"15min":0.75600000000000001},"min":{"1min":0.46700000000000003,"5min":0.39900000000000002,"15min":0.39900000000000002},"max":{"1min":1.014,"5min":1.6839999999999999,"15min":1.6839999999999999},"last":0.626}]},{"osd":2,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.93500000000000005,"5min":1.018,"15min":1.0649999999999999},"min":{"1min":0.67200000000000004,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.155,"5min":5.4779999999999998,"15min":5.4779999999999998},"last":1.018},{"interface":"front","average":{"1min":0.92500000000000004,"5min":0.94699999999999995,"15min":0.96799999999999997},"min":{"1min":0.63600000000000001,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.141,"5min":1.8540000000000001,"15min":1.8540000000000001},"last":0.81100000000000005}]},{"osd":3,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.78600000000000003,"5min":0.78100000000000003,"15min":0.78900000000000003},"min":{"1min":0.53100000000000003,"5min":0.39900000000000002,"15min":0.39900000000000002},"max":{"1min":1.0860000000000001,"5min":1.911,"15min":1.911},"last":0.79000000000000004},{"interface":"front","average":{"1min":0.89800000000000002,"5min":0.97499999999999998,"15min":1.004},"min":{"1min":0.61499999999999999,"5min":0.49399999999999999,"15min":0.49399999999999999},"max":{"1min":1.143,"5min":4.9050000000000002,"15min":4.9050000000000002},"last":0.94099999999999995}]},{"osd":4,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.89900000000000002,"5min":0.96099999999999997,"15min":0.98099999999999998},"min":{"1min":0.60699999999999998,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.2989999999999999,"5min":2.2719999999999998,"15min":2.2719999999999998},"last":0.90400000000000003},{"interface":"front","average":{"1min":1.03,"5min":1.169,"15min":1.226},"min":{"1min":0.68400000000000005,"5min":0.68400000000000005,"15min":0.68400000000000005},"max":{"1min":1.2210000000000001,"5min":5.5380000000000003,"15min":5.5380000000000003},"last":1.071}]},{"osd":6,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":1.0069999999999999,"5min":1.034,"15min":1.052},"min":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"max":{"1min":1.232,"5min":2.2349999999999999,"15min":2.2349999999999999},"last":0.93100000000000005},{"interface":"front","average":{"1min":1.105,"5min":1.2050000000000001,"15min":1.258},"min":{"1min":0.81999999999999995,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.3380000000000001,"5min":5.3070000000000004,"15min":5.3070000000000004},"last":1.1160000000000001}]},{"osd":7,"last update":"Mon Feb 19 20:54:49 2024","interfaces":[{"interface":"back","average":{"1min":0.998,"5min":0.96999999999999997,"15min":0.96199999999999997},"min":{"1min":0.64000000000000001,"5min":0.51700000000000002,"15min":0.51700000000000002},"max":{"1min":1.3919999999999999,"5min":1.3919999999999999,"15min":1.3919999999999999},"last":0.97999999999999998},{"interface":"front","average":{"1min":1.1140000000000001,"5min":1.0780000000000001,"15min":1.069},"min":{"1min":0.76000000000000001,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":1.3859999999999999,"5min":1.4039999999999999,"15min":1.4039999999999999},"last":1.155}]}]},{"osd":2,"up_from":20,"seq":85899345969,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297536,"kb_used_data":440,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443520,"statfs":{"total":95990841344,"available":95686164480,"internally_reserved":0,"allocated":450560,"data_stored":177121,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:19 2024","interfaces":[{"interface":"back","average":{"1min":0.70799999999999996,"5min":0.65400000000000003,"15min":0.63},"min":{"1min":0.52900000000000003,"5min":0.372,"15min":0.372},"max":{"1min":1.2,"5min":1.2,"15min":1.2},"last":0.79800000000000004},{"interface":"front","average":{"1min":0.71599999999999997,"5min":0.71899999999999997,"15min":0.71599999999999997},"min":{"1min":0.47999999999999998,"5min":0.432,"15min":0.432},"max":{"1min":1.026,"5min":1.171,"15min":1.171},"last":0.84899999999999998}]},{"osd":1,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":0.92700000000000005,"5min":0.91300000000000003,"15min":0.89800000000000002},"min":{"1min":0.69799999999999995,"5min":0.51800000000000002,"15min":0.51800000000000002},"max":{"1min":1.0580000000000001,"5min":1.2250000000000001,"15min":1.2250000000000001},"last":1.0680000000000001},{"interface":"front","average":{"1min":0.96899999999999997,"5min":0.94599999999999995,"15min":0.92200000000000004},"min":{"1min":0.73699999999999999,"5min":0.621,"15min":0.621},"max":{"1min":1.149,"5min":1.282,"15min":1.282},"last":0.94999999999999996}]},{"osd":3,"last update":"Mon Feb 19 20:54:41 2024","interfaces":[{"interface":"back","average":{"1min":0.80700000000000005,"5min":0.82099999999999995,"15min":0.81100000000000005},"min":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":0.98899999999999999,"5min":1.115,"15min":1.115},"last":0.91700000000000004},{"interface":"front","average":{"1min":0.90400000000000003,"5min":0.88600000000000001,"15min":0.88200000000000001},"min":{"1min":0.73699999999999999,"5min":0.58799999999999997,"15min":0.58799999999999997},"max":{"1min":1.0780000000000001,"5min":1.1439999999999999,"15min":1.1439999999999999},"last":0.97999999999999998}]},{"osd":4,"last update":"Mon Feb 19 20:54:25 2024","interfaces":[{"interface":"back","average":{"1min":0.85499999999999998,"5min":0.84199999999999997,"15min":0.83099999999999996},"min":{"1min":0.68400000000000005,"5min":0.46400000000000002,"15min":0.46400000000000002},"max":{"1min":1.143,"5min":1.143,"15min":1.143},"last":0.88300000000000001},{"interface":"front","average":{"1min":0.92200000000000004,"5min":0.86699999999999999,"15min":0.85499999999999998},"min":{"1min":0.72599999999999998,"5min":0.51300000000000001,"15min":0.51300000000000001},"max":{"1min":1.2010000000000001,"5min":1.242,"15min":1.242},"last":1.034}]},{"osd":5,"last update":"Mon Feb 19 20:54:55 2024","interfaces":[{"interface":"back","average":{"1min":1.0649999999999999,"5min":1.0469999999999999,"15min":1.0409999999999999},"min":{"1min":0.81899999999999995,"5min":0.81899999999999995,"15min":0.81899999999999995},"max":{"1min":1.206,"5min":1.2909999999999999,"15min":1.2909999999999999},"last":1.127},{"interface":"front","average":{"1min":0.97199999999999998,"5min":0.97499999999999998,"15min":0.96799999999999997},"min":{"1min":0.77900000000000003,"5min":0.70599999999999996,"15min":0.70599999999999996},"max":{"1min":1.119,"5min":1.169,"15min":1.169},"last":1.1000000000000001}]},{"osd":6,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":1.0149999999999999,"5min":0.95299999999999996,"15min":0.92200000000000004},"min":{"1min":0.82899999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.2050000000000001,"5min":1.3620000000000001,"15min":1.3620000000000001},"last":1.228},{"interface":"front","average":{"1min":0.92000000000000004,"5min":0.90000000000000002,"15min":0.88},"min":{"1min":0.74199999999999999,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":1.0640000000000001,"5min":1.2130000000000001,"15min":1.2130000000000001},"last":1.0109999999999999}]},{"osd":7,"last update":"Mon Feb 19 20:54:55 2024","interfaces":[{"interface":"back","average":{"1min":1.028,"5min":1.0309999999999999,"15min":1.024},"min":{"1min":0.81899999999999995,"5min":0.76600000000000001,"15min":0.76600000000000001},"max":{"1min":1.1990000000000001,"5min":1.222,"15min":1.222},"last":1.159},{"interface":"front","average":{"1min":1.135,"5min":1.1140000000000001,"15min":1.1000000000000001},"min":{"1min":0.85899999999999999,"5min":0.77100000000000002,"15min":0.77100000000000002},"max":{"1min":1.4870000000000001,"5min":1.4870000000000001,"15min":1.4870000000000001},"last":1.1859999999999999}]}]},{"osd":0,"up_from":16,"seq":68719476786,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297540,"kb_used_data":444,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443516,"statfs":{"total":95990841344,"available":95686160384,"internally_reserved":0,"allocated":454656,"data_stored":177436,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":1,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":0.97799999999999998,"5min":0.95199999999999996,"15min":0.93500000000000005},"min":{"1min":0.69099999999999995,"5min":0.52900000000000003,"15min":0.52900000000000003},"max":{"1min":1.2230000000000001,"5min":1.357,"15min":1.357},"last":1.026},{"interface":"front","average":{"1min":1.024,"5min":0.96999999999999997,"15min":0.96199999999999997},"min":{"1min":0.70799999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.302,"5min":1.4910000000000001,"15min":1.4910000000000001},"last":0.79800000000000004}]},{"osd":2,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":0.81599999999999995,"5min":0.78900000000000003,"15min":0.78700000000000003},"min":{"1min":0.58399999999999996,"5min":0.42999999999999999,"15min":0.42999999999999999},"max":{"1min":1.121,"5min":1.3320000000000001,"15min":1.3320000000000001},"last":0.76500000000000001},{"interface":"front","average":{"1min":0.85199999999999998,"5min":0.85599999999999998,"15min":0.876},"min":{"1min":0.57899999999999996,"5min":0.50800000000000001,"15min":0.50800000000000001},"max":{"1min":1.1439999999999999,"5min":1.6379999999999999,"15min":1.6379999999999999},"last":0.58399999999999996}]},{"osd":3,"last update":"Mon Feb 19 20:54:40 2024","interfaces":[{"interface":"back","average":{"1min":0.90100000000000002,"5min":0.93300000000000005,"15min":0.92700000000000005},"min":{"1min":0.63300000000000001,"5min":0.53700000000000003,"15min":0.53700000000000003},"max":{"1min":1.1719999999999999,"5min":1.258,"15min":1.258},"last":0.94899999999999995},{"interface":"front","average":{"1min":0.92500000000000004,"5min":0.95099999999999996,"15min":0.94699999999999995},"min":{"1min":0.71399999999999997,"5min":0.63800000000000001,"15min":0.63800000000000001},"max":{"1min":1.3460000000000001,"5min":1.3460000000000001,"15min":1.3460000000000001},"last":0.88800000000000001}]},{"osd":4,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":0.82999999999999996,"5min":0.84099999999999997,"15min":0.84099999999999997},"min":{"1min":0.62,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":1.1319999999999999,"5min":1.1839999999999999,"15min":1.1839999999999999},"last":1.002},{"interface":"front","average":{"1min":0.93999999999999995,"5min":0.94699999999999995,"15min":0.94999999999999996},"min":{"1min":0.70199999999999996,"5min":0.44400000000000001,"15min":0.44400000000000001},"max":{"1min":1.2929999999999999,"5min":1.4199999999999999,"15min":1.4199999999999999},"last":0.69499999999999995}]},{"osd":5,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.96499999999999997,"5min":0.93899999999999995,"15min":0.92100000000000004},"min":{"1min":0.73899999999999999,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.147,"5min":1.147,"15min":1.147},"last":0.91400000000000003},{"interface":"front","average":{"1min":1.0640000000000001,"5min":1.0660000000000001,"15min":1.0489999999999999},"min":{"1min":0.80700000000000005,"5min":0.74399999999999999,"15min":0.74399999999999999},"max":{"1min":1.2430000000000001,"5min":1.4930000000000001,"15min":1.4930000000000001},"last":0.86499999999999999}]},{"osd":6,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":1.0109999999999999,"5min":0.999,"15min":0.99099999999999999},"min":{"1min":0.68600000000000005,"5min":0.57899999999999996,"15min":0.57899999999999996},"max":{"1min":1.2529999999999999,"5min":1.323,"15min":1.323},"last":0.97599999999999998},{"interface":"front","average":{"1min":0.96199999999999997,"5min":0.98599999999999999,"15min":0.98199999999999998},"min":{"1min":0.745,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":1.2210000000000001,"5min":1.3009999999999999,"15min":1.3009999999999999},"last":0.81899999999999995}]},{"osd":7,"last update":"Mon Feb 19 20:54:51 2024","interfaces":[{"interface":"back","average":{"1min":1.0569999999999999,"5min":1.085,"15min":1.0820000000000001},"min":{"1min":0.872,"5min":0.71599999999999997,"15min":0.71599999999999997},"max":{"1min":1.2669999999999999,"5min":1.377,"15min":1.377},"last":1.069},{"interface":"front","average":{"1min":1.105,"5min":1.149,"15min":1.133},"min":{"1min":0.86799999999999999,"5min":0.69099999999999995,"15min":0.69099999999999995},"max":{"1min":1.5680000000000001,"5min":1.669,"15min":1.669},"last":1.0960000000000001}]}]},{"osd":4,"up_from":24,"seq":103079215152,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297536,"kb_used_data":440,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443520,"statfs":{"total":95990841344,"available":95686164480,"internally_reserved":0,"allocated":450560,"data_stored":176094,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:29 2024","interfaces":[{"interface":"back","average":{"1min":0.66600000000000004,"5min":0.68000000000000005,"15min":0.68600000000000005},"min":{"1min":0.51900000000000002,"5min":0.46100000000000002,"15min":0.46100000000000002},"max":{"1min":0.83499999999999996,"5min":1.0980000000000001,"15min":1.0980000000000001},"last":0.59699999999999998},{"interface":"front","average":{"1min":0.80400000000000005,"5min":0.76400000000000001,"15min":0.76600000000000001},"min":{"1min":0.57599999999999996,"5min":0.439,"15min":0.439},"max":{"1min":1.107,"5min":1.117,"15min":1.117},"last":0.68899999999999995}]},{"osd":1,"last update":"Mon Feb 19 20:54:29 2024","interfaces":[{"interface":"back","average":{"1min":0.997,"5min":0.93500000000000005,"15min":0.91100000000000003},"min":{"1min":0.80300000000000005,"5min":0.628,"15min":0.628},"max":{"1min":1.234,"5min":1.234,"15min":1.234},"last":1.0569999999999999},{"interface":"front","average":{"1min":1.0329999999999999,"5min":0.99099999999999999,"15min":0.97899999999999998},"min":{"1min":0.71799999999999997,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.333,"5min":1.4930000000000001,"15min":1.4930000000000001},"last":1.0269999999999999}]},{"osd":2,"last update":"Mon Feb 19 20:54:29 2024","interfaces":[{"interface":"back","average":{"1min":0.92200000000000004,"5min":0.84199999999999997,"15min":0.82999999999999996},"min":{"1min":0.66400000000000003,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.3149999999999999,"5min":1.3149999999999999,"15min":1.3149999999999999},"last":0.75},{"interface":"front","average":{"1min":0.86399999999999999,"5min":0.84399999999999997,"15min":0.85099999999999998},"min":{"1min":0.67100000000000004,"5min":0.443,"15min":0.443},"max":{"1min":1.1299999999999999,"5min":1.5149999999999999,"15min":1.5149999999999999},"last":0.79300000000000004}]},{"osd":3,"last update":"Mon Feb 19 20:54:40 2024","interfaces":[{"interface":"back","average":{"1min":0.98799999999999999,"5min":0.96199999999999997,"15min":0.96099999999999997},"min":{"1min":0.73999999999999999,"5min":0.66300000000000003,"15min":0.66300000000000003},"max":{"1min":1.2689999999999999,"5min":1.4690000000000001,"15min":1.4690000000000001},"last":0.88100000000000001},{"interface":"front","average":{"1min":0.90000000000000002,"5min":0.93999999999999995,"15min":0.94899999999999995},"min":{"1min":0.754,"5min":0.61399999999999999,"15min":0.61399999999999999},"max":{"1min":1.052,"5min":1.343,"15min":1.343},"last":0.91400000000000003}]},{"osd":5,"last update":"Mon Feb 19 20:54:45 2024","interfaces":[{"interface":"back","average":{"1min":1.081,"5min":1.0720000000000001,"15min":1.0740000000000001},"min":{"1min":0.78500000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"max":{"1min":1.2629999999999999,"5min":1.52,"15min":1.52},"last":1.1120000000000001},{"interface":"front","average":{"1min":1.0249999999999999,"5min":1.0609999999999999,"15min":1.0680000000000001},"min":{"1min":0.75600000000000001,"5min":0.70299999999999996,"15min":0.70299999999999996},"max":{"1min":1.2410000000000001,"5min":1.5369999999999999,"15min":1.5369999999999999},"last":1}]},{"osd":6,"last update":"Mon Feb 19 20:54:29 2024","interfaces":[{"interface":"back","average":{"1min":0.998,"5min":0.98999999999999999,"15min":0.98799999999999999},"min":{"1min":0.65000000000000002,"5min":0.52600000000000002,"15min":0.52600000000000002},"max":{"1min":1.208,"5min":1.3580000000000001,"15min":1.3580000000000001},"last":0.94099999999999995},{"interface":"front","average":{"1min":1.085,"5min":1.0720000000000001,"15min":1.0740000000000001},"min":{"1min":0.76900000000000002,"5min":0.61199999999999999,"15min":0.61199999999999999},"max":{"1min":1.278,"5min":1.7549999999999999,"15min":1.7549999999999999},"last":0.96899999999999997}]},{"osd":7,"last update":"Mon Feb 19 20:54:54 2024","interfaces":[{"interface":"back","average":{"1min":1.1220000000000001,"5min":1.123,"15min":1.123},"min":{"1min":0.85699999999999998,"5min":0.70999999999999996,"15min":0.70999999999999996},"max":{"1min":1.294,"5min":1.4299999999999999,"15min":1.4299999999999999},"last":1.089},{"interface":"front","average":{"1min":1.0960000000000001,"5min":1.1140000000000001,"15min":1.1100000000000001},"min":{"1min":0.93100000000000005,"5min":0.60199999999999998,"15min":0.60199999999999998},"max":{"1min":1.3049999999999999,"5min":1.4099999999999999,"15min":1.4099999999999999},"last":1.135}]}]},{"osd":1,"up_from":27,"seq":115964117038,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297536,"kb_used_data":440,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443520,"statfs":{"total":95990841344,"available":95686164480,"internally_reserved":0,"allocated":450560,"data_stored":177121,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:32 2024","interfaces":[{"interface":"back","average":{"1min":0.85399999999999998,"5min":0.85899999999999999,"15min":0.86799999999999999},"min":{"1min":0.65300000000000002,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":1.1020000000000001,"5min":1.1659999999999999,"15min":1.1659999999999999},"last":0.68700000000000006},{"interface":"front","average":{"1min":0.88,"5min":0.85499999999999998,"15min":0.84999999999999998},"min":{"1min":0.72099999999999997,"5min":0.624,"15min":0.624},"max":{"1min":1.099,"5min":1.1120000000000001,"15min":1.1120000000000001},"last":0.96499999999999997}]},{"osd":2,"last update":"Mon Feb 19 20:54:32 2024","interfaces":[{"interface":"back","average":{"1min":0.90100000000000002,"5min":0.89100000000000001,"15min":0.88300000000000001},"min":{"1min":0.61599999999999999,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.069,"5min":1.25,"15min":1.25},"last":0.93000000000000005},{"interface":"front","average":{"1min":0.86699999999999999,"5min":0.871,"15min":0.872},"min":{"1min":0.60699999999999998,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.0920000000000001,"5min":1.327,"15min":1.327},"last":0.76800000000000002}]},{"osd":3,"last update":"Mon Feb 19 20:54:39 2024","interfaces":[{"interface":"back","average":{"1min":0.79700000000000004,"5min":0.75900000000000001,"15min":0.749},"min":{"1min":0.501,"5min":0.46899999999999997,"15min":0.46899999999999997},"max":{"1min":1.2949999999999999,"5min":1.3300000000000001,"15min":1.3300000000000001},"last":0.61099999999999999},{"interface":"front","average":{"1min":0.77500000000000002,"5min":0.746,"15min":0.73499999999999999},"min":{"1min":0.29699999999999999,"5min":0.29699999999999999,"15min":0.29699999999999999},"max":{"1min":1.0920000000000001,"5min":1.3160000000000001,"15min":1.3160000000000001},"last":0.64400000000000002}]},{"osd":4,"last update":"Mon Feb 19 20:54:32 2024","interfaces":[{"interface":"back","average":{"1min":0.90400000000000003,"5min":0.88500000000000001,"15min":0.875},"min":{"1min":0.59399999999999997,"5min":0.59399999999999997,"15min":0.59399999999999997},"max":{"1min":1.141,"5min":1.181,"15min":1.181},"last":0.90100000000000002},{"interface":"front","average":{"1min":1.024,"5min":0.94599999999999995,"15min":0.92000000000000004},"min":{"1min":0.69999999999999996,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.3660000000000001,"5min":1.3660000000000001,"15min":1.3660000000000001},"last":0.86099999999999999}]},{"osd":5,"last update":"Mon Feb 19 20:54:45 2024","interfaces":[{"interface":"back","average":{"1min":0.97499999999999998,"5min":0.88900000000000001,"15min":0.85899999999999999},"min":{"1min":0.71299999999999997,"5min":0.47699999999999998,"15min":0.47699999999999998},"max":{"1min":1.2210000000000001,"5min":1.294,"15min":1.294},"last":0.74099999999999999},{"interface":"front","average":{"1min":0.97199999999999998,"5min":0.88700000000000001,"15min":0.85299999999999998},"min":{"1min":0.54600000000000004,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":1.3260000000000001,"5min":1.3260000000000001,"15min":1.3260000000000001},"last":0.57399999999999995}]},{"osd":6,"last update":"Mon Feb 19 20:54:32 2024","interfaces":[{"interface":"back","average":{"1min":1.1100000000000001,"5min":1.0429999999999999,"15min":1.02},"min":{"1min":0.81200000000000006,"5min":0.71799999999999997,"15min":0.71799999999999997},"max":{"1min":1.409,"5min":1.409,"15min":1.409},"last":1.028},{"interface":"front","average":{"1min":1.012,"5min":0.98999999999999999,"15min":0.97399999999999998},"min":{"1min":0.68500000000000005,"5min":0.68500000000000005,"15min":0.68500000000000005},"max":{"1min":1.397,"5min":1.397,"15min":1.397},"last":0.84299999999999997}]},{"osd":7,"last update":"Mon Feb 19 20:54:52 2024","interfaces":[{"interface":"back","average":{"1min":1.004,"5min":0.98899999999999999,"15min":0.995},"min":{"1min":0.439,"5min":0.439,"15min":0.439},"max":{"1min":1.2609999999999999,"5min":1.403,"15min":1.403},"last":0.82299999999999995},{"interface":"front","average":{"1min":1.149,"5min":1.1020000000000001,"15min":1.089},"min":{"1min":0.61599999999999999,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.458,"5min":1.458,"15min":1.458},"last":0.98499999999999999}]}]},{"osd":6,"up_from":28,"seq":120259084335,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297540,"kb_used_data":444,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443516,"statfs":{"total":95990841344,"available":95686160384,"internally_reserved":0,"allocated":454656,"data_stored":177436,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:33 2024","interfaces":[{"interface":"back","average":{"1min":0.77600000000000002,"5min":0.78800000000000003,"15min":0.77900000000000003},"min":{"1min":0.54300000000000004,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.087,"5min":1.2210000000000001,"15min":1.2210000000000001},"last":0.747},{"interface":"front","average":{"1min":0.89300000000000002,"5min":0.86299999999999999,"15min":0.84999999999999998},"min":{"1min":0.623,"5min":0.47099999999999997,"15min":0.47099999999999997},"max":{"1min":1.1990000000000001,"5min":1.3260000000000001,"15min":1.3260000000000001},"last":0.67200000000000004}]},{"osd":1,"last update":"Mon Feb 19 20:54:33 2024","interfaces":[{"interface":"back","average":{"1min":0.89500000000000002,"5min":0.89600000000000002,"15min":0.88700000000000001},"min":{"1min":0.71199999999999997,"5min":0.54900000000000004,"15min":0.54900000000000004},"max":{"1min":1.147,"5min":1.232,"15min":1.232},"last":0.71099999999999997},{"interface":"front","average":{"1min":1.0049999999999999,"5min":0.97499999999999998,"15min":0.96099999999999997},"min":{"1min":0.85899999999999999,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.306,"5min":1.306,"15min":1.306},"last":1.0609999999999999}]},{"osd":2,"last update":"Mon Feb 19 20:54:33 2024","interfaces":[{"interface":"back","average":{"1min":0.90200000000000002,"5min":0.84699999999999998,"15min":0.83899999999999997},"min":{"1min":0.64000000000000001,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.1990000000000001,"5min":1.2230000000000001,"15min":1.2230000000000001},"last":0.85299999999999998},{"interface":"front","average":{"1min":0.84899999999999998,"5min":0.79000000000000004,"15min":0.77800000000000002},"min":{"1min":0.65500000000000003,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":1.151,"5min":1.151,"15min":1.151},"last":0.82099999999999995}]},{"osd":3,"last update":"Mon Feb 19 20:54:44 2024","interfaces":[{"interface":"back","average":{"1min":1.006,"5min":1.004,"15min":1.01},"min":{"1min":0.73499999999999999,"5min":0.63200000000000001,"15min":0.63200000000000001},"max":{"1min":1.4039999999999999,"5min":1.417,"15min":1.417},"last":0.96799999999999997},{"interface":"front","average":{"1min":0.98199999999999998,"5min":0.96399999999999997,"15min":0.95299999999999996},"min":{"1min":0.61199999999999999,"5min":0.61199999999999999,"15min":0.61199999999999999},"max":{"1min":1.2130000000000001,"5min":1.4650000000000001,"15min":1.4650000000000001},"last":1.032}]},{"osd":4,"last update":"Mon Feb 19 20:54:33 2024","interfaces":[{"interface":"back","average":{"1min":0.96999999999999997,"5min":0.92800000000000005,"15min":0.91900000000000004},"min":{"1min":0.73599999999999999,"5min":0.501,"15min":0.501},"max":{"1min":1.218,"5min":1.5640000000000001,"15min":1.5640000000000001},"last":0.93799999999999994},{"interface":"front","average":{"1min":0.93300000000000005,"5min":0.90000000000000002,"15min":0.88500000000000001},"min":{"1min":0.68100000000000005,"5min":0.49299999999999999,"15min":0.49299999999999999},"max":{"1min":1.177,"5min":1.629,"15min":1.629},"last":0.91600000000000004}]},{"osd":5,"last update":"Mon Feb 19 20:54:44 2024","interfaces":[{"interface":"back","average":{"1min":1.0449999999999999,"5min":0.995,"15min":0.97899999999999998},"min":{"1min":0.81399999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"max":{"1min":1.288,"5min":1.3029999999999999,"15min":1.3029999999999999},"last":1.002},{"interface":"front","average":{"1min":1.115,"5min":1.107,"15min":1.1020000000000001},"min":{"1min":0.80300000000000005,"5min":0.79600000000000004,"15min":0.79600000000000004},"max":{"1min":1.288,"5min":1.329,"15min":1.329},"last":1.0129999999999999}]},{"osd":7,"last update":"Mon Feb 19 20:54:50 2024","interfaces":[{"interface":"back","average":{"1min":1.1839999999999999,"5min":1.127,"15min":1.111},"min":{"1min":0.92200000000000004,"5min":0.874,"15min":0.874},"max":{"1min":1.587,"5min":1.587,"15min":1.587},"last":1.242},{"interface":"front","average":{"1min":1.157,"5min":1.103,"15min":1.0780000000000001},"min":{"1min":1.002,"5min":0.747,"15min":0.747},"max":{"1min":1.377,"5min":1.542,"15min":1.542},"last":1.113}]}]},{"osd":3,"up_from":34,"seq":146028888109,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297540,"kb_used_data":444,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443516,"statfs":{"total":95990841344,"available":95686160384,"internally_reserved":0,"allocated":454656,"data_stored":177436,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.89300000000000002,"5min":0.88600000000000001,"15min":0.90000000000000002},"min":{"1min":0.65800000000000003,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.1259999999999999,"5min":1.1539999999999999,"15min":1.1539999999999999},"last":0.73599999999999999},{"interface":"front","average":{"1min":0.85299999999999998,"5min":0.84499999999999997,"15min":0.84999999999999998},"min":{"1min":0.66600000000000004,"5min":0.58899999999999997,"15min":0.58899999999999997},"max":{"1min":1.0169999999999999,"5min":1.109,"15min":1.109},"last":0.71799999999999997}]},{"osd":1,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.81299999999999994,"5min":0.77500000000000002,"15min":0.77900000000000003},"min":{"1min":0.57599999999999996,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":1.03,"5min":1.0880000000000001,"15min":1.0880000000000001},"last":0.60299999999999998},{"interface":"front","average":{"1min":0.76800000000000002,"5min":0.76600000000000001,"15min":0.78800000000000003},"min":{"1min":0.59099999999999997,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":1.008,"5min":1.4319999999999999,"15min":1.4319999999999999},"last":0.64000000000000001}]},{"osd":2,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.93899999999999995,"5min":0.91600000000000004,"15min":0.91700000000000004},"min":{"1min":0.59899999999999998,"5min":0.59399999999999997,"15min":0.59399999999999997},"max":{"1min":1.129,"5min":1.266,"15min":1.266},"last":0.81599999999999995},{"interface":"front","average":{"1min":0.89600000000000002,"5min":0.89800000000000002,"15min":0.90700000000000003},"min":{"1min":0.70299999999999996,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.115,"5min":1.1559999999999999,"15min":1.1559999999999999},"last":0.61899999999999999}]},{"osd":4,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.94999999999999996,"5min":0.93899999999999995,"15min":0.94399999999999995},"min":{"1min":0.72799999999999998,"5min":0.59699999999999998,"15min":0.59699999999999998},"max":{"1min":1.198,"5min":1.2390000000000001,"15min":1.2390000000000001},"last":0.69099999999999995},{"interface":"front","average":{"1min":1.036,"5min":1.004,"15min":1.012},"min":{"1min":0.77800000000000002,"5min":0.64100000000000001,"15min":0.64100000000000001},"max":{"1min":1.2030000000000001,"5min":1.252,"15min":1.252},"last":0.88500000000000001}]},{"osd":5,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.875,"5min":0.84199999999999997,"15min":0.84399999999999997},"min":{"1min":0.61899999999999999,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":1.1220000000000001,"5min":1.306,"15min":1.306},"last":0.54900000000000004},{"interface":"front","average":{"1min":0.98199999999999998,"5min":0.93799999999999994,"15min":0.94099999999999995},"min":{"1min":0.55000000000000004,"5min":0.48599999999999999,"15min":0.48599999999999999},"max":{"1min":1.284,"5min":1.6679999999999999,"15min":1.6679999999999999},"last":0.78900000000000003}]},{"osd":6,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.97899999999999998,"5min":0.97099999999999997,"15min":0.97499999999999998},"min":{"1min":0.77000000000000002,"5min":0.63500000000000001,"15min":0.63500000000000001},"max":{"1min":1.2769999999999999,"5min":1.3799999999999999,"15min":1.3799999999999999},"last":0.77600000000000002},{"interface":"front","average":{"1min":1.075,"5min":1.0680000000000001,"15min":1.0760000000000001},"min":{"1min":0.85599999999999998,"5min":0.64000000000000001,"15min":0.64000000000000001},"max":{"1min":1.2729999999999999,"5min":1.6579999999999999,"15min":1.6579999999999999},"last":0.86699999999999999}]},{"osd":7,"last update":"Mon Feb 19 20:54:49 2024","interfaces":[{"interface":"back","average":{"1min":0.99099999999999999,"5min":0.96899999999999997,"15min":0.96899999999999997},"min":{"1min":0.52300000000000002,"5min":0.52300000000000002,"15min":0.52300000000000002},"max":{"1min":1.341,"5min":1.639,"15min":1.639},"last":0.82299999999999995},{"interface":"front","average":{"1min":1.121,"5min":1.0620000000000001,"15min":1.056},"min":{"1min":0.79500000000000004,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.329,"5min":1.5409999999999999,"15min":1.5409999999999999},"last":0.76100000000000001}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":6,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"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}]}} 2024-02-19T20:55:05.254 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph pg dump --format=json 2024-02-19T20:55:05.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:05 smithi160 bash[18819]: audit 2024-02-19T20:55:04.579943+0000 mgr.smithi155.pwytll (mgr.14180) 233 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T20:55:05.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:05 smithi155 bash[14250]: audit 2024-02-19T20:55:04.579943+0000 mgr.smithi155.pwytll (mgr.14180) 233 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T20:55:06.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:06 smithi160 bash[18819]: cluster 2024-02-19T20:55:05.438956+0000 mgr.smithi155.pwytll (mgr.14180) 234 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:06.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:06 smithi155 bash[14250]: cluster 2024-02-19T20:55:05.438956+0000 mgr.smithi155.pwytll (mgr.14180) 234 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:08.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:08 smithi160 bash[18819]: cluster 2024-02-19T20:55:07.439521+0000 mgr.smithi155.pwytll (mgr.14180) 235 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:08.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:08 smithi155 bash[14250]: cluster 2024-02-19T20:55:07.439521+0000 mgr.smithi155.pwytll (mgr.14180) 235 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:10.037 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:55:10.891 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:10 smithi155 bash[14250]: cluster 2024-02-19T20:55:09.440091+0000 mgr.smithi155.pwytll (mgr.14180) 236 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:10.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:10 smithi160 bash[18819]: cluster 2024-02-19T20:55:09.440091+0000 mgr.smithi155.pwytll (mgr.14180) 236 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:12.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:12 smithi155 bash[14250]: cluster 2024-02-19T20:55:11.440697+0000 mgr.smithi155.pwytll (mgr.14180) 237 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:12.847 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:55:12.850 INFO:teuthology.orchestra.run.smithi155.stderr:dumped all 2024-02-19T20:55:12.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:12 smithi160 bash[18819]: cluster 2024-02-19T20:55:11.440697+0000 mgr.smithi155.pwytll (mgr.14180) 237 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:13.559 INFO:teuthology.orchestra.run.smithi155.stdout:{"pg_ready":true,"pg_map":{"version":223,"stamp":"2024-02-19T20:55:11.440405+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"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":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":2380308,"kb_used_data":3540,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548140,"statfs":{"total":767926730752,"available":765489295360,"internally_reserved":0,"allocated":3624960,"data_stored":1417516,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":2433744896},"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":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"0'0","reported_seq":10,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-02-19T20:51:48.336465+0000","last_change":"2024-02-19T20:51:48.336465+0000","last_active":"2024-02-19T20:51:48.336465+0000","last_peered":"2024-02-19T20:51:48.336465+0000","last_clean":"2024-02-19T20:51:48.336465+0000","last_became_active":"2024-02-19T20:51:48.336095+0000","last_became_peered":"2024-02-19T20:51:48.336095+0000","last_unstale":"2024-02-19T20:51:48.336465+0000","last_undegraded":"2024-02-19T20:51:48.336465+0000","last_fullsized":"2024-02-19T20:51:48.336465+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":25,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-19T20:51:22.615835+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-19T20:51:22.615835+0000","last_clean_scrub_stamp":"2024-02-19T20:51:22.615835+0000","log_size":0,"ondisk_log_size":0,"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,"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},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":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":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":7,"up_from":43,"seq":184683593771,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297540,"kb_used_data":444,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443516,"statfs":{"total":95990841344,"available":95686160384,"internally_reserved":0,"allocated":454656,"data_stored":177436,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":0.78400000000000003,"5min":0.80700000000000005,"15min":0.80300000000000005},"min":{"1min":0.58099999999999996,"5min":0.51500000000000001,"15min":0.51500000000000001},"max":{"1min":1.181,"5min":1.181,"15min":1.181},"last":0.93100000000000005},{"interface":"front","average":{"1min":0.94099999999999995,"5min":0.91200000000000003,"15min":0.90400000000000003},"min":{"1min":0.61399999999999999,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":1.208,"5min":1.264,"15min":1.264},"last":0.78600000000000003}]},{"osd":1,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":0.82699999999999996,"5min":0.753,"15min":0.747},"min":{"1min":0.51100000000000001,"5min":0.46800000000000003,"15min":0.46800000000000003},"max":{"1min":1.141,"5min":1.141,"15min":1.141},"last":0.60399999999999998},{"interface":"front","average":{"1min":0.80400000000000005,"5min":0.745,"15min":0.72299999999999998},"min":{"1min":0.52800000000000002,"5min":0.46600000000000003,"15min":0.46600000000000003},"max":{"1min":1.3140000000000001,"5min":1.3140000000000001,"15min":1.3140000000000001},"last":0.57399999999999995}]},{"osd":2,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":0.92500000000000004,"5min":0.83999999999999997,"15min":0.82099999999999995},"min":{"1min":0.59999999999999998,"5min":0.52900000000000003,"15min":0.52900000000000003},"max":{"1min":1.381,"5min":1.381,"15min":1.381},"last":1.0289999999999999},{"interface":"front","average":{"1min":0.92100000000000004,"5min":0.88200000000000001,"15min":0.87},"min":{"1min":0.66900000000000004,"5min":0.65200000000000002,"15min":0.65200000000000002},"max":{"1min":1.647,"5min":1.647,"15min":1.647},"last":0.75800000000000001}]},{"osd":3,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":0.879,"5min":0.84599999999999997,"15min":0.82799999999999996},"min":{"1min":0.57399999999999995,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":1.4119999999999999,"5min":1.4119999999999999,"15min":1.4119999999999999},"last":0.73599999999999999},{"interface":"front","average":{"1min":0.91600000000000004,"5min":0.85599999999999998,"15min":0.84399999999999997},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":1.5820000000000001,"5min":1.5820000000000001,"15min":1.5820000000000001},"last":0.68700000000000006}]},{"osd":4,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":1.0449999999999999,"5min":0.97399999999999998,"15min":0.95699999999999996},"min":{"1min":0.76100000000000001,"5min":0.71299999999999997,"15min":0.71299999999999997},"max":{"1min":1.6890000000000001,"5min":1.6890000000000001,"15min":1.6890000000000001},"last":0.98999999999999999},{"interface":"front","average":{"1min":1.0600000000000001,"5min":0.995,"15min":0.98399999999999999},"min":{"1min":0.70499999999999996,"5min":0.66100000000000003,"15min":0.66100000000000003},"max":{"1min":1.615,"5min":1.615,"15min":1.615},"last":0.86699999999999999}]},{"osd":5,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":1.056,"5min":0.94899999999999995,"15min":0.92700000000000005},"min":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"max":{"1min":1.5629999999999999,"5min":1.5629999999999999,"15min":1.5629999999999999},"last":0.71999999999999997},{"interface":"front","average":{"1min":1.1100000000000001,"5min":1.0149999999999999,"15min":0.98899999999999999},"min":{"1min":0.67100000000000004,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.617,"5min":1.617,"15min":1.617},"last":0.91400000000000003}]},{"osd":6,"last update":"Mon Feb 19 20:54:56 2024","interfaces":[{"interface":"back","average":{"1min":1.179,"5min":1.089,"15min":1.069},"min":{"1min":0.73299999999999998,"5min":0.73299999999999998,"15min":0.73299999999999998},"max":{"1min":1.671,"5min":1.774,"15min":1.774},"last":1.004},{"interface":"front","average":{"1min":1.1830000000000001,"5min":1.081,"15min":1.0529999999999999},"min":{"1min":0.83699999999999997,"5min":0.64000000000000001,"15min":0.64000000000000001},"max":{"1min":1.7529999999999999,"5min":1.7529999999999999,"15min":1.7529999999999999},"last":1.107}]}]},{"osd":5,"up_from":39,"seq":167503724589,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297540,"kb_used_data":444,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443516,"statfs":{"total":95990841344,"available":95686160384,"internally_reserved":0,"allocated":454656,"data_stored":177436,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.85599999999999998,"5min":0.86099999999999999,"15min":0.873},"min":{"1min":0.60899999999999999,"5min":0.59099999999999997,"15min":0.59099999999999997},"max":{"1min":1.0700000000000001,"5min":2.0779999999999998,"15min":2.0779999999999998},"last":0.76500000000000001},{"interface":"front","average":{"1min":0.83599999999999997,"5min":0.87,"15min":0.878},"min":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":1.1699999999999999,"5min":2.1070000000000002,"15min":2.1070000000000002},"last":0.68600000000000005}]},{"osd":1,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.77100000000000002,"5min":0.88,"15min":0.93600000000000005},"min":{"1min":0.40400000000000003,"5min":0.40400000000000003,"15min":0.40400000000000003},"max":{"1min":1.2310000000000001,"5min":5.0570000000000004,"15min":5.0570000000000004},"last":0.65500000000000003},{"interface":"front","average":{"1min":0.71799999999999997,"5min":0.73999999999999999,"15min":0.75600000000000001},"min":{"1min":0.46700000000000003,"5min":0.39900000000000002,"15min":0.39900000000000002},"max":{"1min":1.014,"5min":1.6839999999999999,"15min":1.6839999999999999},"last":0.57199999999999995}]},{"osd":2,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.93500000000000005,"5min":1.018,"15min":1.0649999999999999},"min":{"1min":0.67200000000000004,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.155,"5min":5.4779999999999998,"15min":5.4779999999999998},"last":1.0089999999999999},{"interface":"front","average":{"1min":0.92500000000000004,"5min":0.94699999999999995,"15min":0.96799999999999997},"min":{"1min":0.63600000000000001,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.141,"5min":1.8540000000000001,"15min":1.8540000000000001},"last":0.94199999999999995}]},{"osd":3,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.78600000000000003,"5min":0.78100000000000003,"15min":0.78900000000000003},"min":{"1min":0.53100000000000003,"5min":0.39900000000000002,"15min":0.39900000000000002},"max":{"1min":1.0860000000000001,"5min":1.911,"15min":1.911},"last":0.60499999999999998},{"interface":"front","average":{"1min":0.89800000000000002,"5min":0.97499999999999998,"15min":1.004},"min":{"1min":0.61499999999999999,"5min":0.49399999999999999,"15min":0.49399999999999999},"max":{"1min":1.143,"5min":4.9050000000000002,"15min":4.9050000000000002},"last":0.874}]},{"osd":4,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.89900000000000002,"5min":0.96099999999999997,"15min":0.98099999999999998},"min":{"1min":0.60699999999999998,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.2989999999999999,"5min":2.2719999999999998,"15min":2.2719999999999998},"last":0.749},{"interface":"front","average":{"1min":1.03,"5min":1.169,"15min":1.226},"min":{"1min":0.68400000000000005,"5min":0.68400000000000005,"15min":0.68400000000000005},"max":{"1min":1.2210000000000001,"5min":5.5380000000000003,"15min":5.5380000000000003},"last":1.083}]},{"osd":6,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":1.0069999999999999,"5min":1.034,"15min":1.052},"min":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"max":{"1min":1.232,"5min":2.2349999999999999,"15min":2.2349999999999999},"last":1.0660000000000001},{"interface":"front","average":{"1min":1.105,"5min":1.2050000000000001,"15min":1.258},"min":{"1min":0.81999999999999995,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.3380000000000001,"5min":5.3070000000000004,"15min":5.3070000000000004},"last":1.141}]},{"osd":7,"last update":"Mon Feb 19 20:54:49 2024","interfaces":[{"interface":"back","average":{"1min":0.998,"5min":0.96999999999999997,"15min":0.96199999999999997},"min":{"1min":0.64000000000000001,"5min":0.51700000000000002,"15min":0.51700000000000002},"max":{"1min":1.3919999999999999,"5min":1.3919999999999999,"15min":1.3919999999999999},"last":0.80000000000000004},{"interface":"front","average":{"1min":1.1140000000000001,"5min":1.0780000000000001,"15min":1.069},"min":{"1min":0.76000000000000001,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":1.3859999999999999,"5min":1.4039999999999999,"15min":1.4039999999999999},"last":1.1850000000000001}]}]},{"osd":2,"up_from":20,"seq":85899345970,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297536,"kb_used_data":440,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443520,"statfs":{"total":95990841344,"available":95686164480,"internally_reserved":0,"allocated":450560,"data_stored":177121,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:19 2024","interfaces":[{"interface":"back","average":{"1min":0.70799999999999996,"5min":0.65400000000000003,"15min":0.63},"min":{"1min":0.52900000000000003,"5min":0.372,"15min":0.372},"max":{"1min":1.2,"5min":1.2,"15min":1.2},"last":0.71099999999999997},{"interface":"front","average":{"1min":0.71599999999999997,"5min":0.71899999999999997,"15min":0.71599999999999997},"min":{"1min":0.47999999999999998,"5min":0.432,"15min":0.432},"max":{"1min":1.026,"5min":1.171,"15min":1.171},"last":0.752}]},{"osd":1,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":0.92700000000000005,"5min":0.91300000000000003,"15min":0.89800000000000002},"min":{"1min":0.69799999999999995,"5min":0.51800000000000002,"15min":0.51800000000000002},"max":{"1min":1.0580000000000001,"5min":1.2250000000000001,"15min":1.2250000000000001},"last":1.0740000000000001},{"interface":"front","average":{"1min":0.96899999999999997,"5min":0.94599999999999995,"15min":0.92200000000000004},"min":{"1min":0.73699999999999999,"5min":0.621,"15min":0.621},"max":{"1min":1.149,"5min":1.282,"15min":1.282},"last":1.2150000000000001}]},{"osd":3,"last update":"Mon Feb 19 20:54:41 2024","interfaces":[{"interface":"back","average":{"1min":0.80700000000000005,"5min":0.82099999999999995,"15min":0.81100000000000005},"min":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":0.98899999999999999,"5min":1.115,"15min":1.115},"last":0.92900000000000005},{"interface":"front","average":{"1min":0.90400000000000003,"5min":0.88600000000000001,"15min":0.88200000000000001},"min":{"1min":0.73699999999999999,"5min":0.58799999999999997,"15min":0.58799999999999997},"max":{"1min":1.0780000000000001,"5min":1.1439999999999999,"15min":1.1439999999999999},"last":0.99299999999999999}]},{"osd":4,"last update":"Mon Feb 19 20:54:25 2024","interfaces":[{"interface":"back","average":{"1min":0.85499999999999998,"5min":0.84199999999999997,"15min":0.83099999999999996},"min":{"1min":0.68400000000000005,"5min":0.46400000000000002,"15min":0.46400000000000002},"max":{"1min":1.143,"5min":1.143,"15min":1.143},"last":0.90100000000000002},{"interface":"front","average":{"1min":0.92200000000000004,"5min":0.86699999999999999,"15min":0.85499999999999998},"min":{"1min":0.72599999999999998,"5min":0.51300000000000001,"15min":0.51300000000000001},"max":{"1min":1.2010000000000001,"5min":1.242,"15min":1.242},"last":1.022}]},{"osd":5,"last update":"Mon Feb 19 20:54:55 2024","interfaces":[{"interface":"back","average":{"1min":1.0649999999999999,"5min":1.0469999999999999,"15min":1.0409999999999999},"min":{"1min":0.81899999999999995,"5min":0.81899999999999995,"15min":0.81899999999999995},"max":{"1min":1.206,"5min":1.2909999999999999,"15min":1.2909999999999999},"last":1.1459999999999999},{"interface":"front","average":{"1min":0.97199999999999998,"5min":0.97499999999999998,"15min":0.96799999999999997},"min":{"1min":0.77900000000000003,"5min":0.70599999999999996,"15min":0.70599999999999996},"max":{"1min":1.119,"5min":1.169,"15min":1.169},"last":0.80400000000000005}]},{"osd":6,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":1.0149999999999999,"5min":0.95299999999999996,"15min":0.92200000000000004},"min":{"1min":0.82899999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.2050000000000001,"5min":1.3620000000000001,"15min":1.3620000000000001},"last":1.0940000000000001},{"interface":"front","average":{"1min":0.92000000000000004,"5min":0.90000000000000002,"15min":0.88},"min":{"1min":0.74199999999999999,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":1.0640000000000001,"5min":1.2130000000000001,"15min":1.2130000000000001},"last":1.0509999999999999}]},{"osd":7,"last update":"Mon Feb 19 20:54:55 2024","interfaces":[{"interface":"back","average":{"1min":1.028,"5min":1.0309999999999999,"15min":1.024},"min":{"1min":0.81899999999999995,"5min":0.76600000000000001,"15min":0.76600000000000001},"max":{"1min":1.1990000000000001,"5min":1.222,"15min":1.222},"last":1.2050000000000001},{"interface":"front","average":{"1min":1.135,"5min":1.1140000000000001,"15min":1.1000000000000001},"min":{"1min":0.85899999999999999,"5min":0.77100000000000002,"15min":0.77100000000000002},"max":{"1min":1.4870000000000001,"5min":1.4870000000000001,"15min":1.4870000000000001},"last":1.262}]}]},{"osd":0,"up_from":16,"seq":68719476787,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297540,"kb_used_data":444,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443516,"statfs":{"total":95990841344,"available":95686160384,"internally_reserved":0,"allocated":454656,"data_stored":177436,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":1,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":0.97799999999999998,"5min":0.95199999999999996,"15min":0.93500000000000005},"min":{"1min":0.69099999999999995,"5min":0.52900000000000003,"15min":0.52900000000000003},"max":{"1min":1.2230000000000001,"5min":1.357,"15min":1.357},"last":1.0129999999999999},{"interface":"front","average":{"1min":1.024,"5min":0.96999999999999997,"15min":0.96199999999999997},"min":{"1min":0.70799999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.302,"5min":1.4910000000000001,"15min":1.4910000000000001},"last":0.96999999999999997}]},{"osd":2,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":0.81599999999999995,"5min":0.78900000000000003,"15min":0.78700000000000003},"min":{"1min":0.58399999999999996,"5min":0.42999999999999999,"15min":0.42999999999999999},"max":{"1min":1.121,"5min":1.3320000000000001,"15min":1.3320000000000001},"last":0.628},{"interface":"front","average":{"1min":0.85199999999999998,"5min":0.85599999999999998,"15min":0.876},"min":{"1min":0.57899999999999996,"5min":0.50800000000000001,"15min":0.50800000000000001},"max":{"1min":1.1439999999999999,"5min":1.6379999999999999,"15min":1.6379999999999999},"last":0.77400000000000002}]},{"osd":3,"last update":"Mon Feb 19 20:54:40 2024","interfaces":[{"interface":"back","average":{"1min":0.90100000000000002,"5min":0.93300000000000005,"15min":0.92700000000000005},"min":{"1min":0.63300000000000001,"5min":0.53700000000000003,"15min":0.53700000000000003},"max":{"1min":1.1719999999999999,"5min":1.258,"15min":1.258},"last":0.73399999999999999},{"interface":"front","average":{"1min":0.92500000000000004,"5min":0.95099999999999996,"15min":0.94699999999999995},"min":{"1min":0.71399999999999997,"5min":0.63800000000000001,"15min":0.63800000000000001},"max":{"1min":1.3460000000000001,"5min":1.3460000000000001,"15min":1.3460000000000001},"last":0.88900000000000001}]},{"osd":4,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":0.82999999999999996,"5min":0.84099999999999997,"15min":0.84099999999999997},"min":{"1min":0.62,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":1.1319999999999999,"5min":1.1839999999999999,"15min":1.1839999999999999},"last":0.65000000000000002},{"interface":"front","average":{"1min":0.93999999999999995,"5min":0.94699999999999995,"15min":0.94999999999999996},"min":{"1min":0.70199999999999996,"5min":0.44400000000000001,"15min":0.44400000000000001},"max":{"1min":1.2929999999999999,"5min":1.4199999999999999,"15min":1.4199999999999999},"last":0.86699999999999999}]},{"osd":5,"last update":"Mon Feb 19 20:54:46 2024","interfaces":[{"interface":"back","average":{"1min":0.96499999999999997,"5min":0.93899999999999995,"15min":0.92100000000000004},"min":{"1min":0.73899999999999999,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.147,"5min":1.147,"15min":1.147},"last":0.81999999999999995},{"interface":"front","average":{"1min":1.0640000000000001,"5min":1.0660000000000001,"15min":1.0489999999999999},"min":{"1min":0.80700000000000005,"5min":0.74399999999999999,"15min":0.74399999999999999},"max":{"1min":1.2430000000000001,"5min":1.4930000000000001,"15min":1.4930000000000001},"last":0.94699999999999995}]},{"osd":6,"last update":"Mon Feb 19 20:54:30 2024","interfaces":[{"interface":"back","average":{"1min":1.0109999999999999,"5min":0.999,"15min":0.99099999999999999},"min":{"1min":0.68600000000000005,"5min":0.57899999999999996,"15min":0.57899999999999996},"max":{"1min":1.2529999999999999,"5min":1.323,"15min":1.323},"last":1.0369999999999999},{"interface":"front","average":{"1min":0.96199999999999997,"5min":0.98599999999999999,"15min":0.98199999999999998},"min":{"1min":0.745,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":1.2210000000000001,"5min":1.3009999999999999,"15min":1.3009999999999999},"last":0.92700000000000005}]},{"osd":7,"last update":"Mon Feb 19 20:54:51 2024","interfaces":[{"interface":"back","average":{"1min":1.0569999999999999,"5min":1.085,"15min":1.0820000000000001},"min":{"1min":0.872,"5min":0.71599999999999997,"15min":0.71599999999999997},"max":{"1min":1.2669999999999999,"5min":1.377,"15min":1.377},"last":0.99399999999999999},{"interface":"front","average":{"1min":1.105,"5min":1.149,"15min":1.133},"min":{"1min":0.86799999999999999,"5min":0.69099999999999995,"15min":0.69099999999999995},"max":{"1min":1.5680000000000001,"5min":1.669,"15min":1.669},"last":1.0600000000000001}]}]},{"osd":4,"up_from":24,"seq":103079215153,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297536,"kb_used_data":440,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443520,"statfs":{"total":95990841344,"available":95686164480,"internally_reserved":0,"allocated":450560,"data_stored":176094,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:29 2024","interfaces":[{"interface":"back","average":{"1min":0.66600000000000004,"5min":0.68000000000000005,"15min":0.68600000000000005},"min":{"1min":0.51900000000000002,"5min":0.46100000000000002,"15min":0.46100000000000002},"max":{"1min":0.83499999999999996,"5min":1.0980000000000001,"15min":1.0980000000000001},"last":0.66300000000000003},{"interface":"front","average":{"1min":0.80400000000000005,"5min":0.76400000000000001,"15min":0.76600000000000001},"min":{"1min":0.57599999999999996,"5min":0.439,"15min":0.439},"max":{"1min":1.107,"5min":1.117,"15min":1.117},"last":0.80600000000000005}]},{"osd":1,"last update":"Mon Feb 19 20:54:29 2024","interfaces":[{"interface":"back","average":{"1min":0.997,"5min":0.93500000000000005,"15min":0.91100000000000003},"min":{"1min":0.80300000000000005,"5min":0.628,"15min":0.628},"max":{"1min":1.234,"5min":1.234,"15min":1.234},"last":0.94299999999999995},{"interface":"front","average":{"1min":1.0329999999999999,"5min":0.99099999999999999,"15min":0.97899999999999998},"min":{"1min":0.71799999999999997,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.333,"5min":1.4930000000000001,"15min":1.4930000000000001},"last":0.85099999999999998}]},{"osd":2,"last update":"Mon Feb 19 20:54:29 2024","interfaces":[{"interface":"back","average":{"1min":0.92200000000000004,"5min":0.84199999999999997,"15min":0.82999999999999996},"min":{"1min":0.66400000000000003,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.3149999999999999,"5min":1.3149999999999999,"15min":1.3149999999999999},"last":1.069},{"interface":"front","average":{"1min":0.86399999999999999,"5min":0.84399999999999997,"15min":0.85099999999999998},"min":{"1min":0.67100000000000004,"5min":0.443,"15min":0.443},"max":{"1min":1.1299999999999999,"5min":1.5149999999999999,"15min":1.5149999999999999},"last":0.91400000000000003}]},{"osd":3,"last update":"Mon Feb 19 20:54:40 2024","interfaces":[{"interface":"back","average":{"1min":0.98799999999999999,"5min":0.96199999999999997,"15min":0.96099999999999997},"min":{"1min":0.73999999999999999,"5min":0.66300000000000003,"15min":0.66300000000000003},"max":{"1min":1.2689999999999999,"5min":1.4690000000000001,"15min":1.4690000000000001},"last":0.97899999999999998},{"interface":"front","average":{"1min":0.90000000000000002,"5min":0.93999999999999995,"15min":0.94899999999999995},"min":{"1min":0.754,"5min":0.61399999999999999,"15min":0.61399999999999999},"max":{"1min":1.052,"5min":1.343,"15min":1.343},"last":1.2150000000000001}]},{"osd":5,"last update":"Mon Feb 19 20:54:45 2024","interfaces":[{"interface":"back","average":{"1min":1.081,"5min":1.0720000000000001,"15min":1.0740000000000001},"min":{"1min":0.78500000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"max":{"1min":1.2629999999999999,"5min":1.52,"15min":1.52},"last":1.181},{"interface":"front","average":{"1min":1.0249999999999999,"5min":1.0609999999999999,"15min":1.0680000000000001},"min":{"1min":0.75600000000000001,"5min":0.70299999999999996,"15min":0.70299999999999996},"max":{"1min":1.2410000000000001,"5min":1.5369999999999999,"15min":1.5369999999999999},"last":1.371}]},{"osd":6,"last update":"Mon Feb 19 20:54:29 2024","interfaces":[{"interface":"back","average":{"1min":0.998,"5min":0.98999999999999999,"15min":0.98799999999999999},"min":{"1min":0.65000000000000002,"5min":0.52600000000000002,"15min":0.52600000000000002},"max":{"1min":1.208,"5min":1.3580000000000001,"15min":1.3580000000000001},"last":1.032},{"interface":"front","average":{"1min":1.085,"5min":1.0720000000000001,"15min":1.0740000000000001},"min":{"1min":0.76900000000000002,"5min":0.61199999999999999,"15min":0.61199999999999999},"max":{"1min":1.278,"5min":1.7549999999999999,"15min":1.7549999999999999},"last":1.2729999999999999}]},{"osd":7,"last update":"Mon Feb 19 20:54:54 2024","interfaces":[{"interface":"back","average":{"1min":1.1220000000000001,"5min":1.123,"15min":1.123},"min":{"1min":0.85699999999999998,"5min":0.70999999999999996,"15min":0.70999999999999996},"max":{"1min":1.294,"5min":1.4299999999999999,"15min":1.4299999999999999},"last":1.3069999999999999},{"interface":"front","average":{"1min":1.0960000000000001,"5min":1.1140000000000001,"15min":1.1100000000000001},"min":{"1min":0.93100000000000005,"5min":0.60199999999999998,"15min":0.60199999999999998},"max":{"1min":1.3049999999999999,"5min":1.4099999999999999,"15min":1.4099999999999999},"last":1.145}]}]},{"osd":1,"up_from":27,"seq":115964117040,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297536,"kb_used_data":440,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443520,"statfs":{"total":95990841344,"available":95686164480,"internally_reserved":0,"allocated":450560,"data_stored":177121,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:32 2024","interfaces":[{"interface":"back","average":{"1min":0.85399999999999998,"5min":0.85899999999999999,"15min":0.86799999999999999},"min":{"1min":0.65300000000000002,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":1.1020000000000001,"5min":1.1659999999999999,"15min":1.1659999999999999},"last":0.63200000000000001},{"interface":"front","average":{"1min":0.88,"5min":0.85499999999999998,"15min":0.84999999999999998},"min":{"1min":0.72099999999999997,"5min":0.624,"15min":0.624},"max":{"1min":1.099,"5min":1.1120000000000001,"15min":1.1120000000000001},"last":0.95499999999999996}]},{"osd":2,"last update":"Mon Feb 19 20:54:32 2024","interfaces":[{"interface":"back","average":{"1min":0.90100000000000002,"5min":0.89100000000000001,"15min":0.88300000000000001},"min":{"1min":0.61599999999999999,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.069,"5min":1.25,"15min":1.25},"last":1.133},{"interface":"front","average":{"1min":0.86699999999999999,"5min":0.871,"15min":0.872},"min":{"1min":0.60699999999999998,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.0920000000000001,"5min":1.327,"15min":1.327},"last":0.79400000000000004}]},{"osd":3,"last update":"Mon Feb 19 20:54:39 2024","interfaces":[{"interface":"back","average":{"1min":0.79700000000000004,"5min":0.75900000000000001,"15min":0.749},"min":{"1min":0.501,"5min":0.46899999999999997,"15min":0.46899999999999997},"max":{"1min":1.2949999999999999,"5min":1.3300000000000001,"15min":1.3300000000000001},"last":1.181},{"interface":"front","average":{"1min":0.77500000000000002,"5min":0.746,"15min":0.73499999999999999},"min":{"1min":0.29699999999999999,"5min":0.29699999999999999,"15min":0.29699999999999999},"max":{"1min":1.0920000000000001,"5min":1.3160000000000001,"15min":1.3160000000000001},"last":0.89900000000000002}]},{"osd":4,"last update":"Mon Feb 19 20:54:32 2024","interfaces":[{"interface":"back","average":{"1min":0.90400000000000003,"5min":0.88500000000000001,"15min":0.875},"min":{"1min":0.59399999999999997,"5min":0.59399999999999997,"15min":0.59399999999999997},"max":{"1min":1.141,"5min":1.181,"15min":1.181},"last":1.01},{"interface":"front","average":{"1min":1.024,"5min":0.94599999999999995,"15min":0.92000000000000004},"min":{"1min":0.69999999999999996,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.3660000000000001,"5min":1.3660000000000001,"15min":1.3660000000000001},"last":1.22}]},{"osd":5,"last update":"Mon Feb 19 20:54:45 2024","interfaces":[{"interface":"back","average":{"1min":0.97499999999999998,"5min":0.88900000000000001,"15min":0.85899999999999999},"min":{"1min":0.71299999999999997,"5min":0.47699999999999998,"15min":0.47699999999999998},"max":{"1min":1.2210000000000001,"5min":1.294,"15min":1.294},"last":1.552},{"interface":"front","average":{"1min":0.97199999999999998,"5min":0.88700000000000001,"15min":0.85299999999999998},"min":{"1min":0.54600000000000004,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":1.3260000000000001,"5min":1.3260000000000001,"15min":1.3260000000000001},"last":0.68999999999999995}]},{"osd":6,"last update":"Mon Feb 19 20:54:32 2024","interfaces":[{"interface":"back","average":{"1min":1.1100000000000001,"5min":1.0429999999999999,"15min":1.02},"min":{"1min":0.81200000000000006,"5min":0.71799999999999997,"15min":0.71799999999999997},"max":{"1min":1.409,"5min":1.409,"15min":1.409},"last":1.2589999999999999},{"interface":"front","average":{"1min":1.012,"5min":0.98999999999999999,"15min":0.97399999999999998},"min":{"1min":0.68500000000000005,"5min":0.68500000000000005,"15min":0.68500000000000005},"max":{"1min":1.397,"5min":1.397,"15min":1.397},"last":0.85599999999999998}]},{"osd":7,"last update":"Mon Feb 19 20:54:52 2024","interfaces":[{"interface":"back","average":{"1min":1.004,"5min":0.98899999999999999,"15min":0.995},"min":{"1min":0.439,"5min":0.439,"15min":0.439},"max":{"1min":1.2609999999999999,"5min":1.403,"15min":1.403},"last":1.982},{"interface":"front","average":{"1min":1.149,"5min":1.1020000000000001,"15min":1.089},"min":{"1min":0.61599999999999999,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.458,"5min":1.458,"15min":1.458},"last":1.7270000000000001}]}]},{"osd":6,"up_from":28,"seq":120259084336,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297540,"kb_used_data":444,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443516,"statfs":{"total":95990841344,"available":95686160384,"internally_reserved":0,"allocated":454656,"data_stored":177436,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:33 2024","interfaces":[{"interface":"back","average":{"1min":0.77600000000000002,"5min":0.78800000000000003,"15min":0.77900000000000003},"min":{"1min":0.54300000000000004,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.087,"5min":1.2210000000000001,"15min":1.2210000000000001},"last":0.64300000000000002},{"interface":"front","average":{"1min":0.89300000000000002,"5min":0.86299999999999999,"15min":0.84999999999999998},"min":{"1min":0.623,"5min":0.47099999999999997,"15min":0.47099999999999997},"max":{"1min":1.1990000000000001,"5min":1.3260000000000001,"15min":1.3260000000000001},"last":1.0029999999999999}]},{"osd":1,"last update":"Mon Feb 19 20:54:33 2024","interfaces":[{"interface":"back","average":{"1min":0.89500000000000002,"5min":0.89600000000000002,"15min":0.88700000000000001},"min":{"1min":0.71199999999999997,"5min":0.54900000000000004,"15min":0.54900000000000004},"max":{"1min":1.147,"5min":1.232,"15min":1.232},"last":0.92500000000000004},{"interface":"front","average":{"1min":1.0049999999999999,"5min":0.97499999999999998,"15min":0.96099999999999997},"min":{"1min":0.85899999999999999,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.306,"5min":1.306,"15min":1.306},"last":0.90700000000000003}]},{"osd":2,"last update":"Mon Feb 19 20:54:33 2024","interfaces":[{"interface":"back","average":{"1min":0.90200000000000002,"5min":0.84699999999999998,"15min":0.83899999999999997},"min":{"1min":0.64000000000000001,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.1990000000000001,"5min":1.2230000000000001,"15min":1.2230000000000001},"last":0.83599999999999997},{"interface":"front","average":{"1min":0.84899999999999998,"5min":0.79000000000000004,"15min":0.77800000000000002},"min":{"1min":0.65500000000000003,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":1.151,"5min":1.151,"15min":1.151},"last":1.1499999999999999}]},{"osd":3,"last update":"Mon Feb 19 20:54:44 2024","interfaces":[{"interface":"back","average":{"1min":1.006,"5min":1.004,"15min":1.01},"min":{"1min":0.73499999999999999,"5min":0.63200000000000001,"15min":0.63200000000000001},"max":{"1min":1.4039999999999999,"5min":1.417,"15min":1.417},"last":0.97399999999999998},{"interface":"front","average":{"1min":0.98199999999999998,"5min":0.96399999999999997,"15min":0.95299999999999996},"min":{"1min":0.61199999999999999,"5min":0.61199999999999999,"15min":0.61199999999999999},"max":{"1min":1.2130000000000001,"5min":1.4650000000000001,"15min":1.4650000000000001},"last":0.88100000000000001}]},{"osd":4,"last update":"Mon Feb 19 20:54:33 2024","interfaces":[{"interface":"back","average":{"1min":0.96999999999999997,"5min":0.92800000000000005,"15min":0.91900000000000004},"min":{"1min":0.73599999999999999,"5min":0.501,"15min":0.501},"max":{"1min":1.218,"5min":1.5640000000000001,"15min":1.5640000000000001},"last":1.0820000000000001},{"interface":"front","average":{"1min":0.93300000000000005,"5min":0.90000000000000002,"15min":0.88500000000000001},"min":{"1min":0.68100000000000005,"5min":0.49299999999999999,"15min":0.49299999999999999},"max":{"1min":1.177,"5min":1.629,"15min":1.629},"last":1.054}]},{"osd":5,"last update":"Mon Feb 19 20:54:44 2024","interfaces":[{"interface":"back","average":{"1min":1.0449999999999999,"5min":0.995,"15min":0.97899999999999998},"min":{"1min":0.81399999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"max":{"1min":1.288,"5min":1.3029999999999999,"15min":1.3029999999999999},"last":1.131},{"interface":"front","average":{"1min":1.115,"5min":1.107,"15min":1.1020000000000001},"min":{"1min":0.80300000000000005,"5min":0.79600000000000004,"15min":0.79600000000000004},"max":{"1min":1.288,"5min":1.329,"15min":1.329},"last":1.03}]},{"osd":7,"last update":"Mon Feb 19 20:54:50 2024","interfaces":[{"interface":"back","average":{"1min":1.1839999999999999,"5min":1.127,"15min":1.111},"min":{"1min":0.92200000000000004,"5min":0.874,"15min":0.874},"max":{"1min":1.587,"5min":1.587,"15min":1.587},"last":1.113},{"interface":"front","average":{"1min":1.157,"5min":1.103,"15min":1.0780000000000001},"min":{"1min":1.002,"5min":0.747,"15min":0.747},"max":{"1min":1.377,"5min":1.542,"15min":1.542},"last":1.5069999999999999}]}]},{"osd":3,"up_from":34,"seq":146028888111,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297540,"kb_used_data":444,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443516,"statfs":{"total":95990841344,"available":95686160384,"internally_reserved":0,"allocated":454656,"data_stored":177436,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"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":[],"network_ping_times":[{"osd":0,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.89300000000000002,"5min":0.88600000000000001,"15min":0.90000000000000002},"min":{"1min":0.65800000000000003,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.1259999999999999,"5min":1.1539999999999999,"15min":1.1539999999999999},"last":1.0389999999999999},{"interface":"front","average":{"1min":0.85299999999999998,"5min":0.84499999999999997,"15min":0.84999999999999998},"min":{"1min":0.66600000000000004,"5min":0.58899999999999997,"15min":0.58899999999999997},"max":{"1min":1.0169999999999999,"5min":1.109,"15min":1.109},"last":0.86199999999999999}]},{"osd":1,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.81299999999999994,"5min":0.77500000000000002,"15min":0.77900000000000003},"min":{"1min":0.57599999999999996,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":1.03,"5min":1.0880000000000001,"15min":1.0880000000000001},"last":0.57499999999999996},{"interface":"front","average":{"1min":0.76800000000000002,"5min":0.76600000000000001,"15min":0.78800000000000003},"min":{"1min":0.59099999999999997,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":1.008,"5min":1.4319999999999999,"15min":1.4319999999999999},"last":0.78000000000000003}]},{"osd":2,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.93899999999999995,"5min":0.91600000000000004,"15min":0.91700000000000004},"min":{"1min":0.59899999999999998,"5min":0.59399999999999997,"15min":0.59399999999999997},"max":{"1min":1.129,"5min":1.266,"15min":1.266},"last":0.94099999999999995},{"interface":"front","average":{"1min":0.89600000000000002,"5min":0.89800000000000002,"15min":0.90700000000000003},"min":{"1min":0.70299999999999996,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.115,"5min":1.1559999999999999,"15min":1.1559999999999999},"last":0.73299999999999998}]},{"osd":4,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.94999999999999996,"5min":0.93899999999999995,"15min":0.94399999999999995},"min":{"1min":0.72799999999999998,"5min":0.59699999999999998,"15min":0.59699999999999998},"max":{"1min":1.198,"5min":1.2390000000000001,"15min":1.2390000000000001},"last":0.70999999999999996},{"interface":"front","average":{"1min":1.036,"5min":1.004,"15min":1.012},"min":{"1min":0.77800000000000002,"5min":0.64100000000000001,"15min":0.64100000000000001},"max":{"1min":1.2030000000000001,"5min":1.252,"15min":1.252},"last":0.99299999999999999}]},{"osd":5,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.875,"5min":0.84199999999999997,"15min":0.84399999999999997},"min":{"1min":0.61899999999999999,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":1.1220000000000001,"5min":1.306,"15min":1.306},"last":0.90700000000000003},{"interface":"front","average":{"1min":0.98199999999999998,"5min":0.93799999999999994,"15min":0.94099999999999995},"min":{"1min":0.55000000000000004,"5min":0.48599999999999999,"15min":0.48599999999999999},"max":{"1min":1.284,"5min":1.6679999999999999,"15min":1.6679999999999999},"last":0.89200000000000002}]},{"osd":6,"last update":"Mon Feb 19 20:54:42 2024","interfaces":[{"interface":"back","average":{"1min":0.97899999999999998,"5min":0.97099999999999997,"15min":0.97499999999999998},"min":{"1min":0.77000000000000002,"5min":0.63500000000000001,"15min":0.63500000000000001},"max":{"1min":1.2769999999999999,"5min":1.3799999999999999,"15min":1.3799999999999999},"last":0.92000000000000004},{"interface":"front","average":{"1min":1.075,"5min":1.0680000000000001,"15min":1.0760000000000001},"min":{"1min":0.85599999999999998,"5min":0.64000000000000001,"15min":0.64000000000000001},"max":{"1min":1.2729999999999999,"5min":1.6579999999999999,"15min":1.6579999999999999},"last":0.877}]},{"osd":7,"last update":"Mon Feb 19 20:54:49 2024","interfaces":[{"interface":"back","average":{"1min":0.99099999999999999,"5min":0.96899999999999997,"15min":0.96899999999999997},"min":{"1min":0.52300000000000002,"5min":0.52300000000000002,"15min":0.52300000000000002},"max":{"1min":1.341,"5min":1.639,"15min":1.639},"last":0.80900000000000005},{"interface":"front","average":{"1min":1.121,"5min":1.0620000000000001,"15min":1.056},"min":{"1min":0.79500000000000004,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.329,"5min":1.5409999999999999,"15min":1.5409999999999999},"last":0.82499999999999996}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":6,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"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}]}} 2024-02-19T20:55:13.560 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-02-19T20:55:13.561 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-02-19T20:55:13.561 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-02-19T20:55:13.561 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph health --format=json 2024-02-19T20:55:14.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:14 smithi160 bash[18819]: audit 2024-02-19T20:55:12.859603+0000 mgr.smithi155.pwytll (mgr.14180) 238 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T20:55:14.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:14 smithi160 bash[18819]: cluster 2024-02-19T20:55:13.441406+0000 mgr.smithi155.pwytll (mgr.14180) 239 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:14.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:14 smithi155 bash[14250]: audit 2024-02-19T20:55:12.859603+0000 mgr.smithi155.pwytll (mgr.14180) 238 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T20:55:14.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:14 smithi155 bash[14250]: cluster 2024-02-19T20:55:13.441406+0000 mgr.smithi155.pwytll (mgr.14180) 239 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:16.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:16 smithi160 bash[18819]: cluster 2024-02-19T20:55:15.442099+0000 mgr.smithi155.pwytll (mgr.14180) 240 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:16.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:16 smithi155 bash[14250]: cluster 2024-02-19T20:55:15.442099+0000 mgr.smithi155.pwytll (mgr.14180) 240 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:18.344 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring config /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/mon.smithi155/config 2024-02-19T20:55:18.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:18 smithi155 bash[14250]: cluster 2024-02-19T20:55:17.442698+0000 mgr.smithi155.pwytll (mgr.14180) 241 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:18.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:18 smithi160 bash[18819]: cluster 2024-02-19T20:55:17.442698+0000 mgr.smithi155.pwytll (mgr.14180) 241 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:20.849 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:20 smithi155 bash[14250]: cluster 2024-02-19T20:55:19.443355+0000 mgr.smithi155.pwytll (mgr.14180) 242 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:20.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:20 smithi160 bash[18819]: cluster 2024-02-19T20:55:19.443355+0000 mgr.smithi155.pwytll (mgr.14180) 242 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:21.277 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:55:21.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:21 smithi155 bash[14250]: audit 2024-02-19T20:55:21.296818+0000 mon.smithi155 (mon.0) 634 : audit [DBG] from='client.? 172.21.15.155:0/3480334462' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-19T20:55:21.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:21 smithi160 bash[18819]: audit 2024-02-19T20:55:21.296818+0000 mon.smithi155 (mon.0) 634 : audit [DBG] from='client.? 172.21.15.155:0/3480334462' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-19T20:55:21.955 INFO:teuthology.orchestra.run.smithi155.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-02-19T20:55:21.956 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-02-19T20:55:21.956 INFO:tasks.cephadm:Setup complete, yielding 2024-02-19T20:55:21.956 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-19T20:55:21.965 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi155.front.sepia.ceph.com 2024-02-19T20:55:21.966 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- bash -c 'ceph orch status' 2024-02-19T20:55:22.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:22 smithi160 bash[18819]: cluster 2024-02-19T20:55:21.443810+0000 mgr.smithi155.pwytll (mgr.14180) 243 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:22.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:22 smithi155 bash[14250]: cluster 2024-02-19T20:55:21.443810+0000 mgr.smithi155.pwytll (mgr.14180) 243 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:24.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:24 smithi160 bash[18819]: cluster 2024-02-19T20:55:23.444291+0000 mgr.smithi155.pwytll (mgr.14180) 244 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:24.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:24 smithi155 bash[14250]: cluster 2024-02-19T20:55:23.444291+0000 mgr.smithi155.pwytll (mgr.14180) 244 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:25.127 INFO:teuthology.orchestra.run.smithi155.stdout:Backend: cephadm 2024-02-19T20:55:25.127 INFO:teuthology.orchestra.run.smithi155.stdout:Available: Yes 2024-02-19T20:55:25.128 INFO:teuthology.orchestra.run.smithi155.stdout:Paused: No 2024-02-19T20:55:25.827 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- bash -c 'ceph orch ps' 2024-02-19T20:55:26.831 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:26 smithi155 bash[14250]: audit 2024-02-19T20:55:25.146686+0000 mgr.smithi155.pwytll (mgr.14180) 245 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:26.831 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:26 smithi155 bash[14250]: cluster 2024-02-19T20:55:25.444685+0000 mgr.smithi155.pwytll (mgr.14180) 246 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:26 smithi160 bash[18819]: audit 2024-02-19T20:55:25.146686+0000 mgr.smithi155.pwytll (mgr.14180) 245 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:26.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:26 smithi160 bash[18819]: cluster 2024-02-19T20:55:25.444685+0000 mgr.smithi155.pwytll (mgr.14180) 246 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:28.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:28 smithi155 bash[14250]: cluster 2024-02-19T20:55:27.445264+0000 mgr.smithi155.pwytll (mgr.14180) 247 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:28.816 INFO:teuthology.orchestra.run.smithi155.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-02-19T20:55:28.816 INFO:teuthology.orchestra.run.smithi155.stdout:alertmanager.smithi155 smithi155 *:9093,9094 running (5m) 40s ago 7m 12.2M - 0.23.0 ba2b418f427c b46a74e77dd9 2024-02-19T20:55:28.816 INFO:teuthology.orchestra.run.smithi155.stdout:crash.smithi155 smithi155 running (7m) 40s ago 7m 6960k - 16.2.14-548-g81bd20d6 823b921721f5 c1858c585436 2024-02-19T20:55:28.816 INFO:teuthology.orchestra.run.smithi155.stdout:crash.smithi160 smithi160 running (6m) 40s ago 6m 7071k - 16.2.14-548-g81bd20d6 823b921721f5 fe0d2a1d199c 2024-02-19T20:55:28.816 INFO:teuthology.orchestra.run.smithi155.stdout:grafana.smithi155 smithi155 *:3000 running (5m) 40s ago 6m 41.3M - 8.3.5 dad864ee21e9 8b0767016cda 2024-02-19T20:55:28.816 INFO:teuthology.orchestra.run.smithi155.stdout:mgr.smithi155.pwytll smithi155 *:9283 running (8m) 40s ago 8m 426M - 16.2.14-548-g81bd20d6 823b921721f5 7bddf07ea93c 2024-02-19T20:55:28.816 INFO:teuthology.orchestra.run.smithi155.stdout:mgr.smithi160.petcyg smithi160 *:8443,9283 running (5m) 40s ago 5m 376M - 16.2.14-548-g81bd20d6 823b921721f5 aa191659832e 2024-02-19T20:55:28.816 INFO:teuthology.orchestra.run.smithi155.stdout:mon.smithi155 smithi155 running (8m) 40s ago 8m 59.6M 2048M 16.2.14-548-g81bd20d6 823b921721f5 ca43b76d3024 2024-02-19T20:55:28.816 INFO:teuthology.orchestra.run.smithi155.stdout:mon.smithi160 smithi160 running (5m) 40s ago 5m 59.5M 2048M 16.2.14-548-g81bd20d6 823b921721f5 648bd34652dc 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:node-exporter.smithi155 smithi155 *:9100 running (6m) 40s ago 6m 9675k - 1.3.1 1dbe0e931976 dcc0b8c989bc 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:node-exporter.smithi160 smithi160 *:9100 running (5m) 40s ago 5m 12.4M - 1.3.1 1dbe0e931976 1bb854133a28 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:osd.0 smithi160 running (4m) 40s ago 4m 33.3M 4028M 16.2.14-548-g81bd20d6 823b921721f5 db585ac29c3a 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:osd.1 smithi155 running (4m) 40s ago 4m 33.2M 3260M 16.2.14-548-g81bd20d6 823b921721f5 553c073b690d 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:osd.2 smithi160 running (4m) 40s ago 4m 34.9M 4028M 16.2.14-548-g81bd20d6 823b921721f5 0f5777ea0544 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:osd.3 smithi155 running (4m) 40s ago 4m 34.3M 3260M 16.2.14-548-g81bd20d6 823b921721f5 334ab62220f7 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:osd.4 smithi160 running (4m) 40s ago 4m 32.5M 4028M 16.2.14-548-g81bd20d6 823b921721f5 6ef88425489b 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:osd.5 smithi155 running (3m) 40s ago 4m 33.0M 3260M 16.2.14-548-g81bd20d6 823b921721f5 1460d7d84937 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:osd.6 smithi160 running (4m) 40s ago 4m 34.8M 4028M 16.2.14-548-g81bd20d6 823b921721f5 152999fd665e 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:osd.7 smithi155 running (3m) 40s ago 3m 33.3M 3260M 16.2.14-548-g81bd20d6 823b921721f5 5545d940348c 2024-02-19T20:55:28.817 INFO:teuthology.orchestra.run.smithi155.stdout:prometheus.smithi155 smithi155 *:9095 running (5m) 40s ago 6m 53.0M - 2.33.4 514e6a882f6e 4d419f6ec4f4 2024-02-19T20:55:28.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:28 smithi160 bash[18819]: cluster 2024-02-19T20:55:27.445264+0000 mgr.smithi155.pwytll (mgr.14180) 247 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:29.517 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- bash -c 'ceph orch ls' 2024-02-19T20:55:30.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:30 smithi155 bash[14250]: audit 2024-02-19T20:55:28.817453+0000 mgr.smithi155.pwytll (mgr.14180) 248 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:30.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:30 smithi155 bash[14250]: cluster 2024-02-19T20:55:29.445700+0000 mgr.smithi155.pwytll (mgr.14180) 249 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:30.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:30 smithi160 bash[18819]: audit 2024-02-19T20:55:28.817453+0000 mgr.smithi155.pwytll (mgr.14180) 248 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:30.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:30 smithi160 bash[18819]: cluster 2024-02-19T20:55:29.445700+0000 mgr.smithi155.pwytll (mgr.14180) 249 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:32.484 INFO:teuthology.orchestra.run.smithi155.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-02-19T20:55:32.484 INFO:teuthology.orchestra.run.smithi155.stdout:alertmanager ?:9093,9094 1/1 44s ago 7m count:1 2024-02-19T20:55:32.484 INFO:teuthology.orchestra.run.smithi155.stdout:crash 2/2 44s ago 8m * 2024-02-19T20:55:32.484 INFO:teuthology.orchestra.run.smithi155.stdout:grafana ?:3000 1/1 44s ago 7m count:1 2024-02-19T20:55:32.484 INFO:teuthology.orchestra.run.smithi155.stdout:mgr 2/2 44s ago 8m count:2 2024-02-19T20:55:32.484 INFO:teuthology.orchestra.run.smithi155.stdout:mon 2/2 44s ago 6m smithi155:172.21.15.155=smithi155;smithi160:172.21.15.160=smithi160;count:2 2024-02-19T20:55:32.484 INFO:teuthology.orchestra.run.smithi155.stdout:node-exporter ?:9100 2/2 44s ago 7m * 2024-02-19T20:55:32.485 INFO:teuthology.orchestra.run.smithi155.stdout:osd.all-available-devices 8 44s ago 5m * 2024-02-19T20:55:32.485 INFO:teuthology.orchestra.run.smithi155.stdout:prometheus ?:9095 1/1 44s ago 7m count:1 2024-02-19T20:55:32.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:32 smithi160 bash[18819]: cluster 2024-02-19T20:55:31.446337+0000 mgr.smithi155.pwytll (mgr.14180) 250 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:32.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:32 smithi155 bash[14250]: cluster 2024-02-19T20:55:31.446337+0000 mgr.smithi155.pwytll (mgr.14180) 250 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:33.224 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- bash -c 'ceph orch host ls' 2024-02-19T20:55:33.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:33 smithi160 bash[18819]: audit 2024-02-19T20:55:32.493666+0000 mgr.smithi155.pwytll (mgr.14180) 251 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:33.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:33 smithi155 bash[14250]: audit 2024-02-19T20:55:32.493666+0000 mgr.smithi155.pwytll (mgr.14180) 251 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:34.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:34 smithi160 bash[18819]: cluster 2024-02-19T20:55:33.446907+0000 mgr.smithi155.pwytll (mgr.14180) 252 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:34.972 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:34 smithi155 bash[14250]: cluster 2024-02-19T20:55:33.446907+0000 mgr.smithi155.pwytll (mgr.14180) 252 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:36.153 INFO:teuthology.orchestra.run.smithi155.stdout:HOST ADDR LABELS STATUS 2024-02-19T20:55:36.153 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 172.21.15.155 2024-02-19T20:55:36.153 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 172.21.15.160 2024-02-19T20:55:36.153 INFO:teuthology.orchestra.run.smithi155.stdout:2 hosts in cluster 2024-02-19T20:55:36.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:36 smithi155 bash[14250]: cluster 2024-02-19T20:55:35.447456+0000 mgr.smithi155.pwytll (mgr.14180) 253 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:36.818 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- bash -c 'ceph orch device ls' 2024-02-19T20:55:36.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:36 smithi160 bash[18819]: cluster 2024-02-19T20:55:35.447456+0000 mgr.smithi155.pwytll (mgr.14180) 253 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:37.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:37 smithi160 bash[18819]: audit 2024-02-19T20:55:36.171539+0000 mgr.smithi155.pwytll (mgr.14180) 254 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:37.911 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:37 smithi155 bash[14250]: audit 2024-02-19T20:55:36.171539+0000 mgr.smithi155.pwytll (mgr.14180) 254 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:38.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:38 smithi160 bash[18819]: cluster 2024-02-19T20:55:37.447976+0000 mgr.smithi155.pwytll (mgr.14180) 255 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:38.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:38 smithi155 bash[14250]: cluster 2024-02-19T20:55:37.447976+0000 mgr.smithi155.pwytll (mgr.14180) 255 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:39.829 INFO:teuthology.orchestra.run.smithi155.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-19T20:55:39.830 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT623300GW400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-19T20:55:39.830 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 /dev/nvme1n1 ssd Linux_1e649400a3ea27aeb8ce 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:39.830 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 /dev/nvme2n1 ssd Linux_9bdc6ef56d3c0dc6dbd8 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:39.830 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 /dev/nvme3n1 ssd Linux_4312df8d5d38f62da0df 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:39.830 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 /dev/nvme4n1 ssd Linux_1e828d04f216a51fbebe 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:39.830 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT623300JY400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-19T20:55:39.830 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 /dev/nvme1n1 ssd Linux_850e13c30ebfef8b504c 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:39.830 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 /dev/nvme2n1 ssd Linux_28fe9c813c964ed5f18c 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:39.830 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 /dev/nvme3n1 ssd Linux_442fad53897200178532 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:39.830 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 /dev/nvme4n1 ssd Linux_4fe3c76216705387b50f 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:40.457 INFO:teuthology.run_tasks:Running task vip... 2024-02-19T20:55:40.467 INFO:tasks.vip:Allocating static IPs for each host... 2024-02-19T20:55:40.467 INFO:tasks.vip:peername 172.21.15.155 2024-02-19T20:55:40.470 INFO:tasks.vip:172.21.15.155 in 172.21.0.0/20, pos 3994 2024-02-19T20:55:40.474 INFO:tasks.vip:smithi155.front.sepia.ceph.com static 10.0.15.155, vnet 10.0.0.0/16 2024-02-19T20:55:40.474 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-02-19T20:55:40.474 DEBUG:teuthology.orchestra.run.smithi155:> sudo ip route ls 2024-02-19T20:55:40.488 INFO:teuthology.orchestra.run.smithi155.stdout:default via 172.21.15.254 dev enp3s0f1 2024-02-19T20:55:40.488 INFO:teuthology.orchestra.run.smithi155.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.155 metric 100 2024-02-19T20:55:40.488 INFO:teuthology.orchestra.run.smithi155.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-19T20:55:40.488 INFO:teuthology.orchestra.run.smithi155.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.155 2024-02-19T20:55:40.488 INFO:teuthology.orchestra.run.smithi155.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.155 metric 100 2024-02-19T20:55:40.489 INFO:tasks.vip:Configuring 10.0.15.155 on smithi155.front.sepia.ceph.com iface enp3s0f1... 2024-02-19T20:55:40.489 DEBUG:teuthology.orchestra.run.smithi155:> sudo ip addr add 10.0.15.155/16 dev enp3s0f1 2024-02-19T20:55:40.546 INFO:tasks.vip:peername 172.21.15.160 2024-02-19T20:55:40.549 INFO:tasks.vip:172.21.15.160 in 172.21.0.0/20, pos 3999 2024-02-19T20:55:40.553 INFO:tasks.vip:smithi160.front.sepia.ceph.com static 10.0.15.160, vnet 10.0.0.0/16 2024-02-19T20:55:40.553 DEBUG:teuthology.orchestra.run.smithi160:> sudo ip route ls 2024-02-19T20:55:40.569 INFO:teuthology.orchestra.run.smithi160.stdout:default via 172.21.15.254 dev enp3s0f1 2024-02-19T20:55:40.569 INFO:teuthology.orchestra.run.smithi160.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.160 metric 100 2024-02-19T20:55:40.569 INFO:teuthology.orchestra.run.smithi160.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-19T20:55:40.569 INFO:teuthology.orchestra.run.smithi160.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.160 2024-02-19T20:55:40.569 INFO:teuthology.orchestra.run.smithi160.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.160 metric 100 2024-02-19T20:55:40.570 INFO:tasks.vip:Configuring 10.0.15.160 on smithi160.front.sepia.ceph.com iface enp3s0f1... 2024-02-19T20:55:40.570 DEBUG:teuthology.orchestra.run.smithi160:> sudo ip addr add 10.0.15.160/16 dev enp3s0f1 2024-02-19T20:55:40.631 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-19T20:55:40.640 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi155.front.sepia.ceph.com 2024-02-19T20:55:40.640 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-02-19T20:55:40.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:40 smithi155 bash[14250]: cluster 2024-02-19T20:55:39.448541+0000 mgr.smithi155.pwytll (mgr.14180) 256 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:40.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:40 smithi160 bash[18819]: cluster 2024-02-19T20:55:39.448541+0000 mgr.smithi155.pwytll (mgr.14180) 256 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:41.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:41 smithi160 bash[18819]: audit 2024-02-19T20:55:39.840469+0000 mgr.smithi155.pwytll (mgr.14180) 257 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:41.965 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:41 smithi155 bash[14250]: audit 2024-02-19T20:55:39.840469+0000 mgr.smithi155.pwytll (mgr.14180) 257 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:42.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:42 smithi160 bash[18819]: cluster 2024-02-19T20:55:41.449197+0000 mgr.smithi155.pwytll (mgr.14180) 258 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:42.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:42 smithi155 bash[14250]: cluster 2024-02-19T20:55:41.449197+0000 mgr.smithi155.pwytll (mgr.14180) 258 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:43.722 INFO:teuthology.orchestra.run.smithi155.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-19T20:55:43.722 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT623300GW400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-19T20:55:43.722 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 /dev/nvme1n1 ssd Linux_1e649400a3ea27aeb8ce 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:43.722 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 /dev/nvme2n1 ssd Linux_9bdc6ef56d3c0dc6dbd8 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:43.722 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 /dev/nvme3n1 ssd Linux_4312df8d5d38f62da0df 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:43.722 INFO:teuthology.orchestra.run.smithi155.stdout:smithi155 /dev/nvme4n1 ssd Linux_1e828d04f216a51fbebe 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:43.722 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT623300JY400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-19T20:55:43.722 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 /dev/nvme1n1 ssd Linux_850e13c30ebfef8b504c 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:43.722 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 /dev/nvme2n1 ssd Linux_28fe9c813c964ed5f18c 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:43.723 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 /dev/nvme3n1 ssd Linux_442fad53897200178532 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:43.723 INFO:teuthology.orchestra.run.smithi155.stdout:smithi160 /dev/nvme4n1 ssd Linux_4fe3c76216705387b50f 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T20:55:44.376 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-19T20:55:44.602 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi155.front.sepia.ceph.com 2024-02-19T20:55:44.602 DEBUG:teuthology.orchestra.run.smithi155:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-19T20:55:44.617 INFO:teuthology.orchestra.run.smithi155.stderr:+ systemctl stop nfs-server 2024-02-19T20:55:44.625 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:44 smithi155 bash[14250]: cluster 2024-02-19T20:55:43.449729+0000 mgr.smithi155.pwytll (mgr.14180) 259 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:44.625 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:44 smithi155 bash[14250]: audit 2024-02-19T20:55:43.762475+0000 mon.smithi155 (mon.0) 635 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:55:44.743 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi160.front.sepia.ceph.com 2024-02-19T20:55:44.743 DEBUG:teuthology.orchestra.run.smithi160:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-19T20:55:44.760 INFO:teuthology.orchestra.run.smithi160.stderr:+ systemctl stop nfs-server 2024-02-19T20:55:44.873 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:44 smithi160 bash[18819]: cluster 2024-02-19T20:55:43.449729+0000 mgr.smithi155.pwytll (mgr.14180) 259 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:44.873 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:44 smithi160 bash[18819]: audit 2024-02-19T20:55:43.762475+0000 mon.smithi155 (mon.0) 635 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:55:44.874 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-19T20:55:44.942 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi155.front.sepia.ceph.com 2024-02-19T20:55:44.942 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-02-19T20:55:45.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:45 smithi160 bash[18819]: audit 2024-02-19T20:55:43.729803+0000 mgr.smithi155.pwytll (mgr.14180) 260 : audit [DBG] from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:45.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:45 smithi155 bash[14250]: audit 2024-02-19T20:55:43.729803+0000 mgr.smithi155.pwytll (mgr.14180) 260 : audit [DBG] from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:46.883 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:46 smithi155 bash[14250]: cluster 2024-02-19T20:55:45.450229+0000 mgr.smithi155.pwytll (mgr.14180) 261 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:46.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:46 smithi160 bash[18819]: cluster 2024-02-19T20:55:45.450229+0000 mgr.smithi155.pwytll (mgr.14180) 261 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:48.128 INFO:teuthology.orchestra.run.smithi155.stdout:Scheduled rgw.foorgw update... 2024-02-19T20:55:48.872 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.155/16' 2024-02-19T20:55:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:48 smithi160 bash[18819]: cluster 2024-02-19T20:55:47.450675+0000 mgr.smithi155.pwytll (mgr.14180) 262 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:48 smithi160 bash[18819]: audit 2024-02-19T20:55:48.147704+0000 mon.smithi155 (mon.0) 636 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:55:48.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:48 smithi155 bash[14250]: cluster 2024-02-19T20:55:47.450675+0000 mgr.smithi155.pwytll (mgr.14180) 262 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:48.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:48 smithi155 bash[14250]: audit 2024-02-19T20:55:48.147704+0000 mon.smithi155 (mon.0) 636 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:55:49.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:49 smithi160 bash[18819]: audit 2024-02-19T20:55:48.140374+0000 mgr.smithi155.pwytll (mgr.14180) 263 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:49.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:49 smithi160 bash[18819]: cephadm 2024-02-19T20:55:48.143172+0000 mgr.smithi155.pwytll (mgr.14180) 264 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-19T20:55:49.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:49 smithi160 bash[18819]: audit 2024-02-19T20:55:49.233985+0000 mon.smithi155 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:55:49.915 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:49 smithi155 bash[14250]: audit 2024-02-19T20:55:48.140374+0000 mgr.smithi155.pwytll (mgr.14180) 263 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:49.915 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:49 smithi155 bash[14250]: cephadm 2024-02-19T20:55:48.143172+0000 mgr.smithi155.pwytll (mgr.14180) 264 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-19T20:55:49.916 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:49 smithi155 bash[14250]: audit 2024-02-19T20:55:49.233985+0000 mon.smithi155 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:55:50.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:50 smithi160 bash[18819]: cluster 2024-02-19T20:55:49.451016+0000 mgr.smithi155.pwytll (mgr.14180) 265 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:50.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:50 smithi160 bash[18819]: audit 2024-02-19T20:55:50.362910+0000 mon.smithi155 (mon.0) 638 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:55:50.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:50 smithi155 bash[14250]: cluster 2024-02-19T20:55:49.451016+0000 mgr.smithi155.pwytll (mgr.14180) 265 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:50.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:50 smithi155 bash[14250]: audit 2024-02-19T20:55:50.362910+0000 mon.smithi155 (mon.0) 638 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:55:52.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:52 smithi155 bash[14250]: cluster 2024-02-19T20:55:51.451429+0000 mgr.smithi155.pwytll (mgr.14180) 266 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:52.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:52 smithi155 bash[14250]: audit 2024-02-19T20:55:51.886315+0000 mon.smithi155 (mon.0) 639 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-19T20:55:53.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:52 smithi160 bash[18819]: cluster 2024-02-19T20:55:51.451429+0000 mgr.smithi155.pwytll (mgr.14180) 266 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:53.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:52 smithi160 bash[18819]: audit 2024-02-19T20:55:51.886315+0000 mon.smithi155 (mon.0) 639 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-19T20:55:53.710 INFO:teuthology.orchestra.run.smithi155.stdout:NFS Cluster Created Successfully 2024-02-19T20:55:53.929 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:53 smithi155 bash[14250]: audit 2024-02-19T20:55:51.884576+0000 mgr.smithi155.pwytll (mgr.14180) 267 : audit [DBG] from='client.14524 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.155/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:53.929 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:53 smithi155 bash[14250]: audit 2024-02-19T20:55:52.681695+0000 mon.smithi155 (mon.0) 640 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-19T20:55:53.929 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:53 smithi155 bash[14250]: cluster 2024-02-19T20:55:52.681780+0000 mon.smithi155 (mon.0) 641 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-19T20:55:53.929 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:53 smithi155 bash[14250]: audit 2024-02-19T20:55:52.686125+0000 mon.smithi155 (mon.0) 642 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-19T20:55:53.929 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:53 smithi155 bash[14250]: audit 2024-02-19T20:55:53.685533+0000 mon.smithi155 (mon.0) 643 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-19T20:55:53.929 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:53 smithi155 bash[14250]: cluster 2024-02-19T20:55:53.685800+0000 mon.smithi155 (mon.0) 644 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-19T20:55:54.011 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:53 smithi160 bash[18819]: audit 2024-02-19T20:55:51.884576+0000 mgr.smithi155.pwytll (mgr.14180) 267 : audit [DBG] from='client.14524 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.155/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:55:54.011 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:53 smithi160 bash[18819]: audit 2024-02-19T20:55:52.681695+0000 mon.smithi155 (mon.0) 640 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-19T20:55:54.011 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:53 smithi160 bash[18819]: cluster 2024-02-19T20:55:52.681780+0000 mon.smithi155 (mon.0) 641 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-19T20:55:54.011 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:53 smithi160 bash[18819]: audit 2024-02-19T20:55:52.686125+0000 mon.smithi155 (mon.0) 642 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-19T20:55:54.012 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:53 smithi160 bash[18819]: audit 2024-02-19T20:55:53.685533+0000 mon.smithi155 (mon.0) 643 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-19T20:55:54.012 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:53 smithi160 bash[18819]: cluster 2024-02-19T20:55:53.685800+0000 mon.smithi155 (mon.0) 644 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-19T20:55:54.464 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-19T20:55:54.473 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi155.front.sepia.ceph.com 2024-02-19T20:55:54.473 DEBUG:teuthology.orchestra.run.smithi155:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-02-19T20:55:54.488 INFO:teuthology.orchestra.run.smithi155.stderr:+ dnf install -y python3-boto3 2024-02-19T20:55:54.489 INFO:teuthology.orchestra.run.smithi155.stderr:bash: dnf: command not found 2024-02-19T20:55:54.489 INFO:teuthology.orchestra.run.smithi155.stderr:+ apt install -y python3-boto3 2024-02-19T20:55:54.494 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:55:54.494 INFO:teuthology.orchestra.run.smithi155.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-02-19T20:55:54.495 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:55:54.552 INFO:teuthology.orchestra.run.smithi155.stdout:Reading package lists... 2024-02-19T20:55:54.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:54 smithi155 bash[14250]: cluster 2024-02-19T20:55:53.451942+0000 mgr.smithi155.pwytll (mgr.14180) 268 : cluster [DBG] pgmap v245: 33 pgs: 32 unknown, 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:54.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:54 smithi155 bash[14250]: cephadm 2024-02-19T20:55:53.719243+0000 mgr.smithi155.pwytll (mgr.14180) 269 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-19T20:55:54.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:54 smithi155 bash[14250]: audit 2024-02-19T20:55:53.723016+0000 mon.smithi155 (mon.0) 645 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:55:54.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:54 smithi155 bash[14250]: cephadm 2024-02-19T20:55:53.724894+0000 mgr.smithi155.pwytll (mgr.14180) 270 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-19T20:55:54.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:54 smithi155 bash[14250]: audit 2024-02-19T20:55:53.729096+0000 mon.smithi155 (mon.0) 646 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:55:54.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:54 smithi155 bash[14250]: cluster 2024-02-19T20:55:54.684921+0000 mon.smithi155 (mon.0) 647 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-19T20:55:54.776 INFO:teuthology.orchestra.run.smithi155.stdout:Building dependency tree... 2024-02-19T20:55:54.777 INFO:teuthology.orchestra.run.smithi155.stdout:Reading state information... 2024-02-19T20:55:54.970 INFO:teuthology.orchestra.run.smithi155.stdout:The following additional packages will be installed: 2024-02-19T20:55:54.970 INFO:teuthology.orchestra.run.smithi155.stdout: docutils-common libpaper-utils libpaper1 python3-botocore python3-docutils 2024-02-19T20:55:54.970 INFO:teuthology.orchestra.run.smithi155.stdout: python3-jmespath python3-pygments python3-roman python3-s3transfer 2024-02-19T20:55:54.972 INFO:teuthology.orchestra.run.smithi155.stdout:Suggested packages: 2024-02-19T20:55:54.972 INFO:teuthology.orchestra.run.smithi155.stdout: docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french 2024-02-19T20:55:54.972 INFO:teuthology.orchestra.run.smithi155.stdout: texlive-latex-base texlive-latex-recommended python-pygments-doc 2024-02-19T20:55:54.989 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:54 smithi160 bash[18819]: cluster 2024-02-19T20:55:53.451942+0000 mgr.smithi155.pwytll (mgr.14180) 268 : cluster [DBG] pgmap v245: 33 pgs: 32 unknown, 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:54.989 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:54 smithi160 bash[18819]: cephadm 2024-02-19T20:55:53.719243+0000 mgr.smithi155.pwytll (mgr.14180) 269 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-19T20:55:54.989 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:54 smithi160 bash[18819]: audit 2024-02-19T20:55:53.723016+0000 mon.smithi155 (mon.0) 645 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:55:54.989 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:54 smithi160 bash[18819]: cephadm 2024-02-19T20:55:53.724894+0000 mgr.smithi155.pwytll (mgr.14180) 270 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-19T20:55:54.989 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:54 smithi160 bash[18819]: audit 2024-02-19T20:55:53.729096+0000 mon.smithi155 (mon.0) 646 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:55:54.989 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:54 smithi160 bash[18819]: cluster 2024-02-19T20:55:54.684921+0000 mon.smithi155 (mon.0) 647 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-19T20:55:55.013 INFO:teuthology.orchestra.run.smithi155.stdout:The following NEW packages will be installed: 2024-02-19T20:55:55.014 INFO:teuthology.orchestra.run.smithi155.stdout: docutils-common libpaper-utils libpaper1 python3-boto3 python3-botocore 2024-02-19T20:55:55.015 INFO:teuthology.orchestra.run.smithi155.stdout: python3-docutils python3-jmespath python3-pygments python3-roman 2024-02-19T20:55:55.015 INFO:teuthology.orchestra.run.smithi155.stdout: python3-s3transfer 2024-02-19T20:55:55.127 INFO:teuthology.orchestra.run.smithi155.stdout:0 upgraded, 10 newly installed, 0 to remove and 268 not upgraded. 2024-02-19T20:55:55.127 INFO:teuthology.orchestra.run.smithi155.stdout:Need to get 4,480 kB of archives. 2024-02-19T20:55:55.127 INFO:teuthology.orchestra.run.smithi155.stdout:After this operation, 53.0 MB of additional disk space will be used. 2024-02-19T20:55:55.127 INFO:teuthology.orchestra.run.smithi155.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 docutils-common all 0.16+dfsg-2 [116 kB] 2024-02-19T20:55:55.320 INFO:teuthology.orchestra.run.smithi155.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libpaper1 amd64 1.1.28 [13.0 kB] 2024-02-19T20:55:55.322 INFO:teuthology.orchestra.run.smithi155.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libpaper-utils amd64 1.1.28 [8,400 B] 2024-02-19T20:55:55.323 INFO:teuthology.orchestra.run.smithi155.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-roman all 2.0.0-3build1 [8,728 B] 2024-02-19T20:55:55.333 INFO:teuthology.orchestra.run.smithi155.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-docutils all 0.16+dfsg-2 [368 kB] 2024-02-19T20:55:55.442 INFO:teuthology.orchestra.run.smithi155.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jmespath all 0.9.4-2ubuntu1 [21.5 kB] 2024-02-19T20:55:55.444 INFO:teuthology.orchestra.run.smithi155.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 python3-botocore all 1.16.19+repack-1ubuntu0.20.04.1 [3,255 kB] 2024-02-19T20:55:55.621 INFO:teuthology.orchestra.run.smithi155.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-s3transfer all 0.3.3-1 [46.6 kB] 2024-02-19T20:55:55.621 INFO:teuthology.orchestra.run.smithi155.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-boto3 all 1.9.253-1 [63.7 kB] 2024-02-19T20:55:55.622 INFO:teuthology.orchestra.run.smithi155.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-pygments all 2.3.1+dfsg-1ubuntu2.2 [579 kB] 2024-02-19T20:55:55.903 INFO:teuthology.orchestra.run.smithi155.stderr:debconf: unable to initialize frontend: Dialog 2024-02-19T20:55:55.904 INFO:teuthology.orchestra.run.smithi155.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-19T20:55:55.904 INFO:teuthology.orchestra.run.smithi155.stderr:debconf: falling back to frontend: Readline 2024-02-19T20:55:55.928 INFO:teuthology.orchestra.run.smithi155.stderr:debconf: unable to initialize frontend: Readline 2024-02-19T20:55:55.928 INFO:teuthology.orchestra.run.smithi155.stderr:debconf: (This frontend requires a controlling tty.) 2024-02-19T20:55:55.928 INFO:teuthology.orchestra.run.smithi155.stderr:debconf: falling back to frontend: Teletype 2024-02-19T20:55:55.934 INFO:teuthology.orchestra.run.smithi155.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-02-19T20:55:55.991 INFO:teuthology.orchestra.run.smithi155.stdout:Fetched 4,480 kB in 1s (7,344 kB/s) 2024-02-19T20:55:55.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:55 smithi155 bash[14250]: cluster 2024-02-19T20:55:54.737016+0000 mon.smithi155 (mon.0) 648 : cluster [DBG] mgrmap e19: smithi155.pwytll(active, since 7m), standbys: smithi160.petcyg 2024-02-19T20:55:55.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:55 smithi155 bash[14250]: cluster 2024-02-19T20:55:55.452482+0000 mgr.smithi155.pwytll (mgr.14180) 271 : cluster [DBG] pgmap v248: 33 pgs: 25 unknown, 8 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:56.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:55 smithi160 bash[18819]: cluster 2024-02-19T20:55:54.737016+0000 mon.smithi155 (mon.0) 648 : cluster [DBG] mgrmap e19: smithi155.pwytll(active, since 7m), standbys: smithi160.petcyg 2024-02-19T20:55:56.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:55 smithi160 bash[18819]: cluster 2024-02-19T20:55:55.452482+0000 mgr.smithi155.pwytll (mgr.14180) 271 : cluster [DBG] pgmap v248: 33 pgs: 25 unknown, 8 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:56.859 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package docutils-common. 2024-02-19T20:55:56.905 INFO:teuthology.orchestra.run.smithi155.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 ... 112645 files and directories currently installed.) 2024-02-19T20:55:56.908 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../0-docutils-common_0.16+dfsg-2_all.deb ... 2024-02-19T20:55:57.278 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking docutils-common (0.16+dfsg-2) ... 2024-02-19T20:55:58.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:55:58 smithi155 bash[14250]: cluster 2024-02-19T20:55:57.453233+0000 mgr.smithi155.pwytll (mgr.14180) 272 : cluster [DBG] pgmap v249: 33 pgs: 9 unknown, 24 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:58.750 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package libpaper1:amd64. 2024-02-19T20:55:58.765 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../1-libpaper1_1.1.28_amd64.deb ... 2024-02-19T20:55:58.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:55:58 smithi160 bash[18819]: cluster 2024-02-19T20:55:57.453233+0000 mgr.smithi155.pwytll (mgr.14180) 272 : cluster [DBG] pgmap v249: 33 pgs: 9 unknown, 24 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:55:59.025 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking libpaper1:amd64 (1.1.28) ... 2024-02-19T20:56:00.027 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package libpaper-utils. 2024-02-19T20:56:00.042 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../2-libpaper-utils_1.1.28_amd64.deb ... 2024-02-19T20:56:00.110 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking libpaper-utils (1.1.28) ... 2024-02-19T20:56:00.545 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package python3-roman. 2024-02-19T20:56:00.555 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../3-python3-roman_2.0.0-3build1_all.deb ... 2024-02-19T20:56:00.597 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking python3-roman (2.0.0-3build1) ... 2024-02-19T20:56:00.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:00 smithi160 bash[18819]: audit 2024-02-19T20:55:59.313106+0000 mon.smithi155 (mon.0) 649 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:00.654 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:00 smithi160 bash[18819]: cluster 2024-02-19T20:55:59.453913+0000 mgr.smithi155.pwytll (mgr.14180) 273 : cluster [DBG] pgmap v250: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:00.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:00 smithi155 bash[14250]: audit 2024-02-19T20:55:59.313106+0000 mon.smithi155 (mon.0) 649 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:00.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:00 smithi155 bash[14250]: cluster 2024-02-19T20:55:59.453913+0000 mgr.smithi155.pwytll (mgr.14180) 273 : cluster [DBG] pgmap v250: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:00.920 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package python3-docutils. 2024-02-19T20:56:00.934 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../4-python3-docutils_0.16+dfsg-2_all.deb ... 2024-02-19T20:56:00.993 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking python3-docutils (0.16+dfsg-2) ... 2024-02-19T20:56:01.431 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package python3-jmespath. 2024-02-19T20:56:01.444 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../5-python3-jmespath_0.9.4-2ubuntu1_all.deb ... 2024-02-19T20:56:01.489 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking python3-jmespath (0.9.4-2ubuntu1) ... 2024-02-19T20:56:01.789 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package python3-botocore. 2024-02-19T20:56:01.802 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../6-python3-botocore_1.16.19+repack-1ubuntu0.20.04.1_all.deb ... 2024-02-19T20:56:01.847 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking python3-botocore (1.16.19+repack-1ubuntu0.20.04.1) ... 2024-02-19T20:56:02.736 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:02 smithi155 bash[14250]: cluster 2024-02-19T20:56:01.454607+0000 mgr.smithi155.pwytll (mgr.14180) 274 : cluster [DBG] pgmap v251: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:02.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:02 smithi160 bash[18819]: cluster 2024-02-19T20:56:01.454607+0000 mgr.smithi155.pwytll (mgr.14180) 274 : cluster [DBG] pgmap v251: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:03.889 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package python3-s3transfer. 2024-02-19T20:56:03.898 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../7-python3-s3transfer_0.3.3-1_all.deb ... 2024-02-19T20:56:03.959 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking python3-s3transfer (0.3.3-1) ... 2024-02-19T20:56:04.279 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package python3-boto3. 2024-02-19T20:56:04.288 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../8-python3-boto3_1.9.253-1_all.deb ... 2024-02-19T20:56:04.337 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking python3-boto3 (1.9.253-1) ... 2024-02-19T20:56:04.571 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: cluster 2024-02-19T20:56:03.455335+0000 mgr.smithi155.pwytll (mgr.14180) 275 : cluster [DBG] pgmap v252: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:04.571 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: audit 2024-02-19T20:56:03.783401+0000 mon.smithi155 (mon.0) 650 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:04.571 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: audit 2024-02-19T20:56:04.076267+0000 mon.smithi155 (mon.0) 651 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:56:04.572 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: audit 2024-02-19T20:56:04.077790+0000 mon.smithi155 (mon.0) 652 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:56:04.572 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: audit 2024-02-19T20:56:04.086147+0000 mon.smithi155 (mon.0) 653 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:04.572 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: audit 2024-02-19T20:56:04.093899+0000 mon.smithi155 (mon.0) 654 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:56:04.572 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: audit 2024-02-19T20:56:04.106286+0000 mon.smithi155 (mon.0) 655 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:04.572 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: audit 2024-02-19T20:56:04.107918+0000 mon.smithi155 (mon.0) 656 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi160.kuvupj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T20:56:04.572 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: audit 2024-02-19T20:56:04.119056+0000 mon.smithi155 (mon.0) 657 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi160.kuvupj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T20:56:04.572 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: audit 2024-02-19T20:56:04.127407+0000 mon.smithi155 (mon.0) 658 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:04.572 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:04 smithi160 bash[18819]: audit 2024-02-19T20:56:04.128820+0000 mon.smithi155 (mon.0) 659 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:56:04.704 INFO:teuthology.orchestra.run.smithi155.stdout:Selecting previously unselected package python3-pygments. 2024-02-19T20:56:04.718 INFO:teuthology.orchestra.run.smithi155.stdout:Preparing to unpack .../9-python3-pygments_2.3.1+dfsg-1ubuntu2.2_all.deb ... 2024-02-19T20:56:04.753 INFO:teuthology.orchestra.run.smithi155.stdout:Unpacking python3-pygments (2.3.1+dfsg-1ubuntu2.2) ... 2024-02-19T20:56:04.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: cluster 2024-02-19T20:56:03.455335+0000 mgr.smithi155.pwytll (mgr.14180) 275 : cluster [DBG] pgmap v252: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:04.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: audit 2024-02-19T20:56:03.783401+0000 mon.smithi155 (mon.0) 650 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:04.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: audit 2024-02-19T20:56:04.076267+0000 mon.smithi155 (mon.0) 651 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:56:04.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: audit 2024-02-19T20:56:04.077790+0000 mon.smithi155 (mon.0) 652 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:56:04.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: audit 2024-02-19T20:56:04.086147+0000 mon.smithi155 (mon.0) 653 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:04.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: audit 2024-02-19T20:56:04.093899+0000 mon.smithi155 (mon.0) 654 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:56:04.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: audit 2024-02-19T20:56:04.106286+0000 mon.smithi155 (mon.0) 655 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:04.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: audit 2024-02-19T20:56:04.107918+0000 mon.smithi155 (mon.0) 656 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi160.kuvupj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T20:56:04.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: audit 2024-02-19T20:56:04.119056+0000 mon.smithi155 (mon.0) 657 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi160.kuvupj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T20:56:04.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: audit 2024-02-19T20:56:04.127407+0000 mon.smithi155 (mon.0) 658 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:04.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:04 smithi155 bash[14250]: audit 2024-02-19T20:56:04.128820+0000 mon.smithi155 (mon.0) 659 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:56:05.141 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up libpaper1:amd64 (1.1.28) ... 2024-02-19T20:56:05.327 INFO:teuthology.orchestra.run.smithi155.stdout:debconf: unable to initialize frontend: Dialog 2024-02-19T20:56:05.327 INFO:teuthology.orchestra.run.smithi155.stdout:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-19T20:56:05.327 INFO:teuthology.orchestra.run.smithi155.stdout:debconf: falling back to frontend: Readline 2024-02-19T20:56:05.529 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:05 smithi160 bash[18819]: cephadm 2024-02-19T20:56:04.101685+0000 mgr.smithi155.pwytll (mgr.14180) 276 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-19T20:56:05.529 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:05 smithi160 bash[18819]: cephadm 2024-02-19T20:56:04.129987+0000 mgr.smithi155.pwytll (mgr.14180) 277 : cephadm [INF] Deploying daemon rgw.foorgw.smithi160.kuvupj on smithi160 2024-02-19T20:56:05.537 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:56:05.537 INFO:teuthology.orchestra.run.smithi155.stdout:Creating config file /etc/papersize with new version 2024-02-19T20:56:05.767 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up libpaper-utils (1.1.28) ... 2024-02-19T20:56:05.889 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up python3-roman (2.0.0-3build1) ... 2024-02-19T20:56:05.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:05 smithi155 bash[14250]: cephadm 2024-02-19T20:56:04.101685+0000 mgr.smithi155.pwytll (mgr.14180) 276 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-19T20:56:05.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:05 smithi155 bash[14250]: cephadm 2024-02-19T20:56:04.129987+0000 mgr.smithi155.pwytll (mgr.14180) 277 : cephadm [INF] Deploying daemon rgw.foorgw.smithi160.kuvupj on smithi160 2024-02-19T20:56:06.160 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up python3-pygments (2.3.1+dfsg-1ubuntu2.2) ... 2024-02-19T20:56:06.732 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up python3-jmespath (0.9.4-2ubuntu1) ... 2024-02-19T20:56:06.756 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:06 smithi155 bash[14250]: cluster 2024-02-19T20:56:05.455788+0000 mgr.smithi155.pwytll (mgr.14180) 278 : cluster [DBG] pgmap v253: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:06.756 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:06 smithi155 bash[14250]: audit 2024-02-19T20:56:06.515762+0000 mon.smithi155 (mon.0) 660 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:06.756 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:06 smithi155 bash[14250]: audit 2024-02-19T20:56:06.517936+0000 mon.smithi155 (mon.0) 661 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi155.ypxdtj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T20:56:06.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:06 smithi160 bash[18819]: cluster 2024-02-19T20:56:05.455788+0000 mgr.smithi155.pwytll (mgr.14180) 278 : cluster [DBG] pgmap v253: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:06.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:06 smithi160 bash[18819]: audit 2024-02-19T20:56:06.515762+0000 mon.smithi155 (mon.0) 660 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:06.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:06 smithi160 bash[18819]: audit 2024-02-19T20:56:06.517936+0000 mon.smithi155 (mon.0) 661 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi155.ypxdtj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T20:56:07.515 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up docutils-common (0.16+dfsg-2) ... 2024-02-19T20:56:07.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:07 smithi155 bash[14250]: audit 2024-02-19T20:56:06.524014+0000 mon.smithi155 (mon.0) 662 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi155.ypxdtj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T20:56:07.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:07 smithi155 bash[14250]: audit 2024-02-19T20:56:06.533797+0000 mon.smithi155 (mon.0) 663 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:07.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:07 smithi155 bash[14250]: audit 2024-02-19T20:56:06.534942+0000 mon.smithi155 (mon.0) 664 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:56:07.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:07 smithi155 bash[14250]: cephadm 2024-02-19T20:56:06.535834+0000 mgr.smithi155.pwytll (mgr.14180) 279 : cephadm [INF] Deploying daemon rgw.foorgw.smithi155.ypxdtj on smithi155 2024-02-19T20:56:08.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:07 smithi160 bash[18819]: audit 2024-02-19T20:56:06.524014+0000 mon.smithi155 (mon.0) 662 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi155.ypxdtj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T20:56:08.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:07 smithi160 bash[18819]: audit 2024-02-19T20:56:06.533797+0000 mon.smithi155 (mon.0) 663 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:08.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:07 smithi160 bash[18819]: audit 2024-02-19T20:56:06.534942+0000 mon.smithi155 (mon.0) 664 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:56:08.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:07 smithi160 bash[18819]: cephadm 2024-02-19T20:56:06.535834+0000 mgr.smithi155.pwytll (mgr.14180) 279 : cephadm [INF] Deploying daemon rgw.foorgw.smithi155.ypxdtj on smithi155 2024-02-19T20:56:08.346 INFO:teuthology.orchestra.run.smithi155.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-19T20:56:08.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:08 smithi155 bash[14250]: cluster 2024-02-19T20:56:07.456210+0000 mgr.smithi155.pwytll (mgr.14180) 280 : cluster [DBG] pgmap v254: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:08.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:08 smithi155 bash[14250]: cluster 2024-02-19T20:56:07.934121+0000 mon.smithi155 (mon.0) 665 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-19T20:56:08.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:08 smithi155 bash[14250]: audit 2024-02-19T20:56:07.946268+0000 mon.smithi160 (mon.1) 21 : audit [INF] from='client.? 172.21.15.160:0/755824065' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-19T20:56:08.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:08 smithi155 bash[14250]: audit 2024-02-19T20:56:07.947919+0000 mon.smithi155 (mon.0) 666 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-19T20:56:09.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:08 smithi160 bash[18819]: cluster 2024-02-19T20:56:07.456210+0000 mgr.smithi155.pwytll (mgr.14180) 280 : cluster [DBG] pgmap v254: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:09.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:08 smithi160 bash[18819]: cluster 2024-02-19T20:56:07.934121+0000 mon.smithi155 (mon.0) 665 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-19T20:56:09.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:08 smithi160 bash[18819]: audit 2024-02-19T20:56:07.946268+0000 mon.smithi160 (mon.1) 21 : audit [INF] from='client.? 172.21.15.160:0/755824065' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-19T20:56:09.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:08 smithi160 bash[18819]: audit 2024-02-19T20:56:07.947919+0000 mon.smithi155 (mon.0) 666 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-19T20:56:09.438 INFO:teuthology.orchestra.run.smithi155.stdout:Processing triggers for shared-mime-info (1.15-1) ... 2024-02-19T20:56:10.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:10 smithi155 bash[14250]: audit 2024-02-19T20:56:09.033003+0000 mon.smithi155 (mon.0) 667 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-19T20:56:10.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:10 smithi155 bash[14250]: cluster 2024-02-19T20:56:09.033097+0000 mon.smithi155 (mon.0) 668 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-19T20:56:10.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:10 smithi155 bash[14250]: cluster 2024-02-19T20:56:09.456890+0000 mgr.smithi155.pwytll (mgr.14180) 281 : cluster [DBG] pgmap v257: 65 pgs: 32 unknown, 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:10.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:10 smithi160 bash[18819]: audit 2024-02-19T20:56:09.033003+0000 mon.smithi155 (mon.0) 667 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-19T20:56:10.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:10 smithi160 bash[18819]: cluster 2024-02-19T20:56:09.033097+0000 mon.smithi155 (mon.0) 668 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-19T20:56:10.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:10 smithi160 bash[18819]: cluster 2024-02-19T20:56:09.456890+0000 mgr.smithi155.pwytll (mgr.14180) 281 : cluster [DBG] pgmap v257: 65 pgs: 32 unknown, 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T20:56:11.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: cluster 2024-02-19T20:56:10.041071+0000 mon.smithi155 (mon.0) 669 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-19T20:56:11.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.041332+0000 mon.smithi160 (mon.1) 22 : audit [INF] from='client.? 172.21.15.160:0/755824065' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.043524+0000 mon.smithi155 (mon.0) 670 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.074887+0000 mon.smithi155 (mon.0) 671 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.082595+0000 mon.smithi155 (mon.0) 672 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: cephadm 2024-02-19T20:56:10.106013+0000 mgr.smithi155.pwytll (mgr.14180) 282 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi155.ykcagy 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.106486+0000 mon.smithi155 (mon.0) 673 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi155.ykcagy", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.111594+0000 mon.smithi155 (mon.0) 674 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi155.ykcagy", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: cephadm 2024-02-19T20:56:10.112317+0000 mgr.smithi155.pwytll (mgr.14180) 283 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.112556+0000 mon.smithi155 (mon.0) 675 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.117993+0000 mon.smithi155 (mon.0) 676 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.119381+0000 mon.smithi155 (mon.0) 677 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.174065+0000 mon.smithi155 (mon.0) 678 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.178546+0000 mon.smithi155 (mon.0) 679 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-19T20:56:11.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: cephadm 2024-02-19T20:56:10.237281+0000 mgr.smithi155.pwytll (mgr.14180) 284 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-19T20:56:11.407 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: cephadm 2024-02-19T20:56:10.237401+0000 mgr.smithi155.pwytll (mgr.14180) 285 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi155.ykcagy-rgw 2024-02-19T20:56:11.407 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.237829+0000 mon.smithi155 (mon.0) 680 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi155.ykcagy-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T20:56:11.407 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.244167+0000 mon.smithi155 (mon.0) 681 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi155.ykcagy-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T20:56:11.407 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: audit 2024-02-19T20:56:10.248943+0000 mon.smithi155 (mon.0) 682 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:56:11.407 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:11 smithi160 bash[18819]: cephadm 2024-02-19T20:56:10.249970+0000 mgr.smithi155.pwytll (mgr.14180) 286 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi155.ykcagy on smithi155 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: cluster 2024-02-19T20:56:10.041071+0000 mon.smithi155 (mon.0) 669 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.041332+0000 mon.smithi160 (mon.1) 22 : audit [INF] from='client.? 172.21.15.160:0/755824065' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.043524+0000 mon.smithi155 (mon.0) 670 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.074887+0000 mon.smithi155 (mon.0) 671 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.082595+0000 mon.smithi155 (mon.0) 672 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: cephadm 2024-02-19T20:56:10.106013+0000 mgr.smithi155.pwytll (mgr.14180) 282 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi155.ykcagy 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.106486+0000 mon.smithi155 (mon.0) 673 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi155.ykcagy", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.111594+0000 mon.smithi155 (mon.0) 674 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi155.ykcagy", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: cephadm 2024-02-19T20:56:10.112317+0000 mgr.smithi155.pwytll (mgr.14180) 283 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.112556+0000 mon.smithi155 (mon.0) 675 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.117993+0000 mon.smithi155 (mon.0) 676 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-02-19T20:56:11.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.119381+0000 mon.smithi155 (mon.0) 677 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:56:11.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.174065+0000 mon.smithi155 (mon.0) 678 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-19T20:56:11.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.178546+0000 mon.smithi155 (mon.0) 679 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-19T20:56:11.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: cephadm 2024-02-19T20:56:10.237281+0000 mgr.smithi155.pwytll (mgr.14180) 284 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-19T20:56:11.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: cephadm 2024-02-19T20:56:10.237401+0000 mgr.smithi155.pwytll (mgr.14180) 285 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi155.ykcagy-rgw 2024-02-19T20:56:11.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.237829+0000 mon.smithi155 (mon.0) 680 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi155.ykcagy-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T20:56:11.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.244167+0000 mon.smithi155 (mon.0) 681 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi155.ykcagy-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T20:56:11.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: audit 2024-02-19T20:56:10.248943+0000 mon.smithi155 (mon.0) 682 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:56:11.496 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:11 smithi155 bash[14250]: cephadm 2024-02-19T20:56:10.249970+0000 mgr.smithi155.pwytll (mgr.14180) 286 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi155.ykcagy on smithi155 2024-02-19T20:56:12.181 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:12 smithi155 bash[14250]: audit 2024-02-19T20:56:11.047131+0000 mon.smithi155 (mon.0) 683 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-19T20:56:12.181 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:12 smithi155 bash[14250]: cluster 2024-02-19T20:56:11.047619+0000 mon.smithi155 (mon.0) 684 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-19T20:56:12.181 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:12 smithi155 bash[14250]: cluster 2024-02-19T20:56:11.457591+0000 mgr.smithi155.pwytll (mgr.14180) 287 : cluster [DBG] pgmap v260: 97 pgs: 4 creating+peering, 40 active+clean, 53 unknown; 873 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 255 B/s wr, 0 op/s 2024-02-19T20:56:12.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:12 smithi160 bash[18819]: audit 2024-02-19T20:56:11.047131+0000 mon.smithi155 (mon.0) 683 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-19T20:56:12.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:12 smithi160 bash[18819]: cluster 2024-02-19T20:56:11.047619+0000 mon.smithi155 (mon.0) 684 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-19T20:56:12.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:12 smithi160 bash[18819]: cluster 2024-02-19T20:56:11.457591+0000 mgr.smithi155.pwytll (mgr.14180) 287 : cluster [DBG] pgmap v260: 97 pgs: 4 creating+peering, 40 active+clean, 53 unknown; 873 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 255 B/s wr, 0 op/s 2024-02-19T20:56:13.379 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:13 smithi155 bash[14250]: cluster 2024-02-19T20:56:12.060195+0000 mon.smithi155 (mon.0) 685 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-19T20:56:13.379 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:13 smithi155 bash[14250]: audit 2024-02-19T20:56:12.065739+0000 mon.smithi160 (mon.1) 23 : audit [INF] from='client.? 172.21.15.160:0/755824065' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-19T20:56:13.379 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:13 smithi155 bash[14250]: audit 2024-02-19T20:56:12.068407+0000 mon.smithi155 (mon.0) 686 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-19T20:56:13.379 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:13 smithi155 bash[14250]: audit 2024-02-19T20:56:12.392407+0000 mon.smithi155 (mon.0) 687 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:13.404 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:13 smithi160 bash[18819]: cluster 2024-02-19T20:56:12.060195+0000 mon.smithi155 (mon.0) 685 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-19T20:56:13.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:13 smithi160 bash[18819]: audit 2024-02-19T20:56:12.065739+0000 mon.smithi160 (mon.1) 23 : audit [INF] from='client.? 172.21.15.160:0/755824065' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-19T20:56:13.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:13 smithi160 bash[18819]: audit 2024-02-19T20:56:12.068407+0000 mon.smithi155 (mon.0) 686 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-19T20:56:13.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:13 smithi160 bash[18819]: audit 2024-02-19T20:56:12.392407+0000 mon.smithi155 (mon.0) 687 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:14.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:14 smithi155 bash[14250]: audit 2024-02-19T20:56:13.070957+0000 mon.smithi155 (mon.0) 688 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-19T20:56:14.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:14 smithi155 bash[14250]: cluster 2024-02-19T20:56:13.071159+0000 mon.smithi155 (mon.0) 689 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-19T20:56:14.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:14 smithi155 bash[14250]: cluster 2024-02-19T20:56:13.458013+0000 mgr.smithi155.pwytll (mgr.14180) 288 : cluster [DBG] pgmap v263: 129 pgs: 18 creating+peering, 86 active+clean, 25 unknown; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1023 B/s rd, 1023 B/s wr, 2 op/s 2024-02-19T20:56:14.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:14 smithi160 bash[18819]: audit 2024-02-19T20:56:13.070957+0000 mon.smithi155 (mon.0) 688 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-19T20:56:14.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:14 smithi160 bash[18819]: cluster 2024-02-19T20:56:13.071159+0000 mon.smithi155 (mon.0) 689 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-19T20:56:14.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:14 smithi160 bash[18819]: cluster 2024-02-19T20:56:13.458013+0000 mgr.smithi155.pwytll (mgr.14180) 288 : cluster [DBG] pgmap v263: 129 pgs: 18 creating+peering, 86 active+clean, 25 unknown; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1023 B/s rd, 1023 B/s wr, 2 op/s 2024-02-19T20:56:15.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:15 smithi160 bash[18819]: cluster 2024-02-19T20:56:14.109287+0000 mon.smithi155 (mon.0) 690 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-19T20:56:15.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:15 smithi160 bash[18819]: audit 2024-02-19T20:56:14.109622+0000 mon.smithi155 (mon.0) 691 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:15.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:15 smithi160 bash[18819]: audit 2024-02-19T20:56:14.116781+0000 mon.smithi155 (mon.0) 692 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T20:56:15.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:15 smithi160 bash[18819]: audit 2024-02-19T20:56:14.121506+0000 mon.smithi155 (mon.0) 693 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:15.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:15 smithi160 bash[18819]: audit 2024-02-19T20:56:14.123134+0000 mon.smithi160 (mon.1) 24 : audit [INF] from='client.? 172.21.15.160:0/2440473187' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T20:56:15.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:15 smithi160 bash[18819]: audit 2024-02-19T20:56:14.124857+0000 mon.smithi155 (mon.0) 694 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T20:56:15.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:15 smithi160 bash[18819]: cephadm 2024-02-19T20:56:14.132486+0000 mgr.smithi155.pwytll (mgr.14180) 289 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi160.blbwly on smithi160 2024-02-19T20:56:15.464 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:15 smithi155 bash[14250]: cluster 2024-02-19T20:56:14.109287+0000 mon.smithi155 (mon.0) 690 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-19T20:56:15.464 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:15 smithi155 bash[14250]: audit 2024-02-19T20:56:14.109622+0000 mon.smithi155 (mon.0) 691 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:15.464 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:15 smithi155 bash[14250]: audit 2024-02-19T20:56:14.116781+0000 mon.smithi155 (mon.0) 692 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T20:56:15.465 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:15 smithi155 bash[14250]: audit 2024-02-19T20:56:14.121506+0000 mon.smithi155 (mon.0) 693 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:15.465 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:15 smithi155 bash[14250]: audit 2024-02-19T20:56:14.123134+0000 mon.smithi160 (mon.1) 24 : audit [INF] from='client.? 172.21.15.160:0/2440473187' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T20:56:15.465 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:15 smithi155 bash[14250]: audit 2024-02-19T20:56:14.124857+0000 mon.smithi155 (mon.0) 694 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T20:56:15.465 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:15 smithi155 bash[14250]: cephadm 2024-02-19T20:56:14.132486+0000 mgr.smithi155.pwytll (mgr.14180) 289 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi160.blbwly on smithi160 2024-02-19T20:56:16.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:16 smithi160 bash[18819]: audit 2024-02-19T20:56:15.114222+0000 mon.smithi155 (mon.0) 695 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-19T20:56:16.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:16 smithi160 bash[18819]: audit 2024-02-19T20:56:15.114575+0000 mon.smithi155 (mon.0) 696 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-19T20:56:16.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:16 smithi160 bash[18819]: cluster 2024-02-19T20:56:15.114725+0000 mon.smithi155 (mon.0) 697 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-19T20:56:16.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:16 smithi160 bash[18819]: audit 2024-02-19T20:56:15.117442+0000 mon.smithi155 (mon.0) 698 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T20:56:16.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:16 smithi160 bash[18819]: audit 2024-02-19T20:56:15.127811+0000 mon.smithi160 (mon.1) 25 : audit [INF] from='client.? 172.21.15.160:0/2440473187' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T20:56:16.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:16 smithi160 bash[18819]: audit 2024-02-19T20:56:15.130298+0000 mon.smithi155 (mon.0) 699 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T20:56:16.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:16 smithi160 bash[18819]: cluster 2024-02-19T20:56:15.458744+0000 mgr.smithi155.pwytll (mgr.14180) 290 : cluster [DBG] pgmap v266: 161 pgs: 22 creating+peering, 98 active+clean, 41 unknown; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1.5 KiB/s wr, 4 op/s 2024-02-19T20:56:16.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:16 smithi160 bash[18819]: audit 2024-02-19T20:56:16.115646+0000 mon.smithi155 (mon.0) 700 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T20:56:16.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:16 smithi160 bash[18819]: audit 2024-02-19T20:56:16.115729+0000 mon.smithi155 (mon.0) 701 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T20:56:16.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:16 smithi160 bash[18819]: cluster 2024-02-19T20:56:16.115877+0000 mon.smithi155 (mon.0) 702 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-19T20:56:16.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:16 smithi155 bash[14250]: audit 2024-02-19T20:56:15.114222+0000 mon.smithi155 (mon.0) 695 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-19T20:56:16.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:16 smithi155 bash[14250]: audit 2024-02-19T20:56:15.114575+0000 mon.smithi155 (mon.0) 696 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-19T20:56:16.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:16 smithi155 bash[14250]: cluster 2024-02-19T20:56:15.114725+0000 mon.smithi155 (mon.0) 697 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-19T20:56:16.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:16 smithi155 bash[14250]: audit 2024-02-19T20:56:15.117442+0000 mon.smithi155 (mon.0) 698 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T20:56:16.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:16 smithi155 bash[14250]: audit 2024-02-19T20:56:15.127811+0000 mon.smithi160 (mon.1) 25 : audit [INF] from='client.? 172.21.15.160:0/2440473187' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T20:56:16.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:16 smithi155 bash[14250]: audit 2024-02-19T20:56:15.130298+0000 mon.smithi155 (mon.0) 699 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T20:56:16.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:16 smithi155 bash[14250]: cluster 2024-02-19T20:56:15.458744+0000 mgr.smithi155.pwytll (mgr.14180) 290 : cluster [DBG] pgmap v266: 161 pgs: 22 creating+peering, 98 active+clean, 41 unknown; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1.5 KiB/s wr, 4 op/s 2024-02-19T20:56:16.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:16 smithi155 bash[14250]: audit 2024-02-19T20:56:16.115646+0000 mon.smithi155 (mon.0) 700 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T20:56:16.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:16 smithi155 bash[14250]: audit 2024-02-19T20:56:16.115729+0000 mon.smithi155 (mon.0) 701 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi160.kuvupj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T20:56:16.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:16 smithi155 bash[14250]: cluster 2024-02-19T20:56:16.115877+0000 mon.smithi155 (mon.0) 702 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-19T20:56:18.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:18 smithi160 bash[18819]: audit 2024-02-19T20:56:17.405471+0000 mon.smithi155 (mon.0) 703 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:18.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:18 smithi160 bash[18819]: cluster 2024-02-19T20:56:17.459808+0000 mgr.smithi155.pwytll (mgr.14180) 291 : cluster [DBG] pgmap v268: 161 pgs: 18 creating+peering, 133 active+clean, 10 unknown; 2.0 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 33 KiB/s rd, 2.0 KiB/s wr, 67 op/s 2024-02-19T20:56:18.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:18 smithi155 bash[14250]: audit 2024-02-19T20:56:17.405471+0000 mon.smithi155 (mon.0) 703 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:18.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:18 smithi155 bash[14250]: cluster 2024-02-19T20:56:17.459808+0000 mgr.smithi155.pwytll (mgr.14180) 291 : cluster [DBG] pgmap v268: 161 pgs: 18 creating+peering, 133 active+clean, 10 unknown; 2.0 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 33 KiB/s rd, 2.0 KiB/s wr, 67 op/s 2024-02-19T20:56:20.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:20 smithi160 bash[18819]: cluster 2024-02-19T20:56:19.460553+0000 mgr.smithi155.pwytll (mgr.14180) 292 : cluster [DBG] pgmap v269: 161 pgs: 4 creating+peering, 157 active+clean; 3.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 78 KiB/s rd, 4.3 KiB/s wr, 161 op/s 2024-02-19T20:56:20.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:20 smithi155 bash[14250]: cluster 2024-02-19T20:56:19.460553+0000 mgr.smithi155.pwytll (mgr.14180) 292 : cluster [DBG] pgmap v269: 161 pgs: 4 creating+peering, 157 active+clean; 3.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 78 KiB/s rd, 4.3 KiB/s wr, 161 op/s 2024-02-19T20:56:22.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:22 smithi160 bash[18819]: cluster 2024-02-19T20:56:21.461557+0000 mgr.smithi155.pwytll (mgr.14180) 293 : cluster [DBG] pgmap v270: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 KiB/s rd, 5.7 KiB/s wr, 202 op/s 2024-02-19T20:56:22.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:22 smithi160 bash[18819]: audit 2024-02-19T20:56:22.415982+0000 mon.smithi155 (mon.0) 704 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:22.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:22 smithi155 bash[14250]: cluster 2024-02-19T20:56:21.461557+0000 mgr.smithi155.pwytll (mgr.14180) 293 : cluster [DBG] pgmap v270: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 KiB/s rd, 5.7 KiB/s wr, 202 op/s 2024-02-19T20:56:22.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:22 smithi155 bash[14250]: audit 2024-02-19T20:56:22.415982+0000 mon.smithi155 (mon.0) 704 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:24.732 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:24 smithi160 bash[18819]: cluster 2024-02-19T20:56:23.463074+0000 mgr.smithi155.pwytll (mgr.14180) 294 : cluster [DBG] pgmap v271: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 KiB/s rd, 4.7 KiB/s wr, 176 op/s 2024-02-19T20:56:24.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:24 smithi155 bash[14250]: cluster 2024-02-19T20:56:23.463074+0000 mgr.smithi155.pwytll (mgr.14180) 294 : cluster [DBG] pgmap v271: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 KiB/s rd, 4.7 KiB/s wr, 176 op/s 2024-02-19T20:56:26.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:26 smithi160 bash[18819]: audit 2024-02-19T20:56:25.021900+0000 mon.smithi155 (mon.0) 705 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:26.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:26 smithi160 bash[18819]: cephadm 2024-02-19T20:56:25.024910+0000 mgr.smithi155.pwytll (mgr.14180) 295 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi155.vczntk on smithi155 2024-02-19T20:56:26.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:26 smithi160 bash[18819]: cluster 2024-02-19T20:56:25.464092+0000 mgr.smithi155.pwytll (mgr.14180) 296 : cluster [DBG] pgmap v272: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 71 KiB/s rd, 3.9 KiB/s wr, 147 op/s 2024-02-19T20:56:26.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:26 smithi155 bash[14250]: audit 2024-02-19T20:56:25.021900+0000 mon.smithi155 (mon.0) 705 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:26.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:26 smithi155 bash[14250]: cephadm 2024-02-19T20:56:25.024910+0000 mgr.smithi155.pwytll (mgr.14180) 295 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi155.vczntk on smithi155 2024-02-19T20:56:26.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:26 smithi155 bash[14250]: cluster 2024-02-19T20:56:25.464092+0000 mgr.smithi155.pwytll (mgr.14180) 296 : cluster [DBG] pgmap v272: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 71 KiB/s rd, 3.9 KiB/s wr, 147 op/s 2024-02-19T20:56:28.764 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:28 smithi155 bash[14250]: cluster 2024-02-19T20:56:27.465312+0000 mgr.smithi155.pwytll (mgr.14180) 297 : cluster [DBG] pgmap v273: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 63 KiB/s rd, 3.4 KiB/s wr, 129 op/s 2024-02-19T20:56:28.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:28 smithi160 bash[18819]: cluster 2024-02-19T20:56:27.465312+0000 mgr.smithi155.pwytll (mgr.14180) 297 : cluster [DBG] pgmap v273: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 63 KiB/s rd, 3.4 KiB/s wr, 129 op/s 2024-02-19T20:56:30.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:30 smithi160 bash[18819]: cluster 2024-02-19T20:56:29.466442+0000 mgr.smithi155.pwytll (mgr.14180) 298 : cluster [DBG] pgmap v274: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 48 KiB/s rd, 2.7 KiB/s wr, 99 op/s 2024-02-19T20:56:30.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:30 smithi155 bash[14250]: cluster 2024-02-19T20:56:29.466442+0000 mgr.smithi155.pwytll (mgr.14180) 298 : cluster [DBG] pgmap v274: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 48 KiB/s rd, 2.7 KiB/s wr, 99 op/s 2024-02-19T20:56:32.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:32 smithi160 bash[18819]: cluster 2024-02-19T20:56:31.467477+0000 mgr.smithi155.pwytll (mgr.14180) 299 : cluster [DBG] pgmap v275: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 21 KiB/s rd, 1.3 KiB/s wr, 43 op/s 2024-02-19T20:56:32.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:32 smithi155 bash[14250]: cluster 2024-02-19T20:56:31.467477+0000 mgr.smithi155.pwytll (mgr.14180) 299 : cluster [DBG] pgmap v275: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 21 KiB/s rd, 1.3 KiB/s wr, 43 op/s 2024-02-19T20:56:34.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:34 smithi160 bash[18819]: cluster 2024-02-19T20:56:33.469018+0000 mgr.smithi155.pwytll (mgr.14180) 300 : cluster [DBG] pgmap v276: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:34.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:34 smithi155 bash[14250]: cluster 2024-02-19T20:56:33.469018+0000 mgr.smithi155.pwytll (mgr.14180) 300 : cluster [DBG] pgmap v276: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:36.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:36 smithi160 bash[18819]: cluster 2024-02-19T20:56:35.469938+0000 mgr.smithi155.pwytll (mgr.14180) 301 : cluster [DBG] pgmap v277: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:36.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:36 smithi155 bash[14250]: cluster 2024-02-19T20:56:35.469938+0000 mgr.smithi155.pwytll (mgr.14180) 301 : cluster [DBG] pgmap v277: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:38.766 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:38 smithi155 bash[14250]: cluster 2024-02-19T20:56:37.471078+0000 mgr.smithi155.pwytll (mgr.14180) 302 : cluster [DBG] pgmap v278: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:38.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:38 smithi160 bash[18819]: cluster 2024-02-19T20:56:37.471078+0000 mgr.smithi155.pwytll (mgr.14180) 302 : cluster [DBG] pgmap v278: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:39.021 INFO:teuthology.orchestra.run.smithi155.stdout:Processing triggers for sgml-base (1.29.1) ... 2024-02-19T20:56:40.021 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up python3-docutils (0.16+dfsg-2) ... 2024-02-19T20:56:40.310 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:40 smithi155 bash[14250]: audit 2024-02-19T20:56:39.073295+0000 mon.smithi155 (mon.0) 706 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:40.310 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:40 smithi155 bash[14250]: audit 2024-02-19T20:56:39.082112+0000 mon.smithi155 (mon.0) 707 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:40.310 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:40 smithi155 bash[14250]: cephadm 2024-02-19T20:56:39.082679+0000 mgr.smithi155.pwytll (mgr.14180) 303 : cephadm [INF] 10.0.31.155 is in 10.0.0.0/16 on smithi155 interface enp3s0f1 2024-02-19T20:56:40.310 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:40 smithi155 bash[14250]: cephadm 2024-02-19T20:56:39.087804+0000 mgr.smithi155.pwytll (mgr.14180) 304 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi155.ebhjvc on smithi155 2024-02-19T20:56:40.310 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:40 smithi155 bash[14250]: cluster 2024-02-19T20:56:39.471784+0000 mgr.smithi155.pwytll (mgr.14180) 305 : cluster [DBG] pgmap v279: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:40.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:40 smithi160 bash[18819]: audit 2024-02-19T20:56:39.073295+0000 mon.smithi155 (mon.0) 706 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:40.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:40 smithi160 bash[18819]: audit 2024-02-19T20:56:39.082112+0000 mon.smithi155 (mon.0) 707 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:40.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:40 smithi160 bash[18819]: cephadm 2024-02-19T20:56:39.082679+0000 mgr.smithi155.pwytll (mgr.14180) 303 : cephadm [INF] 10.0.31.155 is in 10.0.0.0/16 on smithi155 interface enp3s0f1 2024-02-19T20:56:40.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:40 smithi160 bash[18819]: cephadm 2024-02-19T20:56:39.087804+0000 mgr.smithi155.pwytll (mgr.14180) 304 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi155.ebhjvc on smithi155 2024-02-19T20:56:40.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:40 smithi160 bash[18819]: cluster 2024-02-19T20:56:39.471784+0000 mgr.smithi155.pwytll (mgr.14180) 305 : cluster [DBG] pgmap v279: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:40.671 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 2024-02-19T20:56:40.714 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 2024-02-19T20:56:40.747 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode 2024-02-19T20:56:40.772 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode 2024-02-19T20:56:40.821 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 2024-02-19T20:56:40.848 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 2024-02-19T20:56:40.874 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 2024-02-19T20:56:40.899 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 2024-02-19T20:56:40.924 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 2024-02-19T20:56:40.949 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 2024-02-19T20:56:40.974 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 2024-02-19T20:56:41.000 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 2024-02-19T20:56:41.032 INFO:teuthology.orchestra.run.smithi155.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 2024-02-19T20:56:41.431 INFO:teuthology.orchestra.run.smithi155.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-19T20:56:41.583 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up python3-botocore (1.16.19+repack-1ubuntu0.20.04.1) ... 2024-02-19T20:56:41.965 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up python3-s3transfer (0.3.3-1) ... 2024-02-19T20:56:42.265 INFO:teuthology.orchestra.run.smithi155.stdout:Setting up python3-boto3 (1.9.253-1) ... 2024-02-19T20:56:42.848 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:42 smithi155 bash[14250]: cluster 2024-02-19T20:56:41.472764+0000 mgr.smithi155.pwytll (mgr.14180) 306 : cluster [DBG] pgmap v280: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-19T20:56:42.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:42 smithi160 bash[18819]: cluster 2024-02-19T20:56:41.472764+0000 mgr.smithi155.pwytll (mgr.14180) 306 : cluster [DBG] pgmap v280: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-19T20:56:42.908 DEBUG:teuthology.orchestra.run.smithi155:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2024-02-19T20:56:42.967 INFO:teuthology.orchestra.run.smithi155.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-02-19T20:56:44.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:44 smithi160 bash[18819]: cluster 2024-02-19T20:56:43.474128+0000 mgr.smithi155.pwytll (mgr.14180) 307 : cluster [DBG] pgmap v281: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:44.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:44 smithi155 bash[14250]: cluster 2024-02-19T20:56:43.474128+0000 mgr.smithi155.pwytll (mgr.14180) 307 : cluster [DBG] pgmap v281: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:46.803 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:46 smithi155 bash[14250]: cluster 2024-02-19T20:56:45.474691+0000 mgr.smithi155.pwytll (mgr.14180) 308 : cluster [DBG] pgmap v282: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:46.904 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:46 smithi160 bash[18819]: cluster 2024-02-19T20:56:45.474691+0000 mgr.smithi155.pwytll (mgr.14180) 308 : cluster [DBG] pgmap v282: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:48.037 INFO:teuthology.orchestra.run.smithi155.stderr:Inferring fsid d8f13c04-cf67-11ee-95bb-87774f69a715 2024-02-19T20:56:48.063 INFO:teuthology.orchestra.run.smithi155.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7fa249cc0191869e2bcc743303b0da933d04d152b2397edb19ec992e48553ab9 2024-02-19T20:56:48.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:48 smithi155 bash[14250]: cluster 2024-02-19T20:56:47.475820+0000 mgr.smithi155.pwytll (mgr.14180) 309 : cluster [DBG] pgmap v283: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:48.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:48 smithi155 bash[14250]: audit 2024-02-19T20:56:48.164873+0000 mon.smithi155 (mon.0) 708 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:48 smithi160 bash[18819]: cluster 2024-02-19T20:56:47.475820+0000 mgr.smithi155.pwytll (mgr.14180) 309 : cluster [DBG] pgmap v283: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:48.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:48 smithi160 bash[18819]: audit 2024-02-19T20:56:48.164873+0000 mon.smithi155 (mon.0) 708 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:49.703 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:49 smithi155 bash[14250]: cephadm 2024-02-19T20:56:48.168398+0000 mgr.smithi155.pwytll (mgr.14180) 310 : cephadm [INF] 10.0.31.155 is in 10.0.0.0/16 on smithi160 interface enp3s0f1 2024-02-19T20:56:49.703 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:49 smithi155 bash[14250]: cephadm 2024-02-19T20:56:48.168912+0000 mgr.smithi155.pwytll (mgr.14180) 311 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi160.tadasv on smithi160 2024-02-19T20:56:49.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:49 smithi160 bash[18819]: cephadm 2024-02-19T20:56:48.168398+0000 mgr.smithi155.pwytll (mgr.14180) 310 : cephadm [INF] 10.0.31.155 is in 10.0.0.0/16 on smithi160 interface enp3s0f1 2024-02-19T20:56:49.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:49 smithi160 bash[18819]: cephadm 2024-02-19T20:56:48.168912+0000 mgr.smithi155.pwytll (mgr.14180) 311 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi160.tadasv on smithi160 2024-02-19T20:56:50.744 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:50 smithi155 bash[14250]: cluster 2024-02-19T20:56:49.476939+0000 mgr.smithi155.pwytll (mgr.14180) 312 : cluster [DBG] pgmap v284: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:50.905 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:50 smithi160 bash[18819]: cluster 2024-02-19T20:56:49.476939+0000 mgr.smithi155.pwytll (mgr.14180) 312 : cluster [DBG] pgmap v284: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T20:56:51.976 INFO:teuthology.run_tasks:Running task python... 2024-02-19T20:56:51.988 INFO:tasks.python:Running python on role host.a host ubuntu@smithi155.front.sepia.ceph.com 2024-02-19T20:56:51.988 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2024-02-19T20:56:51.988 DEBUG:teuthology.orchestra.run.smithi155:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-02-19T20:56:53.085 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:52 smithi155 bash[14250]: cluster 2024-02-19T20:56:51.477764+0000 mgr.smithi155.pwytll (mgr.14180) 313 : cluster [DBG] pgmap v285: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-19T20:56:53.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:52 smithi160 bash[18819]: cluster 2024-02-19T20:56:51.477764+0000 mgr.smithi155.pwytll (mgr.14180) 313 : cluster [DBG] pgmap v285: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-19T20:56:54.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:53 smithi160 bash[18819]: cluster 2024-02-19T20:56:52.894496+0000 mon.smithi155 (mon.0) 709 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-19T20:56:54.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:53 smithi160 bash[18819]: audit 2024-02-19T20:56:52.896557+0000 mon.smithi155 (mon.0) 710 : audit [INF] from='client.? 172.21.15.155:0/3937333518' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-19T20:56:54.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:53 smithi160 bash[18819]: cluster 2024-02-19T20:56:53.478499+0000 mgr.smithi155.pwytll (mgr.14180) 314 : cluster [DBG] pgmap v287: 193 pgs: 32 unknown, 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 204 B/s wr, 1 op/s 2024-02-19T20:56:54.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:53 smithi155 bash[14250]: cluster 2024-02-19T20:56:52.894496+0000 mon.smithi155 (mon.0) 709 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-19T20:56:54.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:53 smithi155 bash[14250]: audit 2024-02-19T20:56:52.896557+0000 mon.smithi155 (mon.0) 710 : audit [INF] from='client.? 172.21.15.155:0/3937333518' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-19T20:56:54.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:53 smithi155 bash[14250]: cluster 2024-02-19T20:56:53.478499+0000 mgr.smithi155.pwytll (mgr.14180) 314 : cluster [DBG] pgmap v287: 193 pgs: 32 unknown, 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 204 B/s wr, 1 op/s 2024-02-19T20:56:55.155 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:54 smithi160 bash[18819]: audit 2024-02-19T20:56:53.902957+0000 mon.smithi155 (mon.0) 711 : audit [INF] from='client.? 172.21.15.155:0/3937333518' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-19T20:56:55.156 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:54 smithi160 bash[18819]: cluster 2024-02-19T20:56:53.903199+0000 mon.smithi155 (mon.0) 712 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-19T20:56:55.156 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:54 smithi160 bash[18819]: audit 2024-02-19T20:56:53.909793+0000 mon.smithi155 (mon.0) 713 : audit [INF] from='client.? 172.21.15.155:0/3937333518' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T20:56:55.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:54 smithi155 bash[14250]: audit 2024-02-19T20:56:53.902957+0000 mon.smithi155 (mon.0) 711 : audit [INF] from='client.? 172.21.15.155:0/3937333518' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-19T20:56:55.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:54 smithi155 bash[14250]: cluster 2024-02-19T20:56:53.903199+0000 mon.smithi155 (mon.0) 712 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-19T20:56:55.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:54 smithi155 bash[14250]: audit 2024-02-19T20:56:53.909793+0000 mon.smithi155 (mon.0) 713 : audit [INF] from='client.? 172.21.15.155:0/3937333518' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T20:56:56.153 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:55 smithi160 bash[18819]: audit 2024-02-19T20:56:54.905488+0000 mon.smithi155 (mon.0) 714 : audit [INF] from='client.? 172.21.15.155:0/3937333518' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T20:56:56.153 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:55 smithi160 bash[18819]: cluster 2024-02-19T20:56:54.905588+0000 mon.smithi155 (mon.0) 715 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-19T20:56:56.153 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:55 smithi160 bash[18819]: cluster 2024-02-19T20:56:55.479200+0000 mgr.smithi155.pwytll (mgr.14180) 315 : cluster [DBG] pgmap v290: 193 pgs: 26 unknown, 167 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.8 KiB/s rd, 341 B/s wr, 2 op/s 2024-02-19T20:56:56.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:55 smithi155 bash[14250]: audit 2024-02-19T20:56:54.905488+0000 mon.smithi155 (mon.0) 714 : audit [INF] from='client.? 172.21.15.155:0/3937333518' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T20:56:56.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:55 smithi155 bash[14250]: cluster 2024-02-19T20:56:54.905588+0000 mon.smithi155 (mon.0) 715 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-19T20:56:56.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:55 smithi155 bash[14250]: cluster 2024-02-19T20:56:55.479200+0000 mgr.smithi155.pwytll (mgr.14180) 315 : cluster [DBG] pgmap v290: 193 pgs: 26 unknown, 167 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.8 KiB/s rd, 341 B/s wr, 2 op/s 2024-02-19T20:56:56.978 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-19T20:56:56.988 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi155.front.sepia.ceph.com 2024-02-19T20:56:56.988 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-02-19T20:56:57.181 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:56 smithi155 bash[14250]: cluster 2024-02-19T20:56:55.920510+0000 mon.smithi155 (mon.0) 716 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-02-19T20:56:57.182 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:56 smithi155 bash[14250]: audit 2024-02-19T20:56:55.926464+0000 mon.smithi155 (mon.0) 717 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-19T20:56:57.182 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:56 smithi155 bash[14250]: audit 2024-02-19T20:56:56.454109+0000 mon.smithi155 (mon.0) 718 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:57.182 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:56 smithi155 bash[14250]: audit 2024-02-19T20:56:56.456834+0000 mon.smithi155 (mon.0) 719 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:56:57.270 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:56 smithi160 bash[18819]: cluster 2024-02-19T20:56:55.920510+0000 mon.smithi155 (mon.0) 716 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-02-19T20:56:57.270 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:56 smithi160 bash[18819]: audit 2024-02-19T20:56:55.926464+0000 mon.smithi155 (mon.0) 717 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-19T20:56:57.270 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:56 smithi160 bash[18819]: audit 2024-02-19T20:56:56.454109+0000 mon.smithi155 (mon.0) 718 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:57.270 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:56 smithi160 bash[18819]: audit 2024-02-19T20:56:56.456834+0000 mon.smithi155 (mon.0) 719 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:56:57.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:57 smithi155 bash[14250]: audit 2024-02-19T20:56:56.926347+0000 mon.smithi155 (mon.0) 720 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-19T20:56:57.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:57 smithi155 bash[14250]: cluster 2024-02-19T20:56:56.926581+0000 mon.smithi155 (mon.0) 721 : cluster [DBG] osdmap e62: 8 total, 8 up, 8 in 2024-02-19T20:56:57.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:57 smithi155 bash[14250]: audit 2024-02-19T20:56:57.451369+0000 mon.smithi155 (mon.0) 722 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:57.994 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:57 smithi155 bash[14250]: cluster 2024-02-19T20:56:57.479753+0000 mgr.smithi155.pwytll (mgr.14180) 316 : cluster [DBG] pgmap v293: 225 pgs: 10 creating+peering, 34 unknown, 181 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 255 B/s wr, 2 op/s 2024-02-19T20:56:58.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:57 smithi160 bash[18819]: audit 2024-02-19T20:56:56.926347+0000 mon.smithi155 (mon.0) 720 : audit [INF] from='client.? 172.21.15.155:0/1603568809' entity='client.rgw.foorgw.smithi155.ypxdtj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-19T20:56:58.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:57 smithi160 bash[18819]: cluster 2024-02-19T20:56:56.926581+0000 mon.smithi155 (mon.0) 721 : cluster [DBG] osdmap e62: 8 total, 8 up, 8 in 2024-02-19T20:56:58.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:57 smithi160 bash[18819]: audit 2024-02-19T20:56:57.451369+0000 mon.smithi155 (mon.0) 722 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:56:58.406 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:57 smithi160 bash[18819]: cluster 2024-02-19T20:56:57.479753+0000 mgr.smithi155.pwytll (mgr.14180) 316 : cluster [DBG] pgmap v293: 225 pgs: 10 creating+peering, 34 unknown, 181 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 255 B/s wr, 2 op/s 2024-02-19T20:56:59.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:58 smithi155 bash[14250]: cluster 2024-02-19T20:56:57.939153+0000 mon.smithi155 (mon.0) 723 : cluster [DBG] osdmap e63: 8 total, 8 up, 8 in 2024-02-19T20:56:59.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:58 smithi160 bash[18819]: cluster 2024-02-19T20:56:57.939153+0000 mon.smithi155 (mon.0) 723 : cluster [DBG] osdmap e63: 8 total, 8 up, 8 in 2024-02-19T20:57:00.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:56:59 smithi155 bash[14250]: cluster 2024-02-19T20:56:59.480232+0000 mgr.smithi155.pwytll (mgr.14180) 317 : cluster [DBG] pgmap v295: 225 pgs: 10 creating+peering, 8 unknown, 207 active+clean; 6.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 1.7 KiB/s wr, 9 op/s 2024-02-19T20:57:00.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:56:59 smithi160 bash[18819]: cluster 2024-02-19T20:56:59.480232+0000 mgr.smithi155.pwytll (mgr.14180) 317 : cluster [DBG] pgmap v295: 225 pgs: 10 creating+peering, 8 unknown, 207 active+clean; 6.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 1.7 KiB/s wr, 9 op/s 2024-02-19T20:57:00.616 INFO:teuthology.orchestra.run.smithi155.stdout:{ 2024-02-19T20:57:00.616 INFO:teuthology.orchestra.run.smithi155.stdout: "bind": "/foouser", 2024-02-19T20:57:00.616 INFO:teuthology.orchestra.run.smithi155.stdout: "path": "/", 2024-02-19T20:57:00.617 INFO:teuthology.orchestra.run.smithi155.stdout: "cluster": "foo", 2024-02-19T20:57:00.617 INFO:teuthology.orchestra.run.smithi155.stdout: "mode": "RW", 2024-02-19T20:57:00.617 INFO:teuthology.orchestra.run.smithi155.stdout: "squash": "none" 2024-02-19T20:57:00.617 INFO:teuthology.orchestra.run.smithi155.stdout:} 2024-02-19T20:57:01.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:00 smithi155 bash[14250]: audit 2024-02-19T20:57:00.428439+0000 mgr.smithi155.pwytll (mgr.14180) 318 : audit [DBG] from='client.14580 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:57:01.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:00 smithi160 bash[18819]: audit 2024-02-19T20:57:00.428439+0000 mgr.smithi155.pwytll (mgr.14180) 318 : audit [DBG] from='client.14580 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T20:57:01.415 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-19T20:57:01.425 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-02-19T20:57:01.425 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T20:57:02.244 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:01 smithi155 bash[14250]: cluster 2024-02-19T20:57:01.481690+0000 mgr.smithi155.pwytll (mgr.14180) 319 : cluster [DBG] pgmap v296: 225 pgs: 10 creating+peering, 215 active+clean; 6.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.8 KiB/s rd, 1.3 KiB/s wr, 7 op/s 2024-02-19T20:57:02.405 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:01 smithi160 bash[18819]: cluster 2024-02-19T20:57:01.481690+0000 mgr.smithi155.pwytll (mgr.14180) 319 : cluster [DBG] pgmap v296: 225 pgs: 10 creating+peering, 215 active+clean; 6.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.8 KiB/s rd, 1.3 KiB/s wr, 7 op/s 2024-02-19T20:57:03.494 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:03 smithi155 bash[14250]: audit 2024-02-19T20:57:02.226058+0000 mon.smithi155 (mon.0) 724 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:03.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:03 smithi160 bash[18819]: audit 2024-02-19T20:57:02.226058+0000 mon.smithi155 (mon.0) 724 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:04.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:04 smithi160 bash[18819]: audit 2024-02-19T20:57:03.358552+0000 mon.smithi155 (mon.0) 725 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:04.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:04 smithi160 bash[18819]: audit 2024-02-19T20:57:03.360442+0000 mon.smithi155 (mon.0) 726 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:57:04.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:04 smithi160 bash[18819]: audit 2024-02-19T20:57:03.361989+0000 mon.smithi155 (mon.0) 727 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:57:04.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:04 smithi160 bash[18819]: cephadm 2024-02-19T20:57:03.368148+0000 mgr.smithi155.pwytll (mgr.14180) 320 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-19T20:57:04.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:04 smithi160 bash[18819]: cluster 2024-02-19T20:57:03.483029+0000 mgr.smithi155.pwytll (mgr.14180) 321 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.7 KiB/s rd, 1.2 KiB/s wr, 17 op/s 2024-02-19T20:57:04.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:04 smithi160 bash[18819]: audit 2024-02-19T20:57:03.779574+0000 mon.smithi155 (mon.0) 728 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:04.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:04 smithi160 bash[18819]: audit 2024-02-19T20:57:03.788681+0000 mon.smithi155 (mon.0) 729 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:04.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:04 smithi160 bash[18819]: audit 2024-02-19T20:57:03.797322+0000 mon.smithi155 (mon.0) 730 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:04.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:04 smithi160 bash[18819]: audit 2024-02-19T20:57:03.807167+0000 mon.smithi155 (mon.0) 731 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:57:04.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:04 smithi160 bash[18819]: audit 2024-02-19T20:57:03.822183+0000 mon.smithi155 (mon.0) 732 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:04 smithi155 bash[14250]: audit 2024-02-19T20:57:03.358552+0000 mon.smithi155 (mon.0) 725 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:04 smithi155 bash[14250]: audit 2024-02-19T20:57:03.360442+0000 mon.smithi155 (mon.0) 726 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T20:57:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:04 smithi155 bash[14250]: audit 2024-02-19T20:57:03.361989+0000 mon.smithi155 (mon.0) 727 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T20:57:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:04 smithi155 bash[14250]: cephadm 2024-02-19T20:57:03.368148+0000 mgr.smithi155.pwytll (mgr.14180) 320 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-19T20:57:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:04 smithi155 bash[14250]: cluster 2024-02-19T20:57:03.483029+0000 mgr.smithi155.pwytll (mgr.14180) 321 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.7 KiB/s rd, 1.2 KiB/s wr, 17 op/s 2024-02-19T20:57:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:04 smithi155 bash[14250]: audit 2024-02-19T20:57:03.779574+0000 mon.smithi155 (mon.0) 728 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:04 smithi155 bash[14250]: audit 2024-02-19T20:57:03.788681+0000 mon.smithi155 (mon.0) 729 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:04 smithi155 bash[14250]: audit 2024-02-19T20:57:03.797322+0000 mon.smithi155 (mon.0) 730 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:04 smithi155 bash[14250]: audit 2024-02-19T20:57:03.807167+0000 mon.smithi155 (mon.0) 731 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T20:57:04.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:04 smithi155 bash[14250]: audit 2024-02-19T20:57:03.822183+0000 mon.smithi155 (mon.0) 732 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:05.276 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:57:05.276 INFO:teuthology.orchestra.run.smithi155.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T20:47:39.977512Z", "last_refresh": "2024-02-19T20:57:03.346971Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T20:47:31.724170Z", "last_refresh": "2024-02-19T20:57:02.214651Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T20:47:35.644034Z", "last_refresh": "2024-02-19T20:57:03.347171Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T20:55:53.729415Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.155/16"}, "status": {"created": "2024-02-19T20:55:53.724908Z", "last_refresh": "2024-02-19T20:57:02.215968Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.155/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T20:47:29.772404Z", "last_refresh": "2024-02-19T20:57:02.215014Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T20:49:15.877693Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi155:172.21.15.155=smithi155", "smithi160:172.21.15.160=smithi160"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T20:49:15.871333Z", "last_refresh": "2024-02-19T20:57:02.215183Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T20:55:53.723300Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T20:55:53.719259Z", "last_refresh": "2024-02-19T20:57:03.347955Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T20:47:37.576678Z", "last_refresh": "2024-02-19T20:57:02.215327Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T20:49:54.063837Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T20:49:54.057058Z", "last_refresh": "2024-02-19T20:57:02.215436Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T20:47:33.619995Z", "last_refresh": "2024-02-19T20:57:03.347368Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T20:55:48.148064Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T20:56:04.101707Z", "last_refresh": "2024-02-19T20:57:02.215840Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T20:57:05.539 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:05 smithi155 bash[14250]: cephadm 2024-02-19T20:57:03.825339+0000 mgr.smithi155.pwytll (mgr.14180) 322 : cephadm [INF] Reconfiguring prometheus.smithi155 (dependencies changed)... 2024-02-19T20:57:05.539 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:05 smithi155 bash[14250]: cephadm 2024-02-19T20:57:03.838788+0000 mgr.smithi155.pwytll (mgr.14180) 323 : cephadm [INF] Reconfiguring daemon prometheus.smithi155 on smithi155 2024-02-19T20:57:05.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:05 smithi160 bash[18819]: cephadm 2024-02-19T20:57:03.825339+0000 mgr.smithi155.pwytll (mgr.14180) 322 : cephadm [INF] Reconfiguring prometheus.smithi155 (dependencies changed)... 2024-02-19T20:57:05.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:05 smithi160 bash[18819]: cephadm 2024-02-19T20:57:03.838788+0000 mgr.smithi155.pwytll (mgr.14180) 323 : cephadm [INF] Reconfiguring daemon prometheus.smithi155 on smithi155 2024-02-19T20:57:06.522 INFO:tasks.cephadm:nfs.foo has 1/1 2024-02-19T20:57:06.522 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-19T20:57:06.532 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-02-19T20:57:06.532 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T20:57:06.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:06 smithi160 bash[18819]: audit 2024-02-19T20:57:05.285674+0000 mgr.smithi155.pwytll (mgr.14180) 324 : audit [DBG] from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T20:57:06.655 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:06 smithi160 bash[18819]: cluster 2024-02-19T20:57:05.484162+0000 mgr.smithi155.pwytll (mgr.14180) 325 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.6 KiB/s rd, 1.2 KiB/s wr, 17 op/s 2024-02-19T20:57:06.726 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:06 smithi155 bash[14250]: audit 2024-02-19T20:57:05.285674+0000 mgr.smithi155.pwytll (mgr.14180) 324 : audit [DBG] from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T20:57:06.726 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:06 smithi155 bash[14250]: cluster 2024-02-19T20:57:05.484162+0000 mgr.smithi155.pwytll (mgr.14180) 325 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.6 KiB/s rd, 1.2 KiB/s wr, 17 op/s 2024-02-19T20:57:08.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:08 smithi155 bash[14250]: cluster 2024-02-19T20:57:07.485722+0000 mgr.smithi155.pwytll (mgr.14180) 326 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.1 KiB/s wr, 18 op/s 2024-02-19T20:57:08.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:08 smithi160 bash[18819]: cluster 2024-02-19T20:57:07.485722+0000 mgr.smithi155.pwytll (mgr.14180) 326 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.1 KiB/s wr, 18 op/s 2024-02-19T20:57:10.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:10 smithi160 bash[18819]: cluster 2024-02-19T20:57:09.486607+0000 mgr.smithi155.pwytll (mgr.14180) 327 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.7 KiB/s rd, 354 B/s wr, 13 op/s 2024-02-19T20:57:10.997 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:10 smithi155 bash[14250]: cluster 2024-02-19T20:57:09.486607+0000 mgr.smithi155.pwytll (mgr.14180) 327 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.7 KiB/s rd, 354 B/s wr, 13 op/s 2024-02-19T20:57:11.772 INFO:teuthology.orchestra.run.smithi155.stdout: 2024-02-19T20:57:11.772 INFO:teuthology.orchestra.run.smithi155.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T20:47:39.977512Z", "last_refresh": "2024-02-19T20:57:03.346971Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T20:47:31.724170Z", "last_refresh": "2024-02-19T20:57:02.214651Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T20:47:35.644034Z", "last_refresh": "2024-02-19T20:57:03.347171Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T20:55:53.729415Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.155/16"}, "status": {"created": "2024-02-19T20:55:53.724908Z", "last_refresh": "2024-02-19T20:57:02.215968Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.155/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T20:47:29.772404Z", "last_refresh": "2024-02-19T20:57:02.215014Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T20:49:15.877693Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi155:172.21.15.155=smithi155", "smithi160:172.21.15.160=smithi160"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T20:49:15.871333Z", "last_refresh": "2024-02-19T20:57:02.215183Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T20:55:53.723300Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T20:55:53.719259Z", "last_refresh": "2024-02-19T20:57:03.347955Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T20:47:37.576678Z", "last_refresh": "2024-02-19T20:57:02.215327Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T20:49:54.063837Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T20:49:54.057058Z", "last_refresh": "2024-02-19T20:57:02.215436Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T20:47:33.619995Z", "ports": [9095], "running": 0, "size": 1}}, {"events": ["2024-02-19T20:55:48.148064Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T20:56:04.101707Z", "last_refresh": "2024-02-19T20:57:02.215840Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T20:57:12.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:12 smithi155 bash[14250]: audit 2024-02-19T20:57:11.377984+0000 mon.smithi155 (mon.0) 733 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:12.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:12 smithi155 bash[14250]: audit 2024-02-19T20:57:11.384832+0000 mon.smithi155 (mon.0) 734 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T20:57:12.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:12 smithi155 bash[14250]: audit 2024-02-19T20:57:11.385457+0000 mgr.smithi155.pwytll (mgr.14180) 328 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T20:57:12.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:12 smithi155 bash[14250]: audit 2024-02-19T20:57:11.391148+0000 mon.smithi155 (mon.0) 735 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:57:12.495 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:12 smithi155 bash[14250]: cluster 2024-02-19T20:57:11.487369+0000 mgr.smithi155.pwytll (mgr.14180) 329 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.4 KiB/s rd, 341 B/s wr, 13 op/s 2024-02-19T20:57:12.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:12 smithi160 bash[18819]: audit 2024-02-19T20:57:11.377984+0000 mon.smithi155 (mon.0) 733 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:12.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:12 smithi160 bash[18819]: audit 2024-02-19T20:57:11.384832+0000 mon.smithi155 (mon.0) 734 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T20:57:12.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:12 smithi160 bash[18819]: audit 2024-02-19T20:57:11.385457+0000 mgr.smithi155.pwytll (mgr.14180) 328 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T20:57:12.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:12 smithi160 bash[18819]: audit 2024-02-19T20:57:11.391148+0000 mon.smithi155 (mon.0) 735 : audit [DBG] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T20:57:12.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:12 smithi160 bash[18819]: cluster 2024-02-19T20:57:11.487369+0000 mgr.smithi155.pwytll (mgr.14180) 329 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.4 KiB/s rd, 341 B/s wr, 13 op/s 2024-02-19T20:57:12.940 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-02-19T20:57:12.940 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-19T20:57:12.952 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi155.front.sepia.ceph.com 2024-02-19T20:57:12.952 DEBUG:teuthology.orchestra.run.smithi155:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-02-19T20:57:12.964 INFO:teuthology.orchestra.run.smithi155.stderr:+ mkdir /mnt/foo 2024-02-19T20:57:12.973 DEBUG:teuthology.orchestra.run.smithi155:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-02-19T20:57:13.028 INFO:teuthology.orchestra.run.smithi155.stderr:+ sleep 5 2024-02-19T20:57:13.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:13 smithi160 bash[18819]: audit 2024-02-19T20:57:11.779924+0000 mgr.smithi155.pwytll (mgr.14180) 330 : audit [DBG] from='client.14638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T20:57:13.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:13 smithi155 bash[14250]: audit 2024-02-19T20:57:11.779924+0000 mgr.smithi155.pwytll (mgr.14180) 330 : audit [DBG] from='client.14638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T20:57:14.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:14 smithi160 bash[18819]: cluster 2024-02-19T20:57:13.488700+0000 mgr.smithi155.pwytll (mgr.14180) 331 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.2 KiB/s rd, 341 B/s wr, 12 op/s 2024-02-19T20:57:14.745 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:14 smithi155 bash[14250]: cluster 2024-02-19T20:57:13.488700+0000 mgr.smithi155.pwytll (mgr.14180) 331 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.2 KiB/s rd, 341 B/s wr, 12 op/s 2024-02-19T20:57:16.906 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:16 smithi160 bash[18819]: cluster 2024-02-19T20:57:15.489683+0000 mgr.smithi155.pwytll (mgr.14180) 332 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.7 KiB/s rd, 170 B/s wr, 4 op/s 2024-02-19T20:57:16.995 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:16 smithi155 bash[14250]: cluster 2024-02-19T20:57:15.489683+0000 mgr.smithi155.pwytll (mgr.14180) 332 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.7 KiB/s rd, 170 B/s wr, 4 op/s 2024-02-19T20:57:18.031 DEBUG:teuthology.orchestra.run.smithi155:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.155:/foouser /mnt/foo' 2024-02-19T20:57:18.092 INFO:teuthology.orchestra.run.smithi155.stderr:+ mount -t nfs 10.0.31.155:/foouser /mnt/foo 2024-02-19T20:57:18.295 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:18 smithi155 bash[14250]: audit 2024-02-19T20:57:17.248752+0000 mon.smithi155 (mon.0) 736 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:18.295 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:18 smithi155 bash[14250]: cluster 2024-02-19T20:57:17.490997+0000 mgr.smithi155.pwytll (mgr.14180) 333 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 85 B/s wr, 3 op/s 2024-02-19T20:57:18.499 INFO:teuthology.orchestra.run.smithi155.stderr:mount.nfs: Protocol not supported 2024-02-19T20:57:18.501 DEBUG:teuthology.orchestra.run:got remote process result: 32 2024-02-19T20:57:18.501 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_81bd20d634209c7cb82c18be12b4b5a05643ebf1/qa/tasks/vip.py", line 60, in exec remote.run( File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi155 with status 32: "sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.155:/foouser /mnt/foo'" 2024-02-19T20:57:18.777 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=c2eaf285a5f54286892bd8e22691a578 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_81bd20d634209c7cb82c18be12b4b5a05643ebf1/qa/tasks/vip.py", line 60, in exec remote.run( File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi155 with status 32: "sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.155:/foouser /mnt/foo'" 2024-02-19T20:57:18.781 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-02-19T20:57:18.795 INFO:tasks.vip:Removing 10.0.15.155 (and any VIPs) on smithi155.front.sepia.ceph.com iface enp3s0f1... 2024-02-19T20:57:18.796 DEBUG:teuthology.orchestra.run.smithi155:> sudo ip addr del 10.0.15.155/16 dev enp3s0f1 2024-02-19T20:57:18.800 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:18 smithi160 bash[18819]: audit 2024-02-19T20:57:17.248752+0000 mon.smithi155 (mon.0) 736 : audit [INF] from='mgr.14180 172.21.15.155:0/3876324905' entity='mgr.smithi155.pwytll' 2024-02-19T20:57:18.801 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:18 smithi160 bash[18819]: cluster 2024-02-19T20:57:17.490997+0000 mgr.smithi155.pwytll (mgr.14180) 333 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 85 B/s wr, 3 op/s 2024-02-19T20:57:18.816 DEBUG:teuthology.orchestra.run.smithi155:> sudo ip addr del 10.0.31.155/16 dev enp3s0f1 2024-02-19T20:57:18.880 INFO:tasks.vip:Removing 10.0.15.160 (and any VIPs) on smithi160.front.sepia.ceph.com iface enp3s0f1... 2024-02-19T20:57:18.880 DEBUG:teuthology.orchestra.run.smithi160:> sudo ip addr del 10.0.15.160/16 dev enp3s0f1 2024-02-19T20:57:18.898 DEBUG:teuthology.orchestra.run.smithi160:> sudo ip addr del 10.0.31.155/16 dev enp3s0f1 2024-02-19T20:57:18.955 INFO:teuthology.orchestra.run.smithi160.stderr:RTNETLINK answers: Cannot assign requested address 2024-02-19T20:57:18.955 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-02-19T20:57:18.956 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-02-19T20:57:18.967 INFO:tasks.cephadm:Teardown begin 2024-02-19T20:57:18.967 DEBUG:teuthology.orchestra.run.smithi155:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-19T20:57:18.979 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-19T20:57:19.012 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-02-19T20:57:19.012 DEBUG:teuthology.orchestra.run.smithi155:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-19T20:57:19.028 DEBUG:teuthology.orchestra.run.smithi160:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-19T20:57:19.064 INFO:tasks.cephadm:Stopping all daemons... 2024-02-19T20:57:19.064 INFO:tasks.cephadm.mon.smithi155:Stopping mon.smithi155... 2024-02-19T20:57:19.064 DEBUG:teuthology.orchestra.run.smithi155:> sudo systemctl stop ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mon.smithi155 2024-02-19T20:57:19.382 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:19 smithi155 systemd[1]: Stopping Ceph mon.smithi155 for d8f13c04-cf67-11ee-95bb-87774f69a715... 2024-02-19T20:57:19.382 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:19 smithi155 bash[65195]: Error response from daemon: No such container: ceph-d8f13c04-cf67-11ee-95bb-87774f69a715-mon.smithi155 2024-02-19T20:57:19.382 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:19 smithi155 bash[14250]: debug 2024-02-19T20:57:19.255+0000 7f9fef0bb700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi155 -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-02-19T20:57:19.382 INFO:journalctl@ceph.mon.smithi155.smithi155.stdout:Feb 19 20:57:19 smithi155 bash[14250]: debug 2024-02-19T20:57:19.255+0000 7f9fef0bb700 -1 mon.smithi155@0(leader) e2 *** Got Signal Terminated *** 2024-02-19T20:57:20.156 DEBUG:teuthology.orchestra.run.smithi155:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mon.smithi155.service' 2024-02-19T20:57:20.231 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-19T20:57:20.231 INFO:tasks.cephadm.mon.smithi155:Stopped mon.smithi155 2024-02-19T20:57:20.231 INFO:tasks.cephadm.mon.smithi160:Stopping mon.smithi160... 2024-02-19T20:57:20.231 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mon.smithi160 2024-02-19T20:57:20.656 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:20 smithi160 systemd[1]: Stopping Ceph mon.smithi160 for d8f13c04-cf67-11ee-95bb-87774f69a715... 2024-02-19T20:57:20.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:20 smithi160 bash[40892]: Error response from daemon: No such container: ceph-d8f13c04-cf67-11ee-95bb-87774f69a715-mon.smithi160 2024-02-19T20:57:20.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:20 smithi160 bash[18819]: debug 2024-02-19T20:57:20.440+0000 7f4880378700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi160 -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-02-19T20:57:20.657 INFO:journalctl@ceph.mon.smithi160.smithi160.stdout:Feb 19 20:57:20 smithi160 bash[18819]: debug 2024-02-19T20:57:20.440+0000 7f4880378700 -1 mon.smithi160@1(peon) e2 *** Got Signal Terminated *** 2024-02-19T20:57:21.591 DEBUG:teuthology.orchestra.run.smithi160:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d8f13c04-cf67-11ee-95bb-87774f69a715@mon.smithi160.service' 2024-02-19T20:57:21.635 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-19T20:57:21.636 INFO:tasks.cephadm.mon.smithi160:Stopped mon.smithi160 2024-02-19T20:57:21.636 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 --force --keep-logs 2024-02-19T20:58:32.829 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 --force --keep-logs 2024-02-19T20:59:28.870 DEBUG:teuthology.orchestra.run.smithi155:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-19T20:59:28.889 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-19T20:59:28.903 INFO:tasks.cephadm:Archiving crash dumps... 2024-02-19T20:59:28.905 DEBUG:teuthology.misc:Transferring archived files from smithi155:/var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724/remote/ubuntu@smithi155.front.sepia.ceph.com/crash 2024-02-19T20:59:28.906 DEBUG:teuthology.orchestra.run.smithi155:> sudo tar c -f - -C /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/crash -- . 2024-02-19T20:59:28.939 INFO:teuthology.orchestra.run.smithi155.stderr:tar: /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/crash: Cannot open: No such file or directory 2024-02-19T20:59:28.939 INFO:teuthology.orchestra.run.smithi155.stderr:tar: Error is not recoverable: exiting now 2024-02-19T20:59:28.941 DEBUG:teuthology.misc:Transferring archived files from smithi160:/var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724/remote/ubuntu@smithi160.front.sepia.ceph.com/crash 2024-02-19T20:59:28.942 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/crash -- . 2024-02-19T20:59:28.963 INFO:teuthology.orchestra.run.smithi160.stderr:tar: /var/lib/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/crash: Cannot open: No such file or directory 2024-02-19T20:59:28.963 INFO:teuthology.orchestra.run.smithi160.stderr:tar: Error is not recoverable: exiting now 2024-02-19T20:59:28.964 INFO:tasks.cephadm:Checking cluster log for badness... 2024-02-19T20:59:28.965 DEBUG:teuthology.orchestra.run.smithi155:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-02-19T20:59:28.999 INFO:tasks.cephadm:Compressing logs... 2024-02-19T20:59:28.999 DEBUG:teuthology.orchestra.run.smithi155:> 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-02-19T20:59:29.048 DEBUG:teuthology.orchestra.run.smithi160:> 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-02-19T20:59:29.061 INFO:teuthology.orchestra.run.smithi155.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-19T20:59:29.063 INFO:teuthology.orchestra.run.smithi155.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.5.log 2024-02-19T20:59:29.064 INFO:teuthology.orchestra.run.smithi160.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-19T20:59:29.064 INFO:teuthology.orchestra.run.smithi155.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.audit.log 2024-02-19T20:59:29.065 INFO:teuthology.orchestra.run.smithi155.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.1.log 2024-02-19T20:59:29.065 INFO:teuthology.orchestra.run.smithi155.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.5.log: /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mgr.smithi155.pwytll.log 2024-02-19T20:59:29.065 INFO:teuthology.orchestra.run.smithi155.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.log 2024-02-19T20:59:29.066 INFO:teuthology.orchestra.run.smithi155.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mgr.smithi155.pwytll.log: gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.cephadm.log 2024-02-19T20:59:29.067 INFO:teuthology.orchestra.run.smithi155.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.log: gzip 90.9%-5 -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.audit.log.gz--verbose -- 2024-02-19T20:59:29.067 INFO:teuthology.orchestra.run.smithi155.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi155.ypxdtj.log 2024-02-19T20:59:29.067 INFO:teuthology.orchestra.run.smithi155.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.3.log 2024-02-19T20:59:29.069 INFO:teuthology.orchestra.run.smithi155.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.cephadm.log: gzip /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi155.ypxdtj.log: -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-volume.log 2024-02-19T20:59:29.069 INFO:teuthology.orchestra.run.smithi155.stderr: 82.5% 63.2% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi155.ypxdtj.log.gz 2024-02-19T20:59:29.070 INFO:teuthology.orchestra.run.smithi155.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.3.log: -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.cephadm.log.gz 2024-02-19T20:59:29.070 INFO:teuthology.orchestra.run.smithi155.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.7.log 2024-02-19T20:59:29.070 INFO:teuthology.orchestra.run.smithi155.stderr: 88.0% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.log.gz 2024-02-19T20:59:29.070 INFO:teuthology.orchestra.run.smithi155.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mon.smithi155.log 2024-02-19T20:59:29.070 INFO:teuthology.orchestra.run.smithi155.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-volume.log: /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-19T20:59:29.078 INFO:teuthology.orchestra.run.smithi155.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mon.smithi155.log: /var/log/ceph/cephadm.log: 92.6% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-volume.log.gz 2024-02-19T20:59:29.084 INFO:teuthology.orchestra.run.smithi155.stderr: 91.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-19T20:59:29.085 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mon.smithi160.log 2024-02-19T20:59:29.086 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi160.kuvupj.log 2024-02-19T20:59:29.087 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.audit.log 2024-02-19T20:59:29.087 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mon.smithi160.log: gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.6.log 2024-02-19T20:59:29.087 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi160.kuvupj.log: /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mgr.smithi160.petcyg.log 2024-02-19T20:59:29.088 INFO:teuthology.orchestra.run.smithi160.stderr: 61.4% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi160.kuvupj.log.gz 2024-02-19T20:59:29.088 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.log 2024-02-19T20:59:29.088 INFO:teuthology.orchestra.run.smithi160.stderr: 91.2% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.audit.log.gz 2024-02-19T20:59:29.089 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.cephadm.log 2024-02-19T20:59:29.089 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mgr.smithi160.petcyg.log: /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.log: gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.0.log 2024-02-19T20:59:29.090 INFO:teuthology.orchestra.run.smithi160.stderr: 88.1% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.log.gz 2024-02-19T20:59:29.090 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.4.log 2024-02-19T20:59:29.091 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.cephadm.log: /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-volume.log 2024-02-19T20:59:29.091 INFO:teuthology.orchestra.run.smithi160.stderr: 81.8% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph.cephadm.log.gz 2024-02-19T20:59:29.092 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.4.log: -- /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.2.log 2024-02-19T20:59:29.093 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-19T20:59:29.098 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.2.log: /var/log/ceph/cephadm.log: 92.2% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mgr.smithi160.petcyg.log.gz 2024-02-19T20:59:29.100 INFO:teuthology.orchestra.run.smithi160.stderr: 89.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-19T20:59:29.100 INFO:teuthology.orchestra.run.smithi160.stderr: 92.6% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-volume.log.gz 2024-02-19T20:59:29.164 INFO:teuthology.orchestra.run.smithi155.stderr: 88.8% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mgr.smithi155.pwytll.log.gz 2024-02-19T20:59:29.227 INFO:teuthology.orchestra.run.smithi160.stderr: 93.0% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mon.smithi160.log.gz 2024-02-19T20:59:29.255 INFO:teuthology.orchestra.run.smithi155.stderr: 93.5% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.1.log.gz 2024-02-19T20:59:29.328 INFO:teuthology.orchestra.run.smithi155.stderr: 93.5% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.7.log.gz 2024-02-19T20:59:29.331 INFO:teuthology.orchestra.run.smithi155.stderr: 93.5% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.5.log.gz 2024-02-19T20:59:29.340 INFO:teuthology.orchestra.run.smithi160.stderr: 93.5% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.0.log.gz 2024-02-19T20:59:29.357 INFO:teuthology.orchestra.run.smithi160.stderr: 93.4% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.2.log.gz 2024-02-19T20:59:29.388 INFO:teuthology.orchestra.run.smithi155.stderr: 93.6% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.3.log.gz 2024-02-19T20:59:29.403 INFO:teuthology.orchestra.run.smithi160.stderr: 93.5% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.4.log.gz 2024-02-19T20:59:29.403 INFO:teuthology.orchestra.run.smithi155.stderr: 91.1% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-mon.smithi155.log.gz 2024-02-19T20:59:29.405 INFO:teuthology.orchestra.run.smithi155.stderr: 2024-02-19T20:59:29.405 INFO:teuthology.orchestra.run.smithi155.stderr:real 0m0.354s 2024-02-19T20:59:29.405 INFO:teuthology.orchestra.run.smithi155.stderr:user 0m1.456s 2024-02-19T20:59:29.405 INFO:teuthology.orchestra.run.smithi155.stderr:sys 0m0.071s 2024-02-19T20:59:29.425 INFO:teuthology.orchestra.run.smithi160.stderr: 93.4% -- replaced with /var/log/ceph/d8f13c04-cf67-11ee-95bb-87774f69a715/ceph-osd.6.log.gz 2024-02-19T20:59:29.427 INFO:teuthology.orchestra.run.smithi160.stderr: 2024-02-19T20:59:29.427 INFO:teuthology.orchestra.run.smithi160.stderr:real 0m0.374s 2024-02-19T20:59:29.427 INFO:teuthology.orchestra.run.smithi160.stderr:user 0m1.275s 2024-02-19T20:59:29.427 INFO:teuthology.orchestra.run.smithi160.stderr:sys 0m0.093s 2024-02-19T20:59:29.428 INFO:tasks.cephadm:Archiving logs... 2024-02-19T20:59:29.428 DEBUG:teuthology.misc:Transferring archived files from smithi155:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724/remote/ubuntu@smithi155.front.sepia.ceph.com/log 2024-02-19T20:59:29.429 DEBUG:teuthology.orchestra.run.smithi155:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-19T20:59:29.645 DEBUG:teuthology.misc:Transferring archived files from smithi160:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724/remote/ubuntu@smithi160.front.sepia.ceph.com/log 2024-02-19T20:59:29.645 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-19T20:59:29.812 INFO:tasks.cephadm:Removing cluster... 2024-02-19T20:59:29.812 DEBUG:teuthology.orchestra.run.smithi155:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 --force 2024-02-19T20:59:31.178 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d8f13c04-cf67-11ee-95bb-87774f69a715 --force 2024-02-19T20:59:32.548 INFO:tasks.cephadm:Removing cephadm ... 2024-02-19T20:59:32.548 DEBUG:teuthology.orchestra.run.smithi155:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-19T20:59:32.556 DEBUG:teuthology.orchestra.run.smithi160:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-19T20:59:32.562 INFO:tasks.cephadm:Teardown complete 2024-02-19T20:59:32.563 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-02-19T20:59:32.578 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi155:/dev/vg_nvme/lv_1... 2024-02-19T20:59:32.578 DEBUG:teuthology.orchestra.run.smithi155:> sudo nvme disconnect -n lv_1 2024-02-19T20:59:32.899 INFO:teuthology.orchestra.run.smithi155.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-19T20:59:32.900 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:59:32.901 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi155:/dev/vg_nvme/lv_2... 2024-02-19T20:59:32.901 DEBUG:teuthology.orchestra.run.smithi155:> sudo nvme disconnect -n lv_2 2024-02-19T20:59:33.174 INFO:teuthology.orchestra.run.smithi155.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-19T20:59:33.176 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:59:33.177 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi155:/dev/vg_nvme/lv_3... 2024-02-19T20:59:33.177 DEBUG:teuthology.orchestra.run.smithi155:> sudo nvme disconnect -n lv_3 2024-02-19T20:59:33.439 INFO:teuthology.orchestra.run.smithi155.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-19T20:59:33.440 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:59:33.441 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi155:/dev/vg_nvme/lv_4... 2024-02-19T20:59:33.441 DEBUG:teuthology.orchestra.run.smithi155:> sudo nvme disconnect -n lv_4 2024-02-19T20:59:33.742 INFO:teuthology.orchestra.run.smithi155.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-19T20:59:33.744 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:59:33.748 DEBUG:teuthology.orchestra.run.smithi155:> set -ex 2024-02-19T20:59:33.748 DEBUG:teuthology.orchestra.run.smithi155:> sudo dd of=/scratch_devs 2024-02-19T20:59:33.762 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi160:/dev/vg_nvme/lv_1... 2024-02-19T20:59:33.762 DEBUG:teuthology.orchestra.run.smithi160:> sudo nvme disconnect -n lv_1 2024-02-19T20:59:34.080 INFO:teuthology.orchestra.run.smithi160.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-19T20:59:34.081 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:59:34.082 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi160:/dev/vg_nvme/lv_2... 2024-02-19T20:59:34.082 DEBUG:teuthology.orchestra.run.smithi160:> sudo nvme disconnect -n lv_2 2024-02-19T20:59:34.372 INFO:teuthology.orchestra.run.smithi160.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-19T20:59:34.373 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:59:34.374 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi160:/dev/vg_nvme/lv_3... 2024-02-19T20:59:34.374 DEBUG:teuthology.orchestra.run.smithi160:> sudo nvme disconnect -n lv_3 2024-02-19T20:59:34.656 INFO:teuthology.orchestra.run.smithi160.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-19T20:59:34.657 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:59:34.657 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi160:/dev/vg_nvme/lv_4... 2024-02-19T20:59:34.658 DEBUG:teuthology.orchestra.run.smithi160:> sudo nvme disconnect -n lv_4 2024-02-19T20:59:34.964 INFO:teuthology.orchestra.run.smithi160.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-19T20:59:34.965 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:59:34.965 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-02-19T20:59:34.966 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/scratch_devs 2024-02-19T20:59:34.981 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-02-19T20:59:34.991 INFO:teuthology.task.clock:Checking final clock skew... 2024-02-19T20:59:34.991 DEBUG:teuthology.orchestra.run.smithi155:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-19T20:59:34.994 DEBUG:teuthology.orchestra.run.smithi160:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-19T20:59:35.010 INFO:teuthology.orchestra.run.smithi155.stdout: remote refid st t when poll reach delay offset jitter 2024-02-19T20:59:35.010 INFO:teuthology.orchestra.run.smithi155.stdout:============================================================================== 2024-02-19T20:59:35.010 INFO:teuthology.orchestra.run.smithi155.stdout:*hv01.front.sepi 44.4.53.2 2 u 56 64 377 0.083 0.074 0.516 2024-02-19T20:59:35.010 INFO:teuthology.orchestra.run.smithi155.stdout:+hv02.front.sepi 63.231.80.2 3 u 45 64 377 0.081 1.676 0.462 2024-02-19T20:59:35.010 INFO:teuthology.orchestra.run.smithi155.stdout:+hv03.front.sepi 74.6.168.72 3 u 51 64 377 0.078 0.558 0.562 2024-02-19T20:59:35.010 INFO:teuthology.orchestra.run.smithi155.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 0.000 0.000 2024-02-19T20:59:35.043 INFO:teuthology.orchestra.run.smithi160.stdout: remote refid st t when poll reach delay offset jitter 2024-02-19T20:59:35.043 INFO:teuthology.orchestra.run.smithi160.stdout:============================================================================== 2024-02-19T20:59:35.043 INFO:teuthology.orchestra.run.smithi160.stdout:*hv01.front.sepi 44.4.53.2 2 u 51 64 377 0.109 2.146 1.395 2024-02-19T20:59:35.044 INFO:teuthology.orchestra.run.smithi160.stdout:+hv02.front.sepi 63.231.80.2 3 u 44 64 377 0.102 3.544 1.715 2024-02-19T20:59:35.044 INFO:teuthology.orchestra.run.smithi160.stdout:+hv03.front.sepi 74.6.168.72 3 u 44 64 377 0.091 1.946 1.440 2024-02-19T20:59:35.044 INFO:teuthology.orchestra.run.smithi160.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 0.000 0.000 2024-02-19T20:59:35.045 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-02-19T20:59:35.057 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-02-19T20:59:35.058 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-02-19T20:59:35.069 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-02-19T20:59:35.079 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-02-19T20:59:35.088 INFO:teuthology.task.internal:Duration was 1173.417025 seconds 2024-02-19T20:59:35.089 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-02-19T20:59:35.100 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-02-19T20:59:35.100 DEBUG:teuthology.orchestra.run.smithi155:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-19T20:59:35.103 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-19T20:59:35.149 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-02-19T20:59:35.149 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi155.front.sepia.ceph.com 2024-02-19T20:59:35.150 DEBUG:teuthology.orchestra.run.smithi155:> 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-02-19T20:59:35.162 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi160.front.sepia.ceph.com 2024-02-19T20:59:35.163 DEBUG:teuthology.orchestra.run.smithi160:> 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-02-19T20:59:35.177 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-02-19T20:59:35.177 DEBUG:teuthology.orchestra.run.smithi155:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-19T20:59:35.208 DEBUG:teuthology.orchestra.run.smithi160:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-19T20:59:35.265 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-02-19T20:59:35.265 DEBUG:teuthology.orchestra.run.smithi155:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-19T20:59:35.267 DEBUG:teuthology.orchestra.run.smithi160:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-19T20:59:35.373 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-02-19T20:59:35.395 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-02-19T20:59:35.396 DEBUG:teuthology.orchestra.run.smithi155:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-19T20:59:35.412 DEBUG:teuthology.orchestra.run.smithi160:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-19T20:59:35.429 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-02-19T20:59:35.440 DEBUG:teuthology.orchestra.run.smithi155:> 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-02-19T20:59:35.456 DEBUG:teuthology.orchestra.run.smithi160:> 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-02-19T20:59:35.468 INFO:teuthology.orchestra.run.smithi155.stdout:kernel.core_pattern = core 2024-02-19T20:59:35.486 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern = core 2024-02-19T20:59:35.508 DEBUG:teuthology.orchestra.run.smithi155:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-19T20:59:35.539 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:59:35.539 DEBUG:teuthology.orchestra.run.smithi160:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-19T20:59:35.556 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T20:59:35.556 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-02-19T20:59:35.567 INFO:teuthology.task.internal:Transferring archived files... 2024-02-19T20:59:35.568 DEBUG:teuthology.misc:Transferring archived files from smithi155:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724/remote/smithi155 2024-02-19T20:59:35.569 DEBUG:teuthology.orchestra.run.smithi155:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-19T20:59:35.611 DEBUG:teuthology.misc:Transferring archived files from smithi160:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724/remote/smithi160 2024-02-19T20:59:35.611 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-19T20:59:35.637 INFO:teuthology.task.internal:Removing archive directory... 2024-02-19T20:59:35.637 DEBUG:teuthology.orchestra.run.smithi155:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-19T20:59:35.647 DEBUG:teuthology.orchestra.run.smithi160:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-19T20:59:35.681 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-02-19T20:59:35.694 INFO:teuthology.task.internal:Not uploading archives. 2024-02-19T20:59:35.694 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-02-19T20:59:35.705 INFO:teuthology.task.internal:Tidying up after the test... 2024-02-19T20:59:35.705 DEBUG:teuthology.orchestra.run.smithi155:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-19T20:59:35.707 DEBUG:teuthology.orchestra.run.smithi160:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-19T20:59:35.713 INFO:teuthology.orchestra.run.smithi155.stdout: 1048602 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 19 20:59 /home/ubuntu/cephtest 2024-02-19T20:59:35.730 INFO:teuthology.orchestra.run.smithi160.stdout: 1048601 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 19 20:59 /home/ubuntu/cephtest 2024-02-19T20:59:35.733 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-02-19T20:59:35.744 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-02-19T20:59:35.767 INFO:teuthology.nuke:Checking targets against current locks 2024-02-19T20:59:35.795 DEBUG:teuthology.nuke:shortname: smithi155 2024-02-19T20:59:35.795 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-19T20:59:35.817 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi155.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-19 20:29:10.281690', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM='} 2024-02-19T20:59:35.820 DEBUG:teuthology.nuke:shortname: smithi160 2024-02-19T20:59:35.821 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-19T20:59:35.841 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi160.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566724', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-19 20:29:10.282967', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM='} 2024-02-19T20:59:35.871 INFO:teuthology.orchestra.console.smithi155:Power off 2024-02-19T20:59:35.871 DEBUG:teuthology.orchestra.console.smithi155:pexpect command: ipmitool -H smithi155.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-19T20:59:35.896 DEBUG:teuthology.orchestra.console.smithi155:power off output: Chassis Power Control: Down/Off 2024-02-19T20:59:35.896 DEBUG:teuthology.orchestra.console.smithi155:pexpect command: ipmitool -H smithi155.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T20:59:35.912 INFO:teuthology.orchestra.console.smithi160:Power off 2024-02-19T20:59:35.912 DEBUG:teuthology.orchestra.console.smithi160:pexpect command: ipmitool -H smithi160.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-19T20:59:35.923 DEBUG:teuthology.orchestra.console.smithi155:check power output: Chassis Power is on 2024-02-19T20:59:35.935 DEBUG:teuthology.orchestra.console.smithi160:power off output: Chassis Power Control: Down/Off 2024-02-19T20:59:35.936 DEBUG:teuthology.orchestra.console.smithi160:pexpect command: ipmitool -H smithi160.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T20:59:35.959 DEBUG:teuthology.orchestra.console.smithi160:check power output: Chassis Power is on 2024-02-19T20:59:39.924 DEBUG:teuthology.orchestra.console.smithi155:pexpect command: ipmitool -H smithi155.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T20:59:39.960 DEBUG:teuthology.orchestra.console.smithi160:pexpect command: ipmitool -H smithi160.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T20:59:40.034 DEBUG:teuthology.orchestra.console.smithi155:check power output: Chassis Power is on 2024-02-19T20:59:40.069 DEBUG:teuthology.orchestra.console.smithi160:check power output: Chassis Power is on 2024-02-19T20:59:44.040 DEBUG:teuthology.orchestra.console.smithi155:pexpect command: ipmitool -H smithi155.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T20:59:44.070 DEBUG:teuthology.orchestra.console.smithi160:pexpect command: ipmitool -H smithi160.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T20:59:44.150 DEBUG:teuthology.orchestra.console.smithi155:check power output: Chassis Power is on 2024-02-19T20:59:44.180 DEBUG:teuthology.orchestra.console.smithi160:check power output: Chassis Power is off 2024-02-19T20:59:44.281 INFO:teuthology.orchestra.console.smithi160:Power off completed 2024-02-19T20:59:48.154 DEBUG:teuthology.orchestra.console.smithi155:pexpect command: ipmitool -H smithi155.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T20:59:48.264 DEBUG:teuthology.orchestra.console.smithi155:check power output: Chassis Power is off 2024-02-19T20:59:48.365 INFO:teuthology.orchestra.console.smithi155:Power off completed 2024-02-19T20:59:48.468 INFO:teuthology.run:Summary data: description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 1173.4170246124268 failure_reason: 'Command failed on smithi155 with status 32: "sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c ''mount -t nfs 10.0.31.155:/foouser /mnt/foo''"' owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=c2eaf285a5f54286892bd8e22691a578 status: fail success: false 2024-02-19T20:59:48.469 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-19T20:59:48.542 INFO:teuthology.run:FAIL