2024-02-10T07:45:12.924 INFO:root:teuthology version: 0.0.1.dev256+gd9fdb22 2024-02-10T07:45:12.924 DEBUG:teuthology.run:Teuthology command: teuthology --name yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi --description rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --archive /home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272 --owner scheduled_yuriw@teuthology --verbose -- /home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272/orig.config.yaml 2024-02-10T07:45:12.958 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-10T07:45:13.049 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272 branch: wip-yuri10-testing-2024-02-08-0854-pacific 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: '7555272' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-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: wip-yuri10-testing-2024-02-08-0854-pacific 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: 0e714d9a4bd2a821113e6318adb87bd06cf81ec1 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 0e714d9a4bd2a821113e6318adb87bd06cf81ec1 kernel: hwe: true workunit: branch: wip-tracker-64343-pacific sha1: 57bd6abdec7bb457ae7999d9c96682e9ac678e27 owner: scheduled_yuriw@teuthology priority: 71 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 964 sha1: 0e714d9a4bd2a821113e6318adb87bd06cf81ec1 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-tracker-64343-pacific suite_path: /home/teuthworker/src/github.com_ljflores_ceph_57bd6abdec7bb457ae7999d9c96682e9ac678e27/qa suite_relpath: qa suite_repo: https://github.com/ljflores/ceph.git suite_sha1: 57bd6abdec7bb457ae7999d9c96682e9ac678e27 targets: smithi007.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= smithi123.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: d9fdb2209e15b39d9f061fd85399f352ce0f0894 timestamp: 2024-02-09_21:34:44 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-02-10T07:45:13.049 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ljflores_ceph_57bd6abdec7bb457ae7999d9c96682e9ac678e27/qa; will attempt to use it 2024-02-10T07:45:13.050 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ljflores_ceph_57bd6abdec7bb457ae7999d9c96682e9ac678e27/qa/tasks 2024-02-10T07:45:13.050 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-02-10T07:45:13.051 INFO:teuthology.task.internal:Checking packages... 2024-02-10T07:45:13.075 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '0e714d9a4bd2a821113e6318adb87bd06cf81ec1' 2024-02-10T07:45:13.076 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-02-10T07:45:13.076 INFO:teuthology.packaging:ref: None 2024-02-10T07:45:13.076 INFO:teuthology.packaging:tag: None 2024-02-10T07:45:13.076 INFO:teuthology.packaging:branch: wip-yuri10-testing-2024-02-08-0854-pacific 2024-02-10T07:45:13.076 INFO:teuthology.packaging:sha1: 0e714d9a4bd2a821113e6318adb87bd06cf81ec1 2024-02-10T07:45:13.076 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&ref=wip-yuri10-testing-2024-02-08-0854-pacific 2024-02-10T07:45:13.234 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-521-g0e714d9a-1focal 2024-02-10T07:45:13.236 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-02-10T07:45:13.242 INFO:teuthology.task.internal:no buildpackages task found 2024-02-10T07:45:13.242 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-02-10T07:45:13.249 INFO:teuthology.task.internal:Saving configuration 2024-02-10T07:45:13.263 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-02-10T07:45:13.268 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-10T07:45:13.292 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi007.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272', '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-10 07:39:26.041386', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-02-10T07:45:13.313 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi123.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272', '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-10 07:39:26.043034', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-02-10T07:45:13.313 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-02-10T07:45:13.319 INFO:teuthology.task.internal:roles: ubuntu@smithi007.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-02-10T07:45:13.319 INFO:teuthology.task.internal:roles: ubuntu@smithi123.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-02-10T07:45:13.319 INFO:teuthology.run_tasks:Running task console_log... 2024-02-10T07:45:13.390 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fba3c6f70d0>, signals=[15]) 2024-02-10T07:45:13.390 INFO:teuthology.run_tasks:Running task internal.connect... 2024-02-10T07:45:13.396 INFO:teuthology.task.internal:Opening connections... 2024-02-10T07:45:13.396 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi007.front.sepia.ceph.com 2024-02-10T07:45:13.398 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi007.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-10T07:45:13.493 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi123.front.sepia.ceph.com 2024-02-10T07:45:13.494 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-10T07:45:13.584 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-02-10T07:45:13.590 DEBUG:teuthology.orchestra.run.smithi007:> uname -m 2024-02-10T07:45:13.596 INFO:teuthology.orchestra.run.smithi007.stdout:x86_64 2024-02-10T07:45:13.596 DEBUG:teuthology.orchestra.run.smithi007:> cat /etc/os-release 2024-02-10T07:45:13.645 INFO:teuthology.orchestra.run.smithi007.stdout:NAME="Ubuntu" 2024-02-10T07:45:13.645 INFO:teuthology.orchestra.run.smithi007.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-02-10T07:45:13.645 INFO:teuthology.orchestra.run.smithi007.stdout:ID=ubuntu 2024-02-10T07:45:13.645 INFO:teuthology.orchestra.run.smithi007.stdout:ID_LIKE=debian 2024-02-10T07:45:13.645 INFO:teuthology.orchestra.run.smithi007.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-02-10T07:45:13.645 INFO:teuthology.orchestra.run.smithi007.stdout:VERSION_ID="20.04" 2024-02-10T07:45:13.645 INFO:teuthology.orchestra.run.smithi007.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-10T07:45:13.645 INFO:teuthology.orchestra.run.smithi007.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-10T07:45:13.645 INFO:teuthology.orchestra.run.smithi007.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-10T07:45:13.646 INFO:teuthology.orchestra.run.smithi007.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-10T07:45:13.646 INFO:teuthology.orchestra.run.smithi007.stdout:VERSION_CODENAME=focal 2024-02-10T07:45:13.646 INFO:teuthology.orchestra.run.smithi007.stdout:UBUNTU_CODENAME=focal 2024-02-10T07:45:13.646 INFO:teuthology.lock.ops:Updating smithi007.front.sepia.ceph.com on lock server 2024-02-10T07:45:13.676 DEBUG:teuthology.orchestra.run.smithi123:> uname -m 2024-02-10T07:45:13.683 INFO:teuthology.orchestra.run.smithi123.stdout:x86_64 2024-02-10T07:45:13.683 DEBUG:teuthology.orchestra.run.smithi123:> cat /etc/os-release 2024-02-10T07:45:13.688 INFO:teuthology.orchestra.run.smithi123.stdout:NAME="Ubuntu" 2024-02-10T07:45:13.688 INFO:teuthology.orchestra.run.smithi123.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-02-10T07:45:13.688 INFO:teuthology.orchestra.run.smithi123.stdout:ID=ubuntu 2024-02-10T07:45:13.688 INFO:teuthology.orchestra.run.smithi123.stdout:ID_LIKE=debian 2024-02-10T07:45:13.688 INFO:teuthology.orchestra.run.smithi123.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-02-10T07:45:13.688 INFO:teuthology.orchestra.run.smithi123.stdout:VERSION_ID="20.04" 2024-02-10T07:45:13.688 INFO:teuthology.orchestra.run.smithi123.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-10T07:45:13.689 INFO:teuthology.orchestra.run.smithi123.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-10T07:45:13.689 INFO:teuthology.orchestra.run.smithi123.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-10T07:45:13.689 INFO:teuthology.orchestra.run.smithi123.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-10T07:45:13.689 INFO:teuthology.orchestra.run.smithi123.stdout:VERSION_CODENAME=focal 2024-02-10T07:45:13.689 INFO:teuthology.orchestra.run.smithi123.stdout:UBUNTU_CODENAME=focal 2024-02-10T07:45:13.689 INFO:teuthology.lock.ops:Updating smithi123.front.sepia.ceph.com on lock server 2024-02-10T07:45:13.709 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-02-10T07:45:13.717 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-02-10T07:45:13.722 INFO:teuthology.task.internal:Checking for old test directory... 2024-02-10T07:45:13.722 DEBUG:teuthology.orchestra.run.smithi007:> test '!' -e /home/ubuntu/cephtest 2024-02-10T07:45:13.724 DEBUG:teuthology.orchestra.run.smithi123:> test '!' -e /home/ubuntu/cephtest 2024-02-10T07:45:13.736 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-02-10T07:45:13.742 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-02-10T07:45:13.742 DEBUG:teuthology.orchestra.run.smithi007:> test -z $(ls -A /var/lib/ceph) 2024-02-10T07:45:13.744 DEBUG:teuthology.orchestra.run.smithi123:> test -z $(ls -A /var/lib/ceph) 2024-02-10T07:45:13.760 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-02-10T07:45:13.812 INFO:teuthology.run_tasks:Running task kernel... 2024-02-10T07:45:13.833 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-02-10T07:45:13.834 INFO:teuthology.task.kernel:normalize config orig: {'hwe': True} 2024-02-10T07:45:13.834 DEBUG:teuthology.task.kernel:normalized overrides {'host.a': {'hwe': True}, 'client.0': {'hwe': True}, 'host.b': {'hwe': True}, 'client.1': {'hwe': True}} 2024-02-10T07:45:13.834 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-10T07:45:13.834 DEBUG:teuthology.orchestra.run.smithi007:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-10T07:45:13.835 DEBUG:teuthology.orchestra.run.smithi123:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-10T07:45:13.840 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T07:45:13.841 DEBUG:teuthology.orchestra.run.smithi007:> uname -r 2024-02-10T07:45:13.842 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T07:45:13.843 DEBUG:teuthology.orchestra.run.smithi123:> uname -r 2024-02-10T07:45:13.849 INFO:teuthology.orchestra.run.smithi007.stdout:5.4.0-124-generic 2024-02-10T07:45:13.850 INFO:teuthology.task.kernel:Running kernel on smithi007: 5.4.0-124-generic 2024-02-10T07:45:13.850 DEBUG:teuthology.orchestra.run.smithi007:> sudo apt-get clean 2024-02-10T07:45:13.890 INFO:teuthology.orchestra.run.smithi123.stdout:5.4.0-124-generic 2024-02-10T07:45:13.891 INFO:teuthology.task.kernel:Running kernel on smithi123: 5.4.0-124-generic 2024-02-10T07:45:13.891 DEBUG:teuthology.orchestra.run.smithi123:> sudo apt-get clean 2024-02-10T07:45:13.940 DEBUG:teuthology.orchestra.run.smithi007:> sudo apt-get update 2024-02-10T07:45:14.017 DEBUG:teuthology.orchestra.run.smithi123:> sudo apt-get update 2024-02-10T07:45:14.107 INFO:teuthology.orchestra.run.smithi007.stdout:Get:1 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB] 2024-02-10T07:45:14.176 INFO:teuthology.orchestra.run.smithi123.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-10T07:45:14.177 INFO:teuthology.orchestra.run.smithi123.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] 2024-02-10T07:45:14.177 INFO:teuthology.orchestra.run.smithi123.stdout:Get:3 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB] 2024-02-10T07:45:14.214 INFO:teuthology.orchestra.run.smithi007.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-10T07:45:14.255 INFO:teuthology.orchestra.run.smithi123.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] 2024-02-10T07:45:14.296 INFO:teuthology.orchestra.run.smithi007.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] 2024-02-10T07:45:14.399 INFO:teuthology.orchestra.run.smithi007.stdout:Get:4 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2,710 kB] 2024-02-10T07:45:14.558 INFO:teuthology.orchestra.run.smithi123.stdout:Get:5 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [706 kB] 2024-02-10T07:45:14.568 INFO:teuthology.orchestra.run.smithi007.stdout:Get:5 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [706 kB] 2024-02-10T07:45:14.581 INFO:teuthology.orchestra.run.smithi007.stdout:Get:6 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [413 kB] 2024-02-10T07:45:14.586 INFO:teuthology.orchestra.run.smithi007.stdout:Get:7 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-02-10T07:45:14.586 INFO:teuthology.orchestra.run.smithi007.stdout:Get:8 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [35.5 kB] 2024-02-10T07:45:14.587 INFO:teuthology.orchestra.run.smithi007.stdout:Get:9 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,547 kB] 2024-02-10T07:45:14.617 INFO:teuthology.orchestra.run.smithi007.stdout:Get:10 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [355 kB] 2024-02-10T07:45:14.623 INFO:teuthology.orchestra.run.smithi007.stdout:Get:11 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-02-10T07:45:14.623 INFO:teuthology.orchestra.run.smithi007.stdout:Get:12 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [937 kB] 2024-02-10T07:45:14.634 INFO:teuthology.orchestra.run.smithi007.stdout:Get:13 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [645 kB] 2024-02-10T07:45:14.645 INFO:teuthology.orchestra.run.smithi007.stdout:Get:14 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [197 kB] 2024-02-10T07:45:14.647 INFO:teuthology.orchestra.run.smithi007.stdout:Get:15 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-02-10T07:45:14.649 INFO:teuthology.orchestra.run.smithi007.stdout:Get:16 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] 2024-02-10T07:45:14.654 INFO:teuthology.orchestra.run.smithi007.stdout:Get:17 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [23.9 kB] 2024-02-10T07:45:14.654 INFO:teuthology.orchestra.run.smithi007.stdout:Get:18 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,188 B] 2024-02-10T07:45:14.655 INFO:teuthology.orchestra.run.smithi007.stdout:Get:19 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,796 B] 2024-02-10T07:45:14.655 INFO:teuthology.orchestra.run.smithi007.stdout:Get:20 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-02-10T07:45:14.695 INFO:teuthology.orchestra.run.smithi123.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,090 kB] 2024-02-10T07:45:14.702 INFO:teuthology.orchestra.run.smithi123.stdout:Get:7 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2,710 kB] 2024-02-10T07:45:14.784 INFO:teuthology.orchestra.run.smithi123.stdout:Get:8 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [413 kB] 2024-02-10T07:45:14.790 INFO:teuthology.orchestra.run.smithi007.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [931 kB] 2024-02-10T07:45:14.797 INFO:teuthology.orchestra.run.smithi123.stdout:Get:9 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-02-10T07:45:14.797 INFO:teuthology.orchestra.run.smithi123.stdout:Get:10 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [35.5 kB] 2024-02-10T07:45:14.797 INFO:teuthology.orchestra.run.smithi123.stdout:Get:11 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,547 kB] 2024-02-10T07:45:14.839 INFO:teuthology.orchestra.run.smithi123.stdout:Get:12 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [355 kB] 2024-02-10T07:45:14.844 INFO:teuthology.orchestra.run.smithi123.stdout:Get:13 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-02-10T07:45:14.844 INFO:teuthology.orchestra.run.smithi123.stdout:Get:14 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [937 kB] 2024-02-10T07:45:14.854 INFO:teuthology.orchestra.run.smithi123.stdout:Get:15 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [645 kB] 2024-02-10T07:45:14.864 INFO:teuthology.orchestra.run.smithi123.stdout:Get:16 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [197 kB] 2024-02-10T07:45:14.868 INFO:teuthology.orchestra.run.smithi123.stdout:Get:17 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-02-10T07:45:14.868 INFO:teuthology.orchestra.run.smithi123.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [931 kB] 2024-02-10T07:45:14.876 INFO:teuthology.orchestra.run.smithi123.stdout:Get:19 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [23.9 kB] 2024-02-10T07:45:14.877 INFO:teuthology.orchestra.run.smithi123.stdout:Get:20 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,188 B] 2024-02-10T07:45:14.877 INFO:teuthology.orchestra.run.smithi123.stdout:Get:21 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,796 B] 2024-02-10T07:45:14.880 INFO:teuthology.orchestra.run.smithi123.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [496 kB] 2024-02-10T07:45:14.885 INFO:teuthology.orchestra.run.smithi123.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-02-10T07:45:14.885 INFO:teuthology.orchestra.run.smithi123.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [36.8 kB] 2024-02-10T07:45:14.886 INFO:teuthology.orchestra.run.smithi123.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2,665 kB] 2024-02-10T07:45:14.904 INFO:teuthology.orchestra.run.smithi123.stdout:Get:26 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-02-10T07:45:14.923 INFO:teuthology.orchestra.run.smithi123.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [371 kB] 2024-02-10T07:45:14.927 INFO:teuthology.orchestra.run.smithi123.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-02-10T07:45:14.927 INFO:teuthology.orchestra.run.smithi123.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,163 kB] 2024-02-10T07:45:14.939 INFO:teuthology.orchestra.run.smithi123.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [772 kB] 2024-02-10T07:45:14.948 INFO:teuthology.orchestra.run.smithi123.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [279 kB] 2024-02-10T07:45:14.952 INFO:teuthology.orchestra.run.smithi123.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-02-10T07:45:14.952 INFO:teuthology.orchestra.run.smithi123.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,436 B] 2024-02-10T07:45:14.953 INFO:teuthology.orchestra.run.smithi123.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [26.1 kB] 2024-02-10T07:45:14.953 INFO:teuthology.orchestra.run.smithi123.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,768 B] 2024-02-10T07:45:14.961 INFO:teuthology.orchestra.run.smithi123.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-02-10T07:45:14.961 INFO:teuthology.orchestra.run.smithi123.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-02-10T07:45:14.961 INFO:teuthology.orchestra.run.smithi123.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-02-10T07:45:14.962 INFO:teuthology.orchestra.run.smithi123.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-02-10T07:45:14.980 INFO:teuthology.orchestra.run.smithi123.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-02-10T07:45:14.981 INFO:teuthology.orchestra.run.smithi123.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-02-10T07:45:14.981 INFO:teuthology.orchestra.run.smithi123.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-02-10T07:45:15.044 INFO:teuthology.orchestra.run.smithi007.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,090 kB] 2024-02-10T07:45:15.209 INFO:teuthology.orchestra.run.smithi007.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [496 kB] 2024-02-10T07:45:15.223 INFO:teuthology.orchestra.run.smithi007.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-02-10T07:45:15.223 INFO:teuthology.orchestra.run.smithi007.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [36.8 kB] 2024-02-10T07:45:15.224 INFO:teuthology.orchestra.run.smithi007.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2,665 kB] 2024-02-10T07:45:15.294 INFO:teuthology.orchestra.run.smithi007.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [371 kB] 2024-02-10T07:45:15.310 INFO:teuthology.orchestra.run.smithi007.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-02-10T07:45:15.475 INFO:teuthology.orchestra.run.smithi007.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,163 kB] 2024-02-10T07:45:16.112 INFO:teuthology.orchestra.run.smithi007.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [772 kB] 2024-02-10T07:45:16.151 INFO:teuthology.orchestra.run.smithi007.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [279 kB] 2024-02-10T07:45:16.164 INFO:teuthology.orchestra.run.smithi007.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-02-10T07:45:16.165 INFO:teuthology.orchestra.run.smithi007.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,436 B] 2024-02-10T07:45:16.166 INFO:teuthology.orchestra.run.smithi007.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [26.1 kB] 2024-02-10T07:45:16.167 INFO:teuthology.orchestra.run.smithi007.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,768 B] 2024-02-10T07:45:16.167 INFO:teuthology.orchestra.run.smithi007.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-02-10T07:45:16.167 INFO:teuthology.orchestra.run.smithi007.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-02-10T07:45:16.193 INFO:teuthology.orchestra.run.smithi007.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-02-10T07:45:16.195 INFO:teuthology.orchestra.run.smithi007.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-02-10T07:45:16.359 INFO:teuthology.orchestra.run.smithi007.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-02-10T07:45:16.551 INFO:teuthology.orchestra.run.smithi007.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-02-10T07:45:16.573 INFO:teuthology.orchestra.run.smithi007.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-02-10T07:45:18.689 INFO:teuthology.orchestra.run.smithi007.stdout:Fetched 19.0 MB in 3s (6,848 kB/s) 2024-02-10T07:45:18.841 INFO:teuthology.orchestra.run.smithi123.stdout:Fetched 19.0 MB in 3s (6,910 kB/s) 2024-02-10T07:45:20.282 INFO:teuthology.orchestra.run.smithi007.stdout:Reading package lists... 2024-02-10T07:45:20.306 INFO:teuthology.orchestra.run.smithi123.stdout:Reading package lists... 2024-02-10T07:45:20.310 DEBUG:teuthology.orchestra.run.smithi007:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-10T07:45:20.330 DEBUG:teuthology.orchestra.run.smithi123:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-10T07:45:20.394 INFO:teuthology.orchestra.run.smithi123.stdout:Reading package lists... 2024-02-10T07:45:20.399 INFO:teuthology.orchestra.run.smithi007.stdout:Reading package lists... 2024-02-10T07:45:20.596 INFO:teuthology.orchestra.run.smithi123.stdout:Building dependency tree... 2024-02-10T07:45:20.596 INFO:teuthology.orchestra.run.smithi123.stdout:Reading state information... 2024-02-10T07:45:20.611 INFO:teuthology.orchestra.run.smithi007.stdout:Building dependency tree... 2024-02-10T07:45:20.611 INFO:teuthology.orchestra.run.smithi007.stdout:Reading state information... 2024-02-10T07:45:20.767 INFO:teuthology.orchestra.run.smithi123.stdout:The following additional packages will be installed: 2024-02-10T07:45:20.768 INFO:teuthology.orchestra.run.smithi123.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-10T07:45:20.768 INFO:teuthology.orchestra.run.smithi123.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-modules-5.15.0-94-generic 2024-02-10T07:45:20.768 INFO:teuthology.orchestra.run.smithi123.stdout: linux-modules-extra-5.15.0-94-generic thermald upower usbmuxd 2024-02-10T07:45:20.769 INFO:teuthology.orchestra.run.smithi123.stdout:Suggested packages: 2024-02-10T07:45:20.769 INFO:teuthology.orchestra.run.smithi123.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-02-10T07:45:20.769 INFO:teuthology.orchestra.run.smithi123.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-94-generic 2024-02-10T07:45:20.818 INFO:teuthology.orchestra.run.smithi007.stdout:The following additional packages will be installed: 2024-02-10T07:45:20.818 INFO:teuthology.orchestra.run.smithi007.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-10T07:45:20.818 INFO:teuthology.orchestra.run.smithi007.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-modules-5.15.0-94-generic 2024-02-10T07:45:20.819 INFO:teuthology.orchestra.run.smithi007.stdout: linux-modules-extra-5.15.0-94-generic thermald upower usbmuxd 2024-02-10T07:45:20.820 INFO:teuthology.orchestra.run.smithi007.stdout:Suggested packages: 2024-02-10T07:45:20.820 INFO:teuthology.orchestra.run.smithi007.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-02-10T07:45:20.820 INFO:teuthology.orchestra.run.smithi007.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-94-generic 2024-02-10T07:45:20.833 INFO:teuthology.orchestra.run.smithi123.stdout:The following NEW packages will be installed: 2024-02-10T07:45:20.834 INFO:teuthology.orchestra.run.smithi123.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-10T07:45:20.834 INFO:teuthology.orchestra.run.smithi123.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-image-generic-hwe-20.04 2024-02-10T07:45:20.834 INFO:teuthology.orchestra.run.smithi123.stdout: linux-modules-5.15.0-94-generic linux-modules-extra-5.15.0-94-generic 2024-02-10T07:45:20.834 INFO:teuthology.orchestra.run.smithi123.stdout: thermald upower usbmuxd 2024-02-10T07:45:20.879 INFO:teuthology.orchestra.run.smithi007.stdout:The following NEW packages will be installed: 2024-02-10T07:45:20.879 INFO:teuthology.orchestra.run.smithi007.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-10T07:45:20.880 INFO:teuthology.orchestra.run.smithi007.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-image-generic-hwe-20.04 2024-02-10T07:45:20.880 INFO:teuthology.orchestra.run.smithi007.stdout: linux-modules-5.15.0-94-generic linux-modules-extra-5.15.0-94-generic 2024-02-10T07:45:20.880 INFO:teuthology.orchestra.run.smithi007.stdout: thermald upower usbmuxd 2024-02-10T07:45:20.896 INFO:teuthology.orchestra.run.smithi123.stdout:0 upgraded, 13 newly installed, 0 to remove and 287 not upgraded. 2024-02-10T07:45:20.896 INFO:teuthology.orchestra.run.smithi123.stdout:Need to get 90.9 MB of archives. 2024-02-10T07:45:20.896 INFO:teuthology.orchestra.run.smithi123.stdout:After this operation, 497 MB of additional disk space will be used. 2024-02-10T07:45:20.896 INFO:teuthology.orchestra.run.smithi123.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-02-10T07:45:20.941 INFO:teuthology.orchestra.run.smithi007.stdout:0 upgraded, 13 newly installed, 0 to remove and 287 not upgraded. 2024-02-10T07:45:20.941 INFO:teuthology.orchestra.run.smithi007.stdout:Need to get 90.9 MB of archives. 2024-02-10T07:45:20.941 INFO:teuthology.orchestra.run.smithi007.stdout:After this operation, 497 MB of additional disk space will be used. 2024-02-10T07:45:20.941 INFO:teuthology.orchestra.run.smithi007.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-02-10T07:45:20.961 INFO:teuthology.orchestra.run.smithi123.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-02-10T07:45:20.968 INFO:teuthology.orchestra.run.smithi123.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-02-10T07:45:20.972 INFO:teuthology.orchestra.run.smithi123.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-02-10T07:45:20.990 INFO:teuthology.orchestra.run.smithi123.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-02-10T07:45:20.998 INFO:teuthology.orchestra.run.smithi123.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-10T07:45:21.007 INFO:teuthology.orchestra.run.smithi007.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-02-10T07:45:21.014 INFO:teuthology.orchestra.run.smithi007.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-02-10T07:45:21.019 INFO:teuthology.orchestra.run.smithi007.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-02-10T07:45:21.036 INFO:teuthology.orchestra.run.smithi007.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-02-10T07:45:21.045 INFO:teuthology.orchestra.run.smithi007.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-10T07:45:21.450 INFO:teuthology.orchestra.run.smithi123.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-10T07:45:21.519 INFO:teuthology.orchestra.run.smithi007.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-10T07:45:21.570 INFO:teuthology.orchestra.run.smithi123.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-10T07:45:21.675 INFO:teuthology.orchestra.run.smithi007.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-10T07:45:22.884 INFO:teuthology.orchestra.run.smithi123.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-10T07:45:22.884 INFO:teuthology.orchestra.run.smithi123.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-10T07:45:22.885 INFO:teuthology.orchestra.run.smithi123.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-02-10T07:45:22.891 INFO:teuthology.orchestra.run.smithi123.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-02-10T07:45:22.893 INFO:teuthology.orchestra.run.smithi123.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-02-10T07:45:23.121 INFO:teuthology.orchestra.run.smithi007.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-10T07:45:23.121 INFO:teuthology.orchestra.run.smithi007.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-10T07:45:23.122 INFO:teuthology.orchestra.run.smithi007.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-02-10T07:45:23.127 INFO:teuthology.orchestra.run.smithi007.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-02-10T07:45:23.130 INFO:teuthology.orchestra.run.smithi007.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-02-10T07:45:23.572 INFO:teuthology.orchestra.run.smithi123.stdout:Fetched 90.9 MB in 2s (44.3 MB/s) 2024-02-10T07:45:23.785 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-02-10T07:45:23.850 INFO:teuthology.orchestra.run.smithi007.stdout:Fetched 90.9 MB in 2s (40.6 MB/s) 2024-02-10T07:45:24.017 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-02-10T07:45:25.502 INFO:teuthology.orchestra.run.smithi123.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-10T07:45:25.507 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-02-10T07:45:25.650 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-10T07:45:25.765 INFO:teuthology.orchestra.run.smithi007.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-10T07:45:25.770 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-02-10T07:45:25.916 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-10T07:45:26.002 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package libplist3:amd64. 2024-02-10T07:45:26.016 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-02-10T07:45:26.060 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-02-10T07:45:26.261 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package libplist3:amd64. 2024-02-10T07:45:26.275 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-02-10T07:45:26.319 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-02-10T07:45:26.388 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-02-10T07:45:26.403 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-02-10T07:45:26.446 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-10T07:45:26.664 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-02-10T07:45:26.677 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-02-10T07:45:26.714 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-10T07:45:26.774 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-02-10T07:45:26.788 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-02-10T07:45:26.833 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-10T07:45:26.975 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-02-10T07:45:26.988 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-02-10T07:45:27.025 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-10T07:45:27.186 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-02-10T07:45:27.200 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-02-10T07:45:27.244 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-10T07:45:27.395 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-02-10T07:45:27.408 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-02-10T07:45:27.445 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-10T07:45:27.555 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package linux-modules-5.15.0-94-generic. 2024-02-10T07:45:27.569 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../05-linux-modules-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-10T07:45:27.613 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:27.790 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package linux-modules-5.15.0-94-generic. 2024-02-10T07:45:27.806 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../05-linux-modules-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-10T07:45:27.840 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:30.139 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package linux-image-5.15.0-94-generic. 2024-02-10T07:45:30.155 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../06-linux-image-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-10T07:45:30.253 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:30.542 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package linux-image-5.15.0-94-generic. 2024-02-10T07:45:30.556 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../06-linux-image-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-10T07:45:30.661 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:30.775 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-94-generic. 2024-02-10T07:45:30.788 INFO:teuthology.orchestra.run.smithi123.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-10T07:45:30.850 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:31.203 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-94-generic. 2024-02-10T07:45:31.219 INFO:teuthology.orchestra.run.smithi007.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-10T07:45:31.261 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:37.791 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-02-10T07:45:37.806 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.94.104~20.04.50_amd64.deb ... 2024-02-10T07:45:37.848 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-10T07:45:38.182 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-02-10T07:45:38.198 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.94.104~20.04.50_amd64.deb ... 2024-02-10T07:45:38.209 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package libevdev2:amd64. 2024-02-10T07:45:38.224 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-02-10T07:45:38.240 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-10T07:45:38.268 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-10T07:45:38.551 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package libevdev2:amd64. 2024-02-10T07:45:38.567 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-02-10T07:45:38.609 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-10T07:45:38.620 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package thermald. 2024-02-10T07:45:38.636 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-02-10T07:45:38.679 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-02-10T07:45:38.987 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package thermald. 2024-02-10T07:45:39.001 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-02-10T07:45:39.045 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-02-10T07:45:39.250 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package upower. 2024-02-10T07:45:39.264 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-02-10T07:45:39.323 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking upower (0.99.11-1build2) ... 2024-02-10T07:45:39.543 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package upower. 2024-02-10T07:45:39.557 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-02-10T07:45:39.606 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking upower (0.99.11-1build2) ... 2024-02-10T07:45:39.896 INFO:teuthology.orchestra.run.smithi123.stdout:Selecting previously unselected package usbmuxd. 2024-02-10T07:45:39.912 INFO:teuthology.orchestra.run.smithi123.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-02-10T07:45:39.954 INFO:teuthology.orchestra.run.smithi123.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-10T07:45:40.014 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package usbmuxd. 2024-02-10T07:45:40.029 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-02-10T07:45:40.072 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-10T07:45:40.262 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-02-10T07:45:40.409 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-10T07:45:40.535 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-10T07:45:40.661 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-10T07:45:40.778 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-02-10T07:45:40.787 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-10T07:45:40.902 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-10T07:45:40.904 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-10T07:45:41.030 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up upower (0.99.11-1build2) ... 2024-02-10T07:45:41.053 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-10T07:45:41.188 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-10T07:45:41.314 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-10T07:45:41.440 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-10T07:45:41.566 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up upower (0.99.11-1build2) ... 2024-02-10T07:45:41.598 INFO:teuthology.orchestra.run.smithi123.stdout:upower.service is a disabled or a static unit, not starting it. 2024-02-10T07:45:41.651 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-10T07:45:41.826 INFO:teuthology.orchestra.run.smithi123.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-02-10T07:45:41.847 INFO:teuthology.orchestra.run.smithi123.stdout:Adding system user `usbmux' (UID 114) ... 2024-02-10T07:45:41.847 INFO:teuthology.orchestra.run.smithi123.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-02-10T07:45:42.124 INFO:teuthology.orchestra.run.smithi007.stdout:upower.service is a disabled or a static unit, not starting it. 2024-02-10T07:45:42.178 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-10T07:45:42.359 INFO:teuthology.orchestra.run.smithi123.stdout:Not creating home directory `/var/lib/usbmux'. 2024-02-10T07:45:42.371 INFO:teuthology.orchestra.run.smithi007.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-02-10T07:45:42.393 INFO:teuthology.orchestra.run.smithi007.stdout:Adding system user `usbmux' (UID 114) ... 2024-02-10T07:45:42.393 INFO:teuthology.orchestra.run.smithi007.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-02-10T07:45:42.580 INFO:teuthology.orchestra.run.smithi123.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-02-10T07:45:42.631 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-02-10T07:45:42.821 INFO:teuthology.orchestra.run.smithi007.stdout:Not creating home directory `/var/lib/usbmux'. 2024-02-10T07:45:42.945 INFO:teuthology.orchestra.run.smithi123.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-02-10T07:45:42.945 INFO:teuthology.orchestra.run.smithi123.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-02-10T07:45:43.039 INFO:teuthology.orchestra.run.smithi007.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-02-10T07:45:43.217 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-02-10T07:45:43.394 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:43.532 INFO:teuthology.orchestra.run.smithi007.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-02-10T07:45:43.533 INFO:teuthology.orchestra.run.smithi007.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-02-10T07:45:43.973 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:44.702 INFO:teuthology.orchestra.run.smithi123.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-94-generic 2024-02-10T07:45:44.702 INFO:teuthology.orchestra.run.smithi123.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-94-generic 2024-02-10T07:45:44.887 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:45.322 INFO:teuthology.orchestra.run.smithi007.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-94-generic 2024-02-10T07:45:45.323 INFO:teuthology.orchestra.run.smithi007.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-94-generic 2024-02-10T07:45:45.675 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:46.405 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-10T07:45:46.531 INFO:teuthology.orchestra.run.smithi123.stdout:Setting up linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:47.907 INFO:teuthology.orchestra.run.smithi123.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-10T07:45:48.068 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-10T07:45:48.179 INFO:teuthology.orchestra.run.smithi123.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-10T07:45:48.194 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:48.907 INFO:teuthology.orchestra.run.smithi123.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-02-10T07:45:49.016 INFO:teuthology.orchestra.run.smithi123.stdout:Processing triggers for linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:49.090 INFO:teuthology.orchestra.run.smithi123.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-10T07:45:49.090 INFO:teuthology.orchestra.run.smithi123.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-94-generic 2024-02-10T07:45:49.612 INFO:teuthology.orchestra.run.smithi007.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-10T07:45:49.918 INFO:teuthology.orchestra.run.smithi007.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-10T07:45:50.721 INFO:teuthology.orchestra.run.smithi007.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-02-10T07:45:50.821 INFO:teuthology.orchestra.run.smithi007.stdout:Processing triggers for linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-10T07:45:50.904 INFO:teuthology.orchestra.run.smithi007.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-10T07:45:50.904 INFO:teuthology.orchestra.run.smithi007.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-94-generic 2024-02-10T07:46:14.567 INFO:teuthology.orchestra.run.smithi123.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-10T07:46:14.568 INFO:teuthology.orchestra.run.smithi123.stdout:Sourcing file `/etc/default/grub' 2024-02-10T07:46:14.578 INFO:teuthology.orchestra.run.smithi123.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-10T07:46:14.603 INFO:teuthology.orchestra.run.smithi123.stdout:Generating grub configuration file ... 2024-02-10T07:46:14.880 INFO:teuthology.orchestra.run.smithi123.stdout:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-10T07:46:14.902 INFO:teuthology.orchestra.run.smithi123.stdout:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-10T07:46:15.337 INFO:teuthology.orchestra.run.smithi123.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-10T07:46:15.349 INFO:teuthology.orchestra.run.smithi123.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-10T07:46:16.601 INFO:teuthology.orchestra.run.smithi007.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-10T07:46:16.602 INFO:teuthology.orchestra.run.smithi007.stdout:Sourcing file `/etc/default/grub' 2024-02-10T07:46:16.612 INFO:teuthology.orchestra.run.smithi007.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-10T07:46:16.626 INFO:teuthology.orchestra.run.smithi007.stdout:Generating grub configuration file ... 2024-02-10T07:46:16.966 INFO:teuthology.orchestra.run.smithi007.stdout:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-10T07:46:16.990 INFO:teuthology.orchestra.run.smithi007.stdout:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-10T07:46:17.377 INFO:teuthology.orchestra.run.smithi123.stdout:done 2024-02-10T07:46:17.415 INFO:teuthology.orchestra.run.smithi007.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-10T07:46:17.425 INFO:teuthology.orchestra.run.smithi007.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-10T07:46:17.796 DEBUG:teuthology.orchestra.run.smithi123:> dpkg -s linux-image-generic-hwe-20.04 2024-02-10T07:46:17.847 INFO:teuthology.orchestra.run.smithi123.stdout:Package: linux-image-generic-hwe-20.04 2024-02-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.stdout:Status: install ok installed 2024-02-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.stdout:Priority: optional 2024-02-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.stdout:Section: kernel 2024-02-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.stdout:Installed-Size: 20 2024-02-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.stdout:Maintainer: Ubuntu Kernel Team 2024-02-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.stdout:Architecture: amd64 2024-02-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.stdout:Source: linux-meta-hwe-5.15 2024-02-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.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-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.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-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.stdout:Recommends: thermald 2024-02-10T07:46:17.848 INFO:teuthology.orchestra.run.smithi123.stdout:Description: Generic Linux kernel image 2024-02-10T07:46:17.849 INFO:teuthology.orchestra.run.smithi123.stdout: This package will always depend on the latest generic kernel image 2024-02-10T07:46:17.849 INFO:teuthology.orchestra.run.smithi123.stdout: available. 2024-02-10T07:46:17.849 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-94-generic 2024-02-10T07:46:17.849 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-10T07:46:17.849 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-10T07:46:17.849 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-02-10T07:46:17.849 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi123.front.sepia.ceph.com, path=None, version=distro) 2024-02-10T07:46:17.850 DEBUG:teuthology.orchestra.run.smithi123:> sudo apt-get clean 2024-02-10T07:46:17.941 DEBUG:teuthology.orchestra.run.smithi123:> sudo apt-get update 2024-02-10T07:46:18.094 INFO:teuthology.orchestra.run.smithi123.stdout:Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-02-10T07:46:18.206 INFO:teuthology.orchestra.run.smithi123.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-10T07:46:18.288 INFO:teuthology.orchestra.run.smithi123.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-02-10T07:46:18.376 INFO:teuthology.orchestra.run.smithi123.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-02-10T07:46:19.364 INFO:teuthology.orchestra.run.smithi007.stdout:done 2024-02-10T07:46:19.841 DEBUG:teuthology.orchestra.run.smithi007:> dpkg -s linux-image-generic-hwe-20.04 2024-02-10T07:46:19.854 INFO:teuthology.orchestra.run.smithi123.stdout:Reading package lists... 2024-02-10T07:46:19.879 DEBUG:teuthology.orchestra.run.smithi123:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-10T07:46:19.884 INFO:teuthology.orchestra.run.smithi007.stdout:Package: linux-image-generic-hwe-20.04 2024-02-10T07:46:19.884 INFO:teuthology.orchestra.run.smithi007.stdout:Status: install ok installed 2024-02-10T07:46:19.884 INFO:teuthology.orchestra.run.smithi007.stdout:Priority: optional 2024-02-10T07:46:19.884 INFO:teuthology.orchestra.run.smithi007.stdout:Section: kernel 2024-02-10T07:46:19.884 INFO:teuthology.orchestra.run.smithi007.stdout:Installed-Size: 20 2024-02-10T07:46:19.884 INFO:teuthology.orchestra.run.smithi007.stdout:Maintainer: Ubuntu Kernel Team 2024-02-10T07:46:19.884 INFO:teuthology.orchestra.run.smithi007.stdout:Architecture: amd64 2024-02-10T07:46:19.885 INFO:teuthology.orchestra.run.smithi007.stdout:Source: linux-meta-hwe-5.15 2024-02-10T07:46:19.885 INFO:teuthology.orchestra.run.smithi007.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-10T07:46:19.885 INFO:teuthology.orchestra.run.smithi007.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-10T07:46:19.885 INFO:teuthology.orchestra.run.smithi007.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-10T07:46:19.885 INFO:teuthology.orchestra.run.smithi007.stdout:Recommends: thermald 2024-02-10T07:46:19.885 INFO:teuthology.orchestra.run.smithi007.stdout:Description: Generic Linux kernel image 2024-02-10T07:46:19.885 INFO:teuthology.orchestra.run.smithi007.stdout: This package will always depend on the latest generic kernel image 2024-02-10T07:46:19.885 INFO:teuthology.orchestra.run.smithi007.stdout: available. 2024-02-10T07:46:19.886 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-94-generic 2024-02-10T07:46:19.886 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-10T07:46:19.886 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-10T07:46:19.886 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-02-10T07:46:19.886 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi007.front.sepia.ceph.com, path=None, version=distro) 2024-02-10T07:46:19.886 DEBUG:teuthology.orchestra.run.smithi007:> sudo apt-get clean 2024-02-10T07:46:19.947 INFO:teuthology.orchestra.run.smithi123.stdout:Reading package lists... 2024-02-10T07:46:19.958 DEBUG:teuthology.orchestra.run.smithi007:> sudo apt-get update 2024-02-10T07:46:20.100 INFO:teuthology.orchestra.run.smithi007.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-10T07:46:20.112 INFO:teuthology.orchestra.run.smithi007.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-02-10T07:46:20.133 INFO:teuthology.orchestra.run.smithi007.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-02-10T07:46:20.153 INFO:teuthology.orchestra.run.smithi123.stdout:Building dependency tree... 2024-02-10T07:46:20.154 INFO:teuthology.orchestra.run.smithi123.stdout:Reading state information... 2024-02-10T07:46:20.207 INFO:teuthology.orchestra.run.smithi007.stdout:Hit:4 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-02-10T07:46:20.374 INFO:teuthology.orchestra.run.smithi123.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.94.104~20.04.50). 2024-02-10T07:46:20.374 INFO:teuthology.orchestra.run.smithi123.stdout:0 upgraded, 0 newly installed, 0 to remove and 287 not upgraded. 2024-02-10T07:46:20.375 DEBUG:teuthology.orchestra.run.smithi123:> dpkg -s linux-image-generic-hwe-20.04 2024-02-10T07:46:20.395 INFO:teuthology.orchestra.run.smithi123.stdout:Package: linux-image-generic-hwe-20.04 2024-02-10T07:46:20.395 INFO:teuthology.orchestra.run.smithi123.stdout:Status: install ok installed 2024-02-10T07:46:20.395 INFO:teuthology.orchestra.run.smithi123.stdout:Priority: optional 2024-02-10T07:46:20.395 INFO:teuthology.orchestra.run.smithi123.stdout:Section: kernel 2024-02-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.stdout:Installed-Size: 20 2024-02-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.stdout:Maintainer: Ubuntu Kernel Team 2024-02-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.stdout:Architecture: amd64 2024-02-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.stdout:Source: linux-meta-hwe-5.15 2024-02-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.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-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.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-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.stdout:Recommends: thermald 2024-02-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.stdout:Description: Generic Linux kernel image 2024-02-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.stdout: This package will always depend on the latest generic kernel image 2024-02-10T07:46:20.396 INFO:teuthology.orchestra.run.smithi123.stdout: available. 2024-02-10T07:46:20.397 DEBUG:teuthology.orchestra.run.smithi123:> mktemp 2024-02-10T07:46:20.445 INFO:teuthology.orchestra.run.smithi123.stdout:/tmp/tmp.IyzElS9r61 2024-02-10T07:46:20.445 DEBUG:teuthology.orchestra.run.smithi123:> sudo cp /boot/grub/grub.cfg /tmp/tmp.IyzElS9r61 2024-02-10T07:46:20.461 DEBUG:teuthology.orchestra.run.smithi123:> sudo chmod 0666 /tmp/tmp.IyzElS9r61 2024-02-10T07:46:20.552 DEBUG:teuthology.orchestra.remote:smithi123:/tmp/tmp.IyzElS9r61 is 9KB 2024-02-10T07:46:20.566 DEBUG:teuthology.orchestra.run.smithi123:> rm -fr /tmp/tmp.IyzElS9r61 2024-02-10T07:46:20.571 DEBUG:teuthology.orchestra.run.smithi123:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-10T07:46:20.626 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T07:46:20.626 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-10T07:46:20.626 DEBUG:teuthology.orchestra.run.smithi123:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-10T07:46:20.655 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-94-generic 2024-02-10T07:46:20.656 DEBUG:teuthology.orchestra.run.smithi123:> sudo update-grub 2024-02-10T07:46:21.922 INFO:teuthology.orchestra.run.smithi123.stderr:Sourcing file `/etc/default/grub' 2024-02-10T07:46:21.933 INFO:teuthology.orchestra.run.smithi123.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-10T07:46:21.943 INFO:teuthology.orchestra.run.smithi123.stderr:Generating grub configuration file ... 2024-02-10T07:46:21.962 INFO:teuthology.orchestra.run.smithi007.stdout:Reading package lists... 2024-02-10T07:46:21.989 DEBUG:teuthology.orchestra.run.smithi007:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-10T07:46:22.057 INFO:teuthology.orchestra.run.smithi007.stdout:Reading package lists... 2024-02-10T07:46:22.197 INFO:teuthology.orchestra.run.smithi123.stderr:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-10T07:46:22.208 INFO:teuthology.orchestra.run.smithi123.stderr:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-10T07:46:22.267 INFO:teuthology.orchestra.run.smithi007.stdout:Building dependency tree... 2024-02-10T07:46:22.267 INFO:teuthology.orchestra.run.smithi007.stdout:Reading state information... 2024-02-10T07:46:22.492 INFO:teuthology.orchestra.run.smithi007.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.94.104~20.04.50). 2024-02-10T07:46:22.493 INFO:teuthology.orchestra.run.smithi007.stdout:0 upgraded, 0 newly installed, 0 to remove and 287 not upgraded. 2024-02-10T07:46:22.495 DEBUG:teuthology.orchestra.run.smithi007:> dpkg -s linux-image-generic-hwe-20.04 2024-02-10T07:46:22.515 INFO:teuthology.orchestra.run.smithi007.stdout:Package: linux-image-generic-hwe-20.04 2024-02-10T07:46:22.515 INFO:teuthology.orchestra.run.smithi007.stdout:Status: install ok installed 2024-02-10T07:46:22.515 INFO:teuthology.orchestra.run.smithi007.stdout:Priority: optional 2024-02-10T07:46:22.515 INFO:teuthology.orchestra.run.smithi007.stdout:Section: kernel 2024-02-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.stdout:Installed-Size: 20 2024-02-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.stdout:Maintainer: Ubuntu Kernel Team 2024-02-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.stdout:Architecture: amd64 2024-02-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.stdout:Source: linux-meta-hwe-5.15 2024-02-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.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-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.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-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.stdout:Recommends: thermald 2024-02-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.stdout:Description: Generic Linux kernel image 2024-02-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.stdout: This package will always depend on the latest generic kernel image 2024-02-10T07:46:22.516 INFO:teuthology.orchestra.run.smithi007.stdout: available. 2024-02-10T07:46:22.517 DEBUG:teuthology.orchestra.run.smithi007:> mktemp 2024-02-10T07:46:22.522 INFO:teuthology.orchestra.run.smithi007.stdout:/tmp/tmp.GbUGP29qdN 2024-02-10T07:46:22.522 DEBUG:teuthology.orchestra.run.smithi007:> sudo cp /boot/grub/grub.cfg /tmp/tmp.GbUGP29qdN 2024-02-10T07:46:22.561 INFO:teuthology.orchestra.run.smithi123.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-10T07:46:22.572 INFO:teuthology.orchestra.run.smithi123.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-10T07:46:22.578 DEBUG:teuthology.orchestra.run.smithi007:> sudo chmod 0666 /tmp/tmp.GbUGP29qdN 2024-02-10T07:46:22.622 DEBUG:teuthology.orchestra.remote:smithi007:/tmp/tmp.GbUGP29qdN is 9KB 2024-02-10T07:46:22.635 DEBUG:teuthology.orchestra.run.smithi007:> rm -fr /tmp/tmp.GbUGP29qdN 2024-02-10T07:46:22.642 DEBUG:teuthology.orchestra.run.smithi007:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-10T07:46:22.699 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:46:22.700 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-10T07:46:22.700 DEBUG:teuthology.orchestra.run.smithi007:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-10T07:46:22.726 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-94-generic 2024-02-10T07:46:22.726 DEBUG:teuthology.orchestra.run.smithi007:> sudo update-grub 2024-02-10T07:46:23.577 INFO:teuthology.orchestra.run.smithi123.stderr:done 2024-02-10T07:46:23.579 DEBUG:teuthology.orchestra.run.smithi123:> sudo shutdown -r now 2024-02-10T07:46:24.040 INFO:teuthology.orchestra.run.smithi007.stderr:Sourcing file `/etc/default/grub' 2024-02-10T07:46:24.045 INFO:teuthology.orchestra.run.smithi007.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-10T07:46:24.060 INFO:teuthology.orchestra.run.smithi007.stderr:Generating grub configuration file ... 2024-02-10T07:46:24.316 INFO:teuthology.orchestra.run.smithi007.stderr:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-10T07:46:24.328 INFO:teuthology.orchestra.run.smithi007.stderr:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-10T07:46:24.724 INFO:teuthology.orchestra.run.smithi007.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-10T07:46:24.898 INFO:teuthology.orchestra.run.smithi007.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-10T07:46:25.446 INFO:teuthology.orchestra.run.smithi007.stderr:done 2024-02-10T07:46:25.448 DEBUG:teuthology.orchestra.run.smithi007:> sudo shutdown -r now 2024-02-10T07:46:53.608 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-02-10T07:46:53.608 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-02-10T07:46:53.609 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-10T07:46:55.452 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-02-10T07:46:55.503 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-02-10T07:46:55.504 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi007.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-10T07:47:12.064 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.123 2024-02-10T07:47:13.852 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.7 2024-02-10T07:47:21.073 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-02-10T07:47:21.074 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-10T07:47:22.854 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-02-10T07:47:22.855 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi007.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-10T07:47:24.128 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.123 2024-02-10T07:47:36.140 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-02-10T07:47:36.141 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-10T07:48:07.848 DEBUG:teuthology.orchestra.run.smithi123:> true 2024-02-10T07:48:08.361 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-02-10T07:48:08.361 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-94-generic"... 2024-02-10T07:48:08.362 DEBUG:teuthology.orchestra.run.smithi123:> uname -r 2024-02-10T07:48:08.409 INFO:teuthology.orchestra.run.smithi123.stdout:5.15.0-94-generic 2024-02-10T07:48:08.409 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-94-generic vs 5.15.0-94-generic 2024-02-10T07:48:08.409 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-10T07:48:08.409 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-10T07:48:09.409 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-02-10T07:48:09.410 DEBUG:teuthology.orchestra.run.smithi123:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-10T07:48:09.490 INFO:teuthology.orchestra.run.smithi123.stdout:ttyS1 2024-02-10T07:48:09.521 DEBUG:teuthology.parallel:result is None 2024-02-10T07:48:22.857 DEBUG:teuthology.orchestra.remote:timed out 2024-02-10T07:48:34.859 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-02-10T07:48:34.860 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi007.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-10T07:48:35.094 DEBUG:teuthology.orchestra.run.smithi007:> true 2024-02-10T07:48:35.646 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-02-10T07:48:35.646 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-94-generic"... 2024-02-10T07:48:35.647 DEBUG:teuthology.orchestra.run.smithi007:> uname -r 2024-02-10T07:48:35.694 INFO:teuthology.orchestra.run.smithi007.stdout:5.15.0-94-generic 2024-02-10T07:48:35.694 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-94-generic vs 5.15.0-94-generic 2024-02-10T07:48:35.694 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-10T07:48:35.694 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-10T07:48:36.695 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-02-10T07:48:36.696 DEBUG:teuthology.orchestra.run.smithi007:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-10T07:48:36.767 INFO:teuthology.orchestra.run.smithi007.stdout:ttyS1 2024-02-10T07:48:36.794 DEBUG:teuthology.parallel:result is None 2024-02-10T07:48:36.795 INFO:teuthology.run_tasks:Running task internal.base... 2024-02-10T07:48:36.805 INFO:teuthology.task.internal:Creating test directory... 2024-02-10T07:48:36.805 DEBUG:teuthology.orchestra.run.smithi007:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-10T07:48:36.807 DEBUG:teuthology.orchestra.run.smithi123:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-10T07:48:36.815 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-02-10T07:48:36.854 INFO:teuthology.run_tasks:Running task internal.archive... 2024-02-10T07:48:36.874 INFO:teuthology.task.internal:Creating archive directory... 2024-02-10T07:48:36.874 DEBUG:teuthology.orchestra.run.smithi007:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-10T07:48:36.876 DEBUG:teuthology.orchestra.run.smithi123:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-10T07:48:36.893 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-02-10T07:48:36.901 INFO:teuthology.task.internal:Enabling coredump saving... 2024-02-10T07:48:36.901 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T07:48:36.929 DEBUG:teuthology.orchestra.run.smithi123:> 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-10T07:48:36.945 INFO:teuthology.orchestra.run.smithi007.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-10T07:48:36.947 INFO:teuthology.orchestra.run.smithi123.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-10T07:48:36.951 INFO:teuthology.orchestra.run.smithi007.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-10T07:48:36.954 INFO:teuthology.orchestra.run.smithi123.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-10T07:48:36.956 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-02-10T07:48:36.965 INFO:teuthology.task.internal:Configuring sudo... 2024-02-10T07:48:36.965 DEBUG:teuthology.orchestra.run.smithi007:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-10T07:48:36.997 DEBUG:teuthology.orchestra.run.smithi123:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-10T07:48:37.015 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-02-10T07:48:37.025 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-02-10T07:48:37.025 DEBUG:teuthology.orchestra.run.smithi007:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-10T07:48:37.057 DEBUG:teuthology.orchestra.run.smithi123:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-10T07:48:37.065 DEBUG:teuthology.orchestra.run.smithi007:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-10T07:48:37.110 DEBUG:teuthology.orchestra.run.smithi007:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-10T07:48:37.158 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:48:37.159 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-10T07:48:37.218 DEBUG:teuthology.orchestra.run.smithi123:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-10T07:48:37.226 DEBUG:teuthology.orchestra.run.smithi123:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-10T07:48:37.273 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T07:48:37.274 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-10T07:48:37.359 DEBUG:teuthology.orchestra.run.smithi007:> sudo service rsyslog restart 2024-02-10T07:48:37.361 DEBUG:teuthology.orchestra.run.smithi123:> sudo service rsyslog restart 2024-02-10T07:48:37.445 INFO:teuthology.run_tasks:Running task internal.timer... 2024-02-10T07:48:37.453 INFO:teuthology.task.internal:Starting timer... 2024-02-10T07:48:37.453 INFO:teuthology.run_tasks:Running task pcp... 2024-02-10T07:48:37.467 INFO:teuthology.run_tasks:Running task selinux... 2024-02-10T07:48:37.478 DEBUG:teuthology.task.selinux:Excluding smithi007: OS 'ubuntu' does not support SELinux 2024-02-10T07:48:37.478 DEBUG:teuthology.task.selinux:Excluding smithi123: OS 'ubuntu' does not support SELinux 2024-02-10T07:48:37.478 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-02-10T07:48:37.478 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-02-10T07:48:37.478 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-02-10T07:48:37.479 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-02-10T07:48:37.491 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-02-10T07:48:37.496 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-02-10T07:48:37.617 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-02-10T07:48:37.633 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-10T07:48:37.634 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi007.front.sepia.ceph.com,smithi123.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-02-10T07:54:05.560 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi007.front.sepia.ceph.com'), Remote(name='ubuntu@smithi123.front.sepia.ceph.com')] 2024-02-10T07:54:05.561 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-02-10T07:54:05.562 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi007.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-10T07:54:05.651 DEBUG:teuthology.orchestra.run.smithi007:> true 2024-02-10T07:54:05.780 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-02-10T07:54:05.780 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-02-10T07:54:05.781 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-10T07:54:05.870 DEBUG:teuthology.orchestra.run.smithi123:> true 2024-02-10T07:54:05.990 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-02-10T07:54:05.990 INFO:teuthology.run_tasks:Running task clock... 2024-02-10T07:54:06.000 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-02-10T07:54:06.000 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-10T07:54:06.001 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T07:54:06.003 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-10T07:54:06.003 DEBUG:teuthology.orchestra.run.smithi123:> 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-10T07:54:06.039 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-02-10T07:54:06.039 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: Command line: ntpd -gq 2024-02-10T07:54:06.039 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: proto: precision = 0.080 usec (-23) 2024-02-10T07:54:06.040 INFO:teuthology.orchestra.run.smithi007.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-10T07:54:06.040 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-10T07:54:06.040 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: restrict ::: KOD does nothing without LIMITED. 2024-02-10T07:54:06.040 INFO:teuthology.orchestra.run.smithi007.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-10T07:54:06.041 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: Listen and drop on 0 v6wildcard [::]:123 2024-02-10T07:54:06.041 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-10T07:54:06.041 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: Listen normally on 2 lo 127.0.0.1:123 2024-02-10T07:54:06.041 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: Listen normally on 3 ens1f0 172.21.15.7:123 2024-02-10T07:54:06.042 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: Listen normally on 4 lo [::1]:123 2024-02-10T07:54:06.042 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:15ea%4]:123 2024-02-10T07:54:06.042 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:06 ntpd[12610]: Listening on routing socket on fd #22 for interface updates 2024-02-10T07:54:06.063 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-02-10T07:54:06.063 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: Command line: ntpd -gq 2024-02-10T07:54:06.063 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: proto: precision = 0.040 usec (-24) 2024-02-10T07:54:06.064 INFO:teuthology.orchestra.run.smithi123.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-10T07:54:06.064 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-10T07:54:06.064 INFO:teuthology.orchestra.run.smithi123.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-10T07:54:06.065 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: restrict ::: KOD does nothing without LIMITED. 2024-02-10T07:54:06.065 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: Listen and drop on 0 v6wildcard [::]:123 2024-02-10T07:54:06.065 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-10T07:54:06.065 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: Listen normally on 2 lo 127.0.0.1:123 2024-02-10T07:54:06.065 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: Listen normally on 3 enp3s0f1 172.21.15.123:123 2024-02-10T07:54:06.066 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: Listen normally on 4 lo [::1]:123 2024-02-10T07:54:06.066 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d3f1%5]:123 2024-02-10T07:54:06.066 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:06 ntpd[12733]: Listening on routing socket on fd #22 for interface updates 2024-02-10T07:54:07.063 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:07 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:07.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:07 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:07.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:07 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:07.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:07 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:07.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:07 ntpd[12733]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:07.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:07 ntpd[12733]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:08.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:08 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:08.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:08 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:08.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:08 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:08.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:08 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:08.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:08 ntpd[12610]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:08.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:08 ntpd[12610]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:09.039 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:09 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:09.039 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:09 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:09.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:09.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:09.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:09.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:09.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:09.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:09.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:09.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:09.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:09.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:09.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:09.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:09 ntpd[12733]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:10.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:10.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:10.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:10.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:10.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:10.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:10.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:10.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:10.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:10.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:10.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:10.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:10 ntpd[12610]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:10.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:10 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:10.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:10 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:10.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:10 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:10.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:10 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:10.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:10 ntpd[12733]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:10.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:10 ntpd[12733]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:11.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:11 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:11.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:11 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:11.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:11 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:11.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:11 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:11.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:11 ntpd[12610]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:11.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:11 ntpd[12610]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:11.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:11.066 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:11.066 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:11 ntpd[12733]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:12.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:12.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:12.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:12.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:12.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:12.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:12.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:12.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:12.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:12.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:12.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:12.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:12 ntpd[12610]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:12.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:12 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:12.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:12 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:12.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:12 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:12.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:12 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:12.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:12 ntpd[12733]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:12.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:12 ntpd[12733]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:13.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:13 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:13.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:13 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:13.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:13 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:13.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:13 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:13.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:13 ntpd[12610]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:13.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:13 ntpd[12610]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:13.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:13 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:13.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:13 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:13.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:13 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:13.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:13 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:13.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:13 ntpd[12733]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:13.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:13 ntpd[12733]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:13.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:13 ntpd[12733]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:13.064 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:13 ntpd[12733]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:13.065 INFO:teuthology.orchestra.run.smithi123.stdout:10 Feb 07:54:13 ntpd[12733]: ntpd: time slew -0.000259 s 2024-02-10T07:54:13.065 INFO:teuthology.orchestra.run.smithi123.stdout:ntpd: time slew -0.000259s 2024-02-10T07:54:13.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:13 ntpd[12733]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-10T07:54:13.065 INFO:teuthology.orchestra.run.smithi123.stderr:10 Feb 07:54:13 ntpd[12733]: can't open /var/log/ntpstats/loopstats.20240210: Permission denied 2024-02-10T07:54:13.198 INFO:teuthology.orchestra.run.smithi123.stdout: remote refid st t when poll reach delay offset jitter 2024-02-10T07:54:13.198 INFO:teuthology.orchestra.run.smithi123.stdout:============================================================================== 2024-02-10T07:54:13.199 INFO:teuthology.orchestra.run.smithi123.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-10T07:54:13.199 INFO:teuthology.orchestra.run.smithi123.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-10T07:54:13.199 INFO:teuthology.orchestra.run.smithi123.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-10T07:54:13.199 INFO:teuthology.orchestra.run.smithi123.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-10T07:54:14.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:14 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:14.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:14 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:14.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:14 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:14.040 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:14 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:14.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:14 ntpd[12610]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-10T07:54:14.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:14 ntpd[12610]: can't open /var/log/ntpstats/rawstats.20240210: Permission denied 2024-02-10T07:54:14.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:14 ntpd[12610]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-10T07:54:14.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:14 ntpd[12610]: can't open /var/log/ntpstats/peerstats.20240210: Permission denied 2024-02-10T07:54:14.041 INFO:teuthology.orchestra.run.smithi007.stdout:10 Feb 07:54:14 ntpd[12610]: ntpd: time slew +0.001314 s 2024-02-10T07:54:14.041 INFO:teuthology.orchestra.run.smithi007.stdout:ntpd: time slew +0.001314s 2024-02-10T07:54:14.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:14 ntpd[12610]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-10T07:54:14.041 INFO:teuthology.orchestra.run.smithi007.stderr:10 Feb 07:54:14 ntpd[12610]: can't open /var/log/ntpstats/loopstats.20240210: Permission denied 2024-02-10T07:54:14.097 INFO:teuthology.orchestra.run.smithi007.stdout: remote refid st t when poll reach delay offset jitter 2024-02-10T07:54:14.097 INFO:teuthology.orchestra.run.smithi007.stdout:============================================================================== 2024-02-10T07:54:14.097 INFO:teuthology.orchestra.run.smithi007.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-10T07:54:14.097 INFO:teuthology.orchestra.run.smithi007.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-10T07:54:14.097 INFO:teuthology.orchestra.run.smithi007.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-10T07:54:14.097 INFO:teuthology.orchestra.run.smithi007.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-10T07:54:14.098 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-02-10T07:54:14.108 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-02-10T07:54:14.109 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:54:14.109 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/scratch_devs of=/dev/stdout 2024-02-10T07:54:14.149 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-10T07:54:14.149 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/vg_nvme/lv_1 2024-02-10T07:54:14.198 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-10T07:54:14.198 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-10T07:54:14.198 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 495 Links: 1 2024-02-10T07:54:14.198 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-10T07:54:14.198 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-02-10 07:52:39.137907140 +0000 2024-02-10T07:54:14.198 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-02-10 07:52:39.133907231 +0000 2024-02-10T07:54:14.198 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-02-10 07:52:39.133907231 +0000 2024-02-10T07:54:14.198 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: - 2024-02-10T07:54:14.198 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-10T07:54:14.253 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-02-10T07:54:14.253 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-02-10T07:54:14.253 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.000302923 s, 1.7 MB/s 2024-02-10T07:54:14.254 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-10T07:54:14.307 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/vg_nvme/lv_2 2024-02-10T07:54:14.358 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-10T07:54:14.358 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-10T07:54:14.358 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 501 Links: 1 2024-02-10T07:54:14.358 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-10T07:54:14.358 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-02-10 07:52:39.857890535 +0000 2024-02-10T07:54:14.358 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-02-10 07:52:39.609896254 +0000 2024-02-10T07:54:14.358 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-02-10 07:52:39.609896254 +0000 2024-02-10T07:54:14.358 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: - 2024-02-10T07:54:14.358 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-10T07:54:14.411 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-02-10T07:54:14.411 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-02-10T07:54:14.411 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.000304711 s, 1.7 MB/s 2024-02-10T07:54:14.413 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-10T07:54:14.463 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/vg_nvme/lv_3 2024-02-10T07:54:14.514 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-10T07:54:14.514 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-10T07:54:14.514 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 507 Links: 1 2024-02-10T07:54:14.514 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-10T07:54:14.514 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-02-10 07:52:40.329879651 +0000 2024-02-10T07:54:14.514 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-02-10 07:52:40.077885462 +0000 2024-02-10T07:54:14.514 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-02-10 07:52:40.077885462 +0000 2024-02-10T07:54:14.514 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: - 2024-02-10T07:54:14.514 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-10T07:54:14.567 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-02-10T07:54:14.568 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-02-10T07:54:14.568 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.000320619 s, 1.6 MB/s 2024-02-10T07:54:14.569 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-10T07:54:14.619 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/vg_nvme/lv_4 2024-02-10T07:54:14.670 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-10T07:54:14.670 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-10T07:54:14.670 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 512 Links: 1 2024-02-10T07:54:14.670 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-10T07:54:14.670 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-02-10 07:52:40.789869042 +0000 2024-02-10T07:54:14.670 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-02-10 07:52:40.529875039 +0000 2024-02-10T07:54:14.670 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-02-10 07:52:40.529875039 +0000 2024-02-10T07:54:14.670 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: - 2024-02-10T07:54:14.670 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-10T07:54:14.723 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-02-10T07:54:14.723 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-02-10T07:54:14.723 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.000297557 s, 1.7 MB/s 2024-02-10T07:54:14.725 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-10T07:54:14.775 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T07:54:14.909 INFO:teuthology.orchestra.run.smithi007.stdout:loop 2024-02-10T07:54:14.911 INFO:tasks.nvme_loop:Connecting nvme_loop smithi007:/dev/vg_nvme/lv_1... 2024-02-10T07:54:14.911 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T07:54:14.932 INFO:teuthology.orchestra.run.smithi007.stdout:1 2024-02-10T07:54:14.955 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/vg_nvme/lv_11 2024-02-10T07:54:14.979 INFO:tasks.nvme_loop:Connecting nvme_loop smithi007:/dev/vg_nvme/lv_2... 2024-02-10T07:54:14.979 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T07:54:15.044 INFO:teuthology.orchestra.run.smithi007.stdout:1 2024-02-10T07:54:15.068 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/vg_nvme/lv_21 2024-02-10T07:54:15.094 INFO:tasks.nvme_loop:Connecting nvme_loop smithi007:/dev/vg_nvme/lv_3... 2024-02-10T07:54:15.094 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T07:54:15.161 INFO:teuthology.orchestra.run.smithi007.stdout:1 2024-02-10T07:54:15.188 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/vg_nvme/lv_31 2024-02-10T07:54:15.212 INFO:tasks.nvme_loop:Connecting nvme_loop smithi007:/dev/vg_nvme/lv_4... 2024-02-10T07:54:15.212 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T07:54:15.280 INFO:teuthology.orchestra.run.smithi007.stdout:1 2024-02-10T07:54:15.305 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/vg_nvme/lv_41 2024-02-10T07:54:15.326 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:54:15.326 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/scratch_devs of=/dev/stdout 2024-02-10T07:54:15.381 DEBUG:teuthology.orchestra.run.smithi007:> sudo nvme list 2024-02-10T07:54:15.436 INFO:teuthology.orchestra.run.smithi007.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-10T07:54:15.436 INFO:teuthology.orchestra.run.smithi007.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-10T07:54:15.436 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/nvme0n1 PHMB751300GE480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-02-10T07:54:15.436 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/nvme1n1 d03f2ca4ced44964453f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-10T07:54:15.436 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/nvme2n1 982d387c628a20a66200 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-10T07:54:15.436 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/nvme3n1 4fab7ac0b0ed4574110c Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-10T07:54:15.436 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/nvme4n1 28bd6de458cae7792c1b Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-10T07:54:15.437 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-10T07:54:15.437 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:54:15.437 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/scratch_devs 2024-02-10T07:54:15.494 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T07:54:15.494 DEBUG:teuthology.orchestra.run.smithi123:> dd if=/scratch_devs of=/dev/stdout 2024-02-10T07:54:15.501 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-10T07:54:15.502 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/vg_nvme/lv_1 2024-02-10T07:54:15.550 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-10T07:54:15.550 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-10T07:54:15.550 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 489 Links: 1 2024-02-10T07:54:15.550 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-10T07:54:15.551 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-02-10 07:52:39.851216447 +0000 2024-02-10T07:54:15.551 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-02-10 07:52:39.579222718 +0000 2024-02-10T07:54:15.551 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-02-10 07:52:39.579222718 +0000 2024-02-10T07:54:15.551 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: - 2024-02-10T07:54:15.551 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-10T07:54:15.606 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-02-10T07:54:15.606 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-02-10T07:54:15.606 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000432097 s, 1.2 MB/s 2024-02-10T07:54:15.607 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-10T07:54:15.660 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/vg_nvme/lv_2 2024-02-10T07:54:15.710 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-10T07:54:15.710 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-10T07:54:15.710 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 498 Links: 1 2024-02-10T07:54:15.710 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-10T07:54:15.710 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-02-10 07:52:40.343205100 +0000 2024-02-10T07:54:15.710 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-02-10 07:52:40.091210911 +0000 2024-02-10T07:54:15.710 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-02-10 07:52:40.091210911 +0000 2024-02-10T07:54:15.710 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: - 2024-02-10T07:54:15.711 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-10T07:54:15.765 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-02-10T07:54:15.765 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-02-10T07:54:15.765 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000371847 s, 1.4 MB/s 2024-02-10T07:54:15.766 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-10T07:54:15.815 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/vg_nvme/lv_3 2024-02-10T07:54:15.866 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-10T07:54:15.866 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-10T07:54:15.866 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 503 Links: 1 2024-02-10T07:54:15.866 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-10T07:54:15.866 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-02-10 07:52:40.827193939 +0000 2024-02-10T07:54:15.866 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-02-10 07:52:40.583199566 +0000 2024-02-10T07:54:15.866 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-02-10 07:52:40.583199566 +0000 2024-02-10T07:54:15.867 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: - 2024-02-10T07:54:15.867 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-10T07:54:15.920 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-02-10T07:54:15.920 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-02-10T07:54:15.920 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000393548 s, 1.3 MB/s 2024-02-10T07:54:15.921 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-10T07:54:15.975 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/vg_nvme/lv_4 2024-02-10T07:54:16.026 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-10T07:54:16.026 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-10T07:54:16.026 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 507 Links: 1 2024-02-10T07:54:16.026 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-10T07:54:16.026 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-02-10 07:52:41.311182777 +0000 2024-02-10T07:54:16.026 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-02-10 07:52:41.035189141 +0000 2024-02-10T07:54:16.026 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-02-10 07:52:41.035189141 +0000 2024-02-10T07:54:16.026 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: - 2024-02-10T07:54:16.026 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-10T07:54:16.079 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-02-10T07:54:16.080 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-02-10T07:54:16.080 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000357098 s, 1.4 MB/s 2024-02-10T07:54:16.081 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-10T07:54:16.131 DEBUG:teuthology.orchestra.run.smithi123:> 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-10T07:54:16.261 INFO:teuthology.orchestra.run.smithi123.stdout:loop 2024-02-10T07:54:16.262 INFO:tasks.nvme_loop:Connecting nvme_loop smithi123:/dev/vg_nvme/lv_1... 2024-02-10T07:54:16.263 DEBUG:teuthology.orchestra.run.smithi123:> 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-10T07:54:16.288 INFO:teuthology.orchestra.run.smithi123.stdout:1 2024-02-10T07:54:16.311 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/vg_nvme/lv_11 2024-02-10T07:54:16.336 INFO:tasks.nvme_loop:Connecting nvme_loop smithi123:/dev/vg_nvme/lv_2... 2024-02-10T07:54:16.336 DEBUG:teuthology.orchestra.run.smithi123:> 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-10T07:54:16.400 INFO:teuthology.orchestra.run.smithi123.stdout:1 2024-02-10T07:54:16.424 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/vg_nvme/lv_21 2024-02-10T07:54:16.447 INFO:tasks.nvme_loop:Connecting nvme_loop smithi123:/dev/vg_nvme/lv_3... 2024-02-10T07:54:16.447 DEBUG:teuthology.orchestra.run.smithi123:> 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-10T07:54:16.517 INFO:teuthology.orchestra.run.smithi123.stdout:1 2024-02-10T07:54:16.542 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/vg_nvme/lv_31 2024-02-10T07:54:16.566 INFO:tasks.nvme_loop:Connecting nvme_loop smithi123:/dev/vg_nvme/lv_4... 2024-02-10T07:54:16.566 DEBUG:teuthology.orchestra.run.smithi123:> 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-10T07:54:16.629 INFO:teuthology.orchestra.run.smithi123.stdout:1 2024-02-10T07:54:16.655 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/vg_nvme/lv_41 2024-02-10T07:54:16.675 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T07:54:16.675 DEBUG:teuthology.orchestra.run.smithi123:> dd if=/scratch_devs of=/dev/stdout 2024-02-10T07:54:16.726 DEBUG:teuthology.orchestra.run.smithi123:> sudo nvme list 2024-02-10T07:54:16.782 INFO:teuthology.orchestra.run.smithi123.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-10T07:54:16.782 INFO:teuthology.orchestra.run.smithi123.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-10T07:54:16.782 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/nvme0n1 PHFT620400YK400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV10171 2024-02-10T07:54:16.782 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/nvme1n1 3c97f5e5cf30368abed7 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-10T07:54:16.782 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/nvme2n1 a9e71feabbf6affcf86c Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-10T07:54:16.782 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/nvme3n1 f0c835df9746cb522481 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-10T07:54:16.782 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/nvme4n1 e96661f515ae75c18a56 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-10T07:54:16.783 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-10T07:54:16.783 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T07:54:16.783 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/scratch_devs 2024-02-10T07:54:16.842 INFO:teuthology.run_tasks:Running task cephadm... 2024-02-10T07:54:16.910 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': '0e714d9a4bd2a821113e6318adb87bd06cf81ec1'} 2024-02-10T07:54:16.910 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 2024-02-10T07:54:16.910 INFO:tasks.cephadm:Cluster fsid is 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:54:16.911 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-02-10T07:54:16.911 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-02-10T07:54:16.911 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi007': '172.21.15.7', 'mon.smithi123': '172.21.15.123'} 2024-02-10T07:54:16.911 INFO:tasks.cephadm:Normalizing hostnames... 2024-02-10T07:54:16.911 DEBUG:teuthology.orchestra.run.smithi007:> sudo hostname $(hostname -s) 2024-02-10T07:54:16.926 DEBUG:teuthology.orchestra.run.smithi123:> sudo hostname $(hostname -s) 2024-02-10T07:54:16.943 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref 0e714d9a4bd2a821113e6318adb87bd06cf81ec1)... 2024-02-10T07:54:16.943 DEBUG:teuthology.orchestra.run.smithi007:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/0e714d9a4bd2a821113e6318adb87bd06cf81ec1/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-02-10T07:54:17.121 INFO:teuthology.orchestra.run.smithi007.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 10 07:54 /home/ubuntu/cephtest/cephadm 2024-02-10T07:54:17.121 DEBUG:teuthology.orchestra.run.smithi123:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/0e714d9a4bd2a821113e6318adb87bd06cf81ec1/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-02-10T07:54:17.445 INFO:teuthology.orchestra.run.smithi123.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 10 07:54 /home/ubuntu/cephtest/cephadm 2024-02-10T07:54:17.445 DEBUG:teuthology.orchestra.run.smithi007:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-10T07:54:17.454 DEBUG:teuthology.orchestra.run.smithi123:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-10T07:54:17.470 DEBUG:teuthology.orchestra.run.smithi007:> sudo mkdir -p /etc/ceph 2024-02-10T07:54:17.513 DEBUG:teuthology.orchestra.run.smithi123:> sudo mkdir -p /etc/ceph 2024-02-10T07:54:17.531 DEBUG:teuthology.orchestra.run.smithi007:> sudo chmod 777 /etc/ceph 2024-02-10T07:54:17.573 DEBUG:teuthology.orchestra.run.smithi123:> sudo chmod 777 /etc/ceph 2024-02-10T07:54:17.588 INFO:tasks.cephadm:Writing seed config... 2024-02-10T07:54:17.589 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-02-10T07:54:17.589 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-02-10T07:54:17.590 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-02-10T07:54:17.590 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-02-10T07:54:17.590 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-02-10T07:54:17.590 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-02-10T07:54:17.590 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-02-10T07:54:17.590 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-02-10T07:54:17.590 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:54:17.590 DEBUG:teuthology.orchestra.run.smithi007:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-02-10T07:54:17.620 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 = 96f67ea2-c7e9-11ee-95b8-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-10T07:54:17.620 DEBUG:teuthology.orchestra.run.smithi007:mon.smithi007> sudo journalctl -f -n 0 -u ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mon.smithi007.service 2024-02-10T07:54:17.663 INFO:tasks.cephadm:Bootstrapping... 2024-02-10T07:54:17.663 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 -v bootstrap --fsid 96f67ea2-c7e9-11ee-95b8-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.7 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-02-10T07:54:17.991 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-02-10T07:54:18.039 INFO:teuthology.orchestra.run.smithi007.stderr:-------------------------------------------------------------------------------- 2024-02-10T07:54:18.039 INFO:teuthology.orchestra.run.smithi007.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1', '-v', 'bootstrap', '--fsid', '96f67ea2-c7e9-11ee-95b8-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.7', '--skip-admin-label'] 2024-02-10T07:54:18.039 INFO:teuthology.orchestra.run.smithi007.stderr:Verifying podman|docker is present... 2024-02-10T07:54:18.039 INFO:teuthology.orchestra.run.smithi007.stderr:Verifying lvm2 is present... 2024-02-10T07:54:18.040 INFO:teuthology.orchestra.run.smithi007.stderr:Verifying time synchronization is in place... 2024-02-10T07:54:18.047 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-10T07:54:18.055 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: inactive 2024-02-10T07:54:18.062 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-10T07:54:18.069 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: inactive 2024-02-10T07:54:18.075 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: masked 2024-02-10T07:54:18.081 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: inactive 2024-02-10T07:54:18.087 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-10T07:54:18.093 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: inactive 2024-02-10T07:54:18.100 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: enabled 2024-02-10T07:54:18.108 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: active 2024-02-10T07:54:18.109 INFO:teuthology.orchestra.run.smithi007.stderr:Unit ntp.service is enabled and running 2024-02-10T07:54:18.109 INFO:teuthology.orchestra.run.smithi007.stderr:Repeating the final host check... 2024-02-10T07:54:18.109 INFO:teuthology.orchestra.run.smithi007.stderr:docker (/usr/bin/docker) is present 2024-02-10T07:54:18.109 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl is present 2024-02-10T07:54:18.109 INFO:teuthology.orchestra.run.smithi007.stderr:lvcreate is present 2024-02-10T07:54:18.115 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-10T07:54:18.123 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: inactive 2024-02-10T07:54:18.131 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-10T07:54:18.138 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: inactive 2024-02-10T07:54:18.143 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: masked 2024-02-10T07:54:18.151 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: inactive 2024-02-10T07:54:18.157 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-10T07:54:18.165 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: inactive 2024-02-10T07:54:18.173 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: enabled 2024-02-10T07:54:18.180 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: active 2024-02-10T07:54:18.181 INFO:teuthology.orchestra.run.smithi007.stderr:Unit ntp.service is enabled and running 2024-02-10T07:54:18.181 INFO:teuthology.orchestra.run.smithi007.stderr:Host looks OK 2024-02-10T07:54:18.181 INFO:teuthology.orchestra.run.smithi007.stderr:Cluster fsid: 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:54:18.182 INFO:teuthology.orchestra.run.smithi007.stderr:Acquiring lock 140686824450464 on /run/cephadm/96f67ea2-c7e9-11ee-95b8-87774f69a715.lock 2024-02-10T07:54:18.182 INFO:teuthology.orchestra.run.smithi007.stderr:Lock 140686824450464 acquired on /run/cephadm/96f67ea2-c7e9-11ee-95b8-87774f69a715.lock 2024-02-10T07:54:18.182 INFO:teuthology.orchestra.run.smithi007.stderr:Verifying IP 172.21.15.7 port 3300 ... 2024-02-10T07:54:18.182 INFO:teuthology.orchestra.run.smithi007.stderr:Verifying IP 172.21.15.7 port 6789 ... 2024-02-10T07:54:18.182 INFO:teuthology.orchestra.run.smithi007.stderr:Base mon IP(s) is [172.21.15.7:3300, 172.21.15.7:6789], mon addrv is [v2:172.21.15.7:3300,v1:172.21.15.7:6789] 2024-02-10T07:54:18.188 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: default via 172.21.15.254 dev ens1f0 2024-02-10T07:54:18.188 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-10T07:54:18.188 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.7 2024-02-10T07:54:18.192 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: ::1 dev lo proto kernel metric 256 pref medium 2024-02-10T07:54:18.192 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-02-10T07:54:18.192 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1731sec hoplimit 64 pref medium 2024-02-10T07:54:18.196 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-02-10T07:54:18.196 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: inet6 ::1/128 scope host 2024-02-10T07:54:18.196 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: valid_lft forever preferred_lft forever 2024-02-10T07:54:18.197 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: 4: ens1f0: mtu 1500 state UP qlen 1000 2024-02-10T07:54:18.197 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: inet6 fe80::ec4:7aff:febd:15ea/64 scope link 2024-02-10T07:54:18.197 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/sbin/ip: valid_lft forever preferred_lft forever 2024-02-10T07:54:18.198 INFO:teuthology.orchestra.run.smithi007.stderr:Mon IP `172.21.15.7` is in CIDR network `172.21.0.0/20` 2024-02-10T07:54:18.198 INFO:teuthology.orchestra.run.smithi007.stderr:Mon IP `172.21.15.7` is in CIDR network `172.21.0.0/20` 2024-02-10T07:54:18.198 INFO:teuthology.orchestra.run.smithi007.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-02-10T07:54:18.199 INFO:teuthology.orchestra.run.smithi007.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-02-10T07:54:18.200 INFO:teuthology.orchestra.run.smithi007.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1... 2024-02-10T07:54:18.625 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: 0e714d9a4bd2a821113e6318adb87bd06cf81ec1: Pulling from ceph-ci/ceph 2024-02-10T07:54:18.627 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: 58df4e03ba06: Pulling fs layer 2024-02-10T07:54:18.627 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: 955bfa9dba4a: Pulling fs layer 2024-02-10T07:54:22.449 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: 58df4e03ba06: Verifying Checksum 2024-02-10T07:54:22.449 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: 58df4e03ba06: Download complete 2024-02-10T07:54:26.364 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: 58df4e03ba06: Pull complete 2024-02-10T07:54:33.996 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: 955bfa9dba4a: Verifying Checksum 2024-02-10T07:54:33.997 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: 955bfa9dba4a: Download complete 2024-02-10T07:54:46.772 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: 955bfa9dba4a: Pull complete 2024-02-10T07:54:46.902 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: Digest: sha256:a9c1a3337ae6b9328bb9087151b372dee3bd15abdc1220ab67654538650c50dc 2024-02-10T07:54:46.956 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: Status: Downloaded newer image for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 2024-02-10T07:54:46.994 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/docker: quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 2024-02-10T07:54:59.433 INFO:teuthology.orchestra.run.smithi007.stderr:ceph: ceph version 16.2.14-521-g0e714d9a (0e714d9a4bd2a821113e6318adb87bd06cf81ec1) pacific (stable) 2024-02-10T07:55:00.039 INFO:teuthology.orchestra.run.smithi007.stderr:Ceph version: ceph version 16.2.14-521-g0e714d9a (0e714d9a4bd2a821113e6318adb87bd06cf81ec1) pacific (stable) 2024-02-10T07:55:00.039 INFO:teuthology.orchestra.run.smithi007.stderr:Extracting ceph user uid/gid from container image... 2024-02-10T07:55:00.831 INFO:teuthology.orchestra.run.smithi007.stderr:stat: 167 167 2024-02-10T07:55:01.634 INFO:teuthology.orchestra.run.smithi007.stderr:Creating initial keys... 2024-02-10T07:55:02.494 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-authtool: AQDWK8dl6TRxHRAAoXj4nLBi/paGPIlBJ5CVMQ== 2024-02-10T07:55:03.864 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-authtool: AQDXK8dl2nKAMxAAqF7O4xm+ggmARKz4j+1TSg== 2024-02-10T07:55:05.236 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-authtool: AQDZK8dlO6kGDhAAqWm4HxdXvIdKfv7uS2JgkQ== 2024-02-10T07:55:05.881 INFO:teuthology.orchestra.run.smithi007.stderr:Creating initial monmap... 2024-02-10T07:55:06.682 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-10T07:55:06.682 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:55:06.682 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-10T07:55:07.329 INFO:teuthology.orchestra.run.smithi007.stderr:monmaptool for smithi007 [v2:172.21.15.7:3300,v1:172.21.15.7:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-10T07:55:07.329 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/monmaptool: set fsid to 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:55:07.329 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-10T07:55:07.329 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:55:07.329 INFO:teuthology.orchestra.run.smithi007.stderr:Creating mon... 2024-02-10T07:55:08.120 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-10T07:55:08.120 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 1 imported monmap: 2024-02-10T07:55:08.120 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: epoch 0 2024-02-10T07:55:08.121 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:55:08.121 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: last_changed 2024-02-10T07:55:06.681512+0000 2024-02-10T07:55:08.121 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: created 2024-02-10T07:55:06.681512+0000 2024-02-10T07:55:08.122 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2024-02-10T07:55:08.122 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: election_strategy: 1 2024-02-10T07:55:08.122 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0] mon.smithi007 2024-02-10T07:55:08.122 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.122 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 0 /usr/bin/ceph-mon: set fsid to 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:55:08.122 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: RocksDB version: 6.8.1 2024-02-10T07:55:08.124 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.124 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-10T07:55:08.124 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Compile date Feb 8 2024 2024-02-10T07:55:08.124 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: DB SUMMARY 2024-02-10T07:55:08.124 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.124 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi007/store.db dir, Total Num: 0, files: 2024-02-10T07:55:08.124 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.124 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi007/store.db: 2024-02-10T07:55:08.124 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.127 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.error_if_exists: 0 2024-02-10T07:55:08.127 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.create_if_missing: 1 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.paranoid_checks: 1 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.env: 0x5620ffa26080 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.fs: Posix File System 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.info_log: 0x56210150f380 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.statistics: (nil) 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.use_fsync: 0 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_log_file_size: 0 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-10T07:55:08.128 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.allow_fallocate: 1 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.use_direct_reads: 0 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.db_log_dir: 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi007/store.db 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_subcompactions: 1 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_background_flushes: -1 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-10T07:55:08.129 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-10T07:55:08.130 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-10T07:55:08.130 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-10T07:55:08.130 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-10T07:55:08.130 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-10T07:55:08.130 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-10T07:55:08.130 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.write_buffer_manager: 0x562101515980 2024-02-10T07:55:08.130 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-10T07:55:08.150 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-10T07:55:08.150 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-10T07:55:08.150 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-10T07:55:08.150 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-10T07:55:08.150 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-10T07:55:08.150 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.unordered_write: 0 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.row_cache: None 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.wal_filter: None 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.preserve_deletes: 0 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.two_write_queues: 0 2024-02-10T07:55:08.151 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.atomic_flush: 0 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.log_readahead_size: 0 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_background_jobs: 2 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_background_compactions: -1 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-10T07:55:08.152 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_open_files: -1 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Compression algorithms supported: 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: kZSTD supported: 0 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: kXpressCompression supported: 0 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: kLZ4Compression supported: 1 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: kBZip2Compression supported: 0 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: kZlibCompression supported: 1 2024-02-10T07:55:08.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: kSnappyCompression supported: 1 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi007/store.db/MANIFEST-000001 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.merge_operator: 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_filter: None 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x562101423d30) 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2024-02-10T07:55:08.154 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-10T07:55:08.155 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-10T07:55:08.155 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2024-02-10T07:55:08.155 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: index_type: 0 2024-02-10T07:55:08.155 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2024-02-10T07:55:08.155 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: index_shortening: 1 2024-02-10T07:55:08.155 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2024-02-10T07:55:08.155 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2024-02-10T07:55:08.155 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: checksum: 1 2024-02-10T07:55:08.155 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2024-02-10T07:55:08.155 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: block_cache: 0x56210145ad10 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: block_cache_options: 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: capacity : 536870912 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: block_size: 4096 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2024-02-10T07:55:08.156 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: partition_filters: 0 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: verify_compression: 0 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: format_version: 2 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: block_align: 0 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compression: NoCompression 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-10T07:55:08.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.num_levels: 7 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-10T07:55:08.158 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-10T07:55:08.159 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-10T07:55:08.160 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.table_properties_collectors: 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.inplace_update_support: 0 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.bloom_locality: 0 2024-02-10T07:55:08.161 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.max_successive_merges: 0 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.ttl: 2592000 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.115+0000 7f86783c7880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.119+0000 7f86783c7880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi007/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-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.119+0000 7f86783c7880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.119+0000 7f86783c7880 4 rocksdb: DB pointer 0x562101523800 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.119+0000 7f8661239700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.119+0000 7f8661239700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2024-02-10T07:55:08.162 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-10T07:55:08.163 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.164 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.165 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.166 INFO:teuthology.orchestra.run.smithi007.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-10T07:55:08.166 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.166 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-10T07:55:08.166 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: 2024-02-10T07:55:08.166 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.123+0000 7f86783c7880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2024-02-10T07:55:08.166 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.123+0000 7f86783c7880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2024-02-10T07:55:08.166 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph-mon: debug 2024-02-10T07:55:08.123+0000 7f86783c7880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi007 for mon.smithi007 2024-02-10T07:55:08.704 INFO:teuthology.orchestra.run.smithi007.stderr:create mon.smithi007 on 2024-02-10T07:55:08.931 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-02-10T07:55:09.148 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715.target -> /etc/systemd/system/ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715.target. 2024-02-10T07:55:09.148 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715.target -> /etc/systemd/system/ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715.target. 2024-02-10T07:55:09.574 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Failed to reset failed state of unit ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mon.smithi007.service: Unit ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mon.smithi007.service not loaded. 2024-02-10T07:55:09.583 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Created symlink /etc/systemd/system/ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715.target.wants/ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mon.smithi007.service -> /etc/systemd/system/ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@.service. 2024-02-10T07:55:09.804 INFO:teuthology.orchestra.run.smithi007.stderr:firewalld does not appear to be present 2024-02-10T07:55:09.805 INFO:teuthology.orchestra.run.smithi007.stderr:Not possible to enable service . firewalld.service is not available 2024-02-10T07:55:09.805 INFO:teuthology.orchestra.run.smithi007.stderr:Waiting for mon to start... 2024-02-10T07:55:09.805 INFO:teuthology.orchestra.run.smithi007.stderr:Waiting for mon... 2024-02-10T07:55:11.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:11 smithi007 bash[13571]: cluster 2024-02-10T07:55:11.167057+0000 mon.smithi007 (mon.0) 1 : cluster [INF] mon.smithi007 is new leader, mons smithi007 in quorum (ranks 0) 2024-02-10T07:55:11.349 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: cluster: 2024-02-10T07:55:11.350 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: id: 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:55:11.351 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: health: HEALTH_OK 2024-02-10T07:55:11.351 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:11.351 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: services: 2024-02-10T07:55:11.351 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi007 (age 0.178624s) 2024-02-10T07:55:11.351 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mgr: no daemons active 2024-02-10T07:55:11.352 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2024-02-10T07:55:11.352 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:11.352 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: data: 2024-02-10T07:55:11.352 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2024-02-10T07:55:11.352 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2024-02-10T07:55:11.352 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2024-02-10T07:55:11.352 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: pgs: 2024-02-10T07:55:11.352 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:11.987 INFO:teuthology.orchestra.run.smithi007.stderr:mon is available 2024-02-10T07:55:11.987 INFO:teuthology.orchestra.run.smithi007.stderr:Assimilating anything we can from ceph.conf... 2024-02-10T07:55:12.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:12 smithi007 bash[13571]: cluster 2024-02-10T07:55:11.170266+0000 mon.smithi007 (mon.0) 2 : cluster [INF] mon.smithi007 is new leader, mons smithi007 in quorum (ranks 0) 2024-02-10T07:55:12.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:12 smithi007 bash[13571]: cluster 2024-02-10T07:55:11.170404+0000 mon.smithi007 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi007=[v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0]} removed_ranks: {} 2024-02-10T07:55:12.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:12 smithi007 bash[13571]: cluster 2024-02-10T07:55:11.172549+0000 mon.smithi007 (mon.0) 4 : cluster [DBG] fsmap 2024-02-10T07:55:12.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:12 smithi007 bash[13571]: cluster 2024-02-10T07:55:11.174582+0000 mon.smithi007 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-10T07:55:12.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:12 smithi007 bash[13571]: cluster 2024-02-10T07:55:11.174997+0000 mon.smithi007 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-02-10T07:55:12.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:12 smithi007 bash[13571]: audit 2024-02-10T07:55:11.348848+0000 mon.smithi007 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.7:0/1586866001' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-02-10T07:55:13.078 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:13.078 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: [global] 2024-02-10T07:55:13.078 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: fsid = 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:55:13.080 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: log_to_journald = false 2024-02-10T07:55:13.080 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.7:3300,v1:172.21.15.7:6789] 2024-02-10T07:55:13.080 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-10T07:55:13.080 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-10T07:55:13.080 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-10T07:55:13.080 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-10T07:55:13.080 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:13.080 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: [mgr] 2024-02-10T07:55:13.080 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-10T07:55:13.080 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:13.081 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: [osd] 2024-02-10T07:55:13.081 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-10T07:55:13.081 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-10T07:55:13.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:13 smithi007 bash[13571]: audit 2024-02-10T07:55:13.070285+0000 mon.smithi007 (mon.0) 8 : audit [INF] from='client.? 172.21.15.7:0/2514134159' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-10T07:55:13.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:13 smithi007 bash[13571]: audit 2024-02-10T07:55:13.076862+0000 mon.smithi007 (mon.0) 9 : audit [INF] from='client.? 172.21.15.7:0/2514134159' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-02-10T07:55:13.727 INFO:teuthology.orchestra.run.smithi007.stderr:Generating new minimal ceph.conf... 2024-02-10T07:55:15.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:14 smithi007 bash[13571]: audit 2024-02-10T07:55:14.798229+0000 mon.smithi007 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.7:0/2581487969' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:55:15.381 INFO:teuthology.orchestra.run.smithi007.stderr:Restarting the monitor... 2024-02-10T07:55:15.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:15 smithi007 systemd[1]: Stopping Ceph mon.smithi007 for 96f67ea2-c7e9-11ee-95b8-87774f69a715... 2024-02-10T07:55:15.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:15 smithi007 bash[13961]: Error response from daemon: No such container: ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715-mon.smithi007 2024-02-10T07:55:15.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:15 smithi007 bash[13571]: debug 2024-02-10T07:55:15.579+0000 7fa49da21700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi007 -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-10T07:55:15.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:15 smithi007 bash[13571]: debug 2024-02-10T07:55:15.579+0000 7fa49da21700 -1 mon.smithi007@0(leader) e1 *** Got Signal Terminated *** 2024-02-10T07:55:16.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:16 smithi007 bash[13993]: ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715-mon-smithi007 2024-02-10T07:55:16.326 INFO:teuthology.orchestra.run.smithi007.stderr:Setting public_network to 172.21.0.0/20 in mon config section 2024-02-10T07:55:16.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:16 smithi007 bash[14057]: Error response from daemon: No such container: ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715-mon-smithi007 2024-02-10T07:55:16.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:16 smithi007 systemd[1]: ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mon.smithi007.service: Succeeded. 2024-02-10T07:55:16.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:16 smithi007 systemd[1]: Stopped Ceph mon.smithi007 for 96f67ea2-c7e9-11ee-95b8-87774f69a715. 2024-02-10T07:55:16.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:16 smithi007 systemd[1]: Started Ceph mon.smithi007 for 96f67ea2-c7e9-11ee-95b8-87774f69a715. 2024-02-10T07:55:17.741 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.383+0000 7f3c8ab7f880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-10T07:55:17.741 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.383+0000 7f3c8ab7f880 0 ceph version 16.2.14-521-g0e714d9a (0e714d9a4bd2a821113e6318adb87bd06cf81ec1) pacific (stable), process ceph-mon, pid 7 2024-02-10T07:55:17.741 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.383+0000 7f3c8ab7f880 0 pidfile_write: ignore empty --pid-file 2024-02-10T07:55:17.741 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.387+0000 7f3c8ab7f880 0 load: jerasure load: lrc load: isa 2024-02-10T07:55:17.741 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: RocksDB version: 6.8.1 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Compile date Feb 8 2024 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: DB SUMMARY 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: CURRENT file: CURRENT 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi007/store.db dir, Total Num: 1, files: 000004.sst 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi007/store.db: 000006.log size: 87019 ; 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.error_if_exists: 0 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.create_if_missing: 0 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.paranoid_checks: 1 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.env: 0x55919b826080 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.fs: Posix File System 2024-02-10T07:55:17.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.info_log: 0x55919cf4e520 2024-02-10T07:55:17.743 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-10T07:55:17.743 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.statistics: (nil) 2024-02-10T07:55:17.743 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.use_fsync: 0 2024-02-10T07:55:17.743 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_log_file_size: 0 2024-02-10T07:55:17.743 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-10T07:55:17.743 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-10T07:55:17.743 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-10T07:55:17.743 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.allow_fallocate: 1 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.use_direct_reads: 0 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.db_log_dir: 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi007/store.db 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_subcompactions: 1 2024-02-10T07:55:17.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_background_flushes: -1 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.write_buffer_manager: 0x55919db9c480 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-10T07:55:17.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.unordered_write: 0 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.row_cache: None 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.wal_filter: None 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.preserve_deletes: 0 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.two_write_queues: 0 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.atomic_flush: 0 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-10T07:55:17.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.log_readahead_size: 0 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_background_jobs: 2 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_background_compactions: -1 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_open_files: -1 2024-02-10T07:55:17.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Compression algorithms supported: 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: kZSTD supported: 0 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: kXpressCompression supported: 0 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: kLZ4Compression supported: 1 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: kBZip2Compression supported: 0 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: kZlibCompression supported: 1 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: kSnappyCompression supported: 1 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi007/store.db/MANIFEST-000005 2024-02-10T07:55:17.749 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.merge_operator: 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_filter: None 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55919cef1d28) 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: cache_index_and_filter_blocks: 1 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: pin_top_level_index_and_filter: 1 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: index_type: 0 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: data_block_index_type: 0 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: index_shortening: 1 2024-02-10T07:55:17.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: data_block_hash_table_util_ratio: 0.750000 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: hash_index_allow_collision: 1 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: checksum: 1 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: no_block_cache: 0 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: block_cache: 0x55919cf28f10 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: block_cache_name: BinnedLRUCache 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: block_cache_options: 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: capacity : 536870912 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: num_shard_bits : 4 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: strict_capacity_limit : 0 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: high_pri_pool_ratio: 0.000 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: block_cache_compressed: (nil) 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: persistent_cache: (nil) 2024-02-10T07:55:17.751 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: block_size: 4096 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: block_size_deviation: 10 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: block_restart_interval: 16 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: index_block_restart_interval: 1 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: metadata_block_size: 4096 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: partition_filters: 0 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: use_delta_encoding: 1 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: whole_key_filtering: 1 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: verify_compression: 0 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: read_amp_bytes_per_bit: 0 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: format_version: 2 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: enable_index_compression: 1 2024-02-10T07:55:17.752 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: block_align: 0 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compression: NoCompression 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.num_levels: 7 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-10T07:55:17.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-10T07:55:17.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-10T07:55:17.755 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.table_properties_collectors: 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.inplace_update_support: 0 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-10T07:55:17.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.bloom_locality: 0 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.max_successive_merges: 0 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.ttl: 2592000 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi007/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-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707551717396885, "job": 1, "event": "recovery_started", "log_files": [6]} 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.391+0000 7f3c8ab7f880 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-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.395+0000 7f3c8ab7f880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707551717399360, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83728, "table_properties": {"data_size": 81995, "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": 76550, "raw_average_value_size": 382, "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": 1707551717, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-10T07:55:17.757 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.395+0000 7f3c8ab7f880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.395+0000 7f3c8ab7f880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707551717400277, "job": 1, "event": "recovery_finished"} 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.395+0000 7f3c8ab7f880 4 rocksdb: DB pointer 0x55919cff1800 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.395+0000 7f3c71970700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.395+0000 7f3c71970700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ** DB Stats ** 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ** Compaction Stats [default] ** 2024-02-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: L0 2/0 83.46 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 59.4 0.00 0.00 1 0.001 0 0 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Sum 2/0 83.46 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 59.4 0.00 0.00 1 0.001 0 0 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 59.4 0.00 0.00 1 0.001 0 0 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ** Compaction Stats [default] ** 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 59.4 0.00 0.00 1 0.001 0 0 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: AddFile(Total Files): cumulative 0, interval 0 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: AddFile(Keys): cumulative 0, interval 0 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Cumulative compaction: 0.00 GB write, 12.84 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Interval compaction: 0.00 GB write, 12.84 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-10T07:55:17.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ** File Read Latency Histogram By Level [default] ** 2024-02-10T07:55:17.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ** Compaction Stats [default] ** 2024-02-10T07:55:17.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:55:17.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: L0 2/0 83.46 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 59.4 0.00 0.00 1 0.001 0 0 2024-02-10T07:55:17.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Sum 2/0 83.46 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 59.4 0.00 0.00 1 0.001 0 0 2024-02-10T07:55:17.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ** Compaction Stats [default] ** 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 59.4 0.00 0.00 1 0.001 0 0 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: AddFile(Total Files): cumulative 0, interval 0 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: AddFile(Keys): cumulative 0, interval 0 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: Cumulative compaction: 0.00 GB write, 12.75 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: ** File Read Latency Histogram By Level [default] ** 2024-02-10T07:55:17.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.399+0000 7f3c8ab7f880 0 starting mon.smithi007 rank 0 at public addrs [v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0] at bind addrs [v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi007 fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.399+0000 7f3c8ab7f880 1 mon.smithi007@-1(???) e1 preinit fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.399+0000 7f3c8ab7f880 0 mon.smithi007@-1(???).mds e1 new map 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.399+0000 7f3c8ab7f880 0 mon.smithi007@-1(???).mds e1 print_map 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: e1 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 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-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: legacy client fscid: -1 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: No filesystems configured 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.399+0000 7f3c8ab7f880 0 mon.smithi007@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.399+0000 7f3c8ab7f880 0 mon.smithi007@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.399+0000 7f3c8ab7f880 0 mon.smithi007@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.399+0000 7f3c8ab7f880 0 mon.smithi007@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-10T07:55:17.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: audit 2024-02-10T07:55:14.798229+0000 mon.smithi007 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.7:0/2581487969' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:55:17.763 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: debug 2024-02-10T07:55:17.399+0000 7f3c8ab7f880 1 mon.smithi007@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-02-10T07:55:17.763 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: cluster 2024-02-10T07:55:17.409561+0000 mon.smithi007 (mon.0) 1 : cluster [INF] mon.smithi007 is new leader, mons smithi007 in quorum (ranks 0) 2024-02-10T07:55:17.763 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: cluster 2024-02-10T07:55:17.409614+0000 mon.smithi007 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi007=[v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0]} removed_ranks: {} 2024-02-10T07:55:17.763 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: cluster 2024-02-10T07:55:17.410012+0000 mon.smithi007 (mon.0) 3 : cluster [DBG] fsmap 2024-02-10T07:55:17.763 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: cluster 2024-02-10T07:55:17.410047+0000 mon.smithi007 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-10T07:55:17.763 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:17 smithi007 bash[14094]: cluster 2024-02-10T07:55:17.410408+0000 mon.smithi007 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-02-10T07:55:18.344 INFO:teuthology.orchestra.run.smithi007.stderr:Wrote config to /etc/ceph/ceph.conf 2024-02-10T07:55:18.344 INFO:teuthology.orchestra.run.smithi007.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-02-10T07:55:18.344 INFO:teuthology.orchestra.run.smithi007.stderr:Creating mgr... 2024-02-10T07:55:18.344 INFO:teuthology.orchestra.run.smithi007.stderr:Verifying port 9283 ... 2024-02-10T07:55:18.570 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Failed to reset failed state of unit ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mgr.smithi007.lzuqsb.service: Unit ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mgr.smithi007.lzuqsb.service not loaded. 2024-02-10T07:55:18.578 INFO:teuthology.orchestra.run.smithi007.stderr:systemctl: Created symlink /etc/systemd/system/ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715.target.wants/ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mgr.smithi007.lzuqsb.service -> /etc/systemd/system/ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@.service. 2024-02-10T07:55:18.793 INFO:teuthology.orchestra.run.smithi007.stderr:firewalld does not appear to be present 2024-02-10T07:55:18.793 INFO:teuthology.orchestra.run.smithi007.stderr:Not possible to enable service . firewalld.service is not available 2024-02-10T07:55:18.793 INFO:teuthology.orchestra.run.smithi007.stderr:firewalld does not appear to be present 2024-02-10T07:55:18.793 INFO:teuthology.orchestra.run.smithi007.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2024-02-10T07:55:18.793 INFO:teuthology.orchestra.run.smithi007.stderr:Waiting for mgr to start... 2024-02-10T07:55:18.793 INFO:teuthology.orchestra.run.smithi007.stderr:Waiting for mgr... 2024-02-10T07:55:18.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:18 smithi007 bash[14094]: audit 2024-02-10T07:55:17.709821+0000 mon.smithi007 (mon.0) 6 : audit [INF] from='client.? 172.21.15.7:0/2362814892' entity='client.admin' 2024-02-10T07:55:20.389 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: { 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "fsid": "96f67ea2-c7e9-11ee-95b8-87774f69a715", 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "health": { 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "checks": {}, 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "mutes": [] 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "quorum": [ 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 0 2024-02-10T07:55:20.390 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: ], 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "smithi007" 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: ], 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "quorum_age": 2, 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "monmap": { 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "osdmap": { 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-10T07:55:20.391 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "pgmap": { 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:20.392 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "fsmap": { 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "available": false, 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "modules": [ 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "iostat", 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "nfs", 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "restful" 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: ], 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "services": {} 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "servicemap": { 2024-02-10T07:55:20.393 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:20.394 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "modified": "2024-02-10T07:55:11.171596+0000", 2024-02-10T07:55:20.394 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "services": {} 2024-02-10T07:55:20.394 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:20.394 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-10T07:55:20.394 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: } 2024-02-10T07:55:20.577 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:20 smithi007 bash[14094]: audit 2024-02-10T07:55:20.382512+0000 mon.smithi007 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.7:0/2024808962' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-10T07:55:21.061 INFO:teuthology.orchestra.run.smithi007.stderr:mgr not available, waiting (1/15)... 2024-02-10T07:55:24.200 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:24.200 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: { 2024-02-10T07:55:24.200 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "fsid": "96f67ea2-c7e9-11ee-95b8-87774f69a715", 2024-02-10T07:55:24.200 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "health": { 2024-02-10T07:55:24.200 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-10T07:55:24.200 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "checks": {}, 2024-02-10T07:55:24.200 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "mutes": [] 2024-02-10T07:55:24.200 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:24.200 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-10T07:55:24.200 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "quorum": [ 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 0 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: ], 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "smithi007" 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: ], 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "quorum_age": 6, 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "monmap": { 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "osdmap": { 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-10T07:55:24.201 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "pgmap": { 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "fsmap": { 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:24.202 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "available": false, 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "modules": [ 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "iostat", 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "nfs", 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "restful" 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: ], 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "services": {} 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "servicemap": { 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "modified": "2024-02-10T07:55:11.171596+0000", 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "services": {} 2024-02-10T07:55:24.203 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:24.204 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-10T07:55:24.204 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: } 2024-02-10T07:55:24.265 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:24 smithi007 bash[14094]: audit 2024-02-10T07:55:24.193762+0000 mon.smithi007 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.7:0/2225383968' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-10T07:55:24.850 INFO:teuthology.orchestra.run.smithi007.stderr:mgr not available, waiting (2/15)... 2024-02-10T07:55:27.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:26 smithi007 bash[14094]: cluster 2024-02-10T07:55:26.848687+0000 mon.smithi007 (mon.0) 9 : cluster [INF] Activating manager daemon smithi007.lzuqsb 2024-02-10T07:55:27.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:26 smithi007 bash[14094]: cluster 2024-02-10T07:55:26.854868+0000 mon.smithi007 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi007.lzuqsb(active, starting, since 0.00640443s) 2024-02-10T07:55:27.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:26 smithi007 bash[14094]: audit 2024-02-10T07:55:26.857250+0000 mon.smithi007 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.7:0/2781345813' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-10T07:55:27.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:26 smithi007 bash[14094]: audit 2024-02-10T07:55:26.857799+0000 mon.smithi007 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.7:0/2781345813' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-10T07:55:27.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:26 smithi007 bash[14094]: audit 2024-02-10T07:55:26.858070+0000 mon.smithi007 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.7:0/2781345813' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-10T07:55:27.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:26 smithi007 bash[14094]: audit 2024-02-10T07:55:26.858284+0000 mon.smithi007 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.7:0/2781345813' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi007"}]: dispatch 2024-02-10T07:55:27.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:26 smithi007 bash[14094]: audit 2024-02-10T07:55:26.858497+0000 mon.smithi007 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.7:0/2781345813' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr metadata", "who": "smithi007.lzuqsb", "id": "smithi007.lzuqsb"}]: dispatch 2024-02-10T07:55:27.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:26 smithi007 bash[14094]: cluster 2024-02-10T07:55:26.882011+0000 mon.smithi007 (mon.0) 16 : cluster [INF] Manager daemon smithi007.lzuqsb is now available 2024-02-10T07:55:27.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:26 smithi007 bash[14094]: audit 2024-02-10T07:55:26.898671+0000 mon.smithi007 (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.7:0/2781345813' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:27.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:27 smithi007 bash[14094]: audit 2024-02-10T07:55:26.907450+0000 mon.smithi007 (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.7:0/2781345813' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.lzuqsb/mirror_snapshot_schedule"}]: dispatch 2024-02-10T07:55:27.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:27 smithi007 bash[14094]: audit 2024-02-10T07:55:26.912115+0000 mon.smithi007 (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.7:0/2781345813' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.lzuqsb/trash_purge_schedule"}]: dispatch 2024-02-10T07:55:27.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:27 smithi007 bash[14094]: audit 2024-02-10T07:55:26.916358+0000 mon.smithi007 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.7:0/2781345813' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:27.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:27 smithi007 bash[14094]: audit 2024-02-10T07:55:26.919994+0000 mon.smithi007 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.7:0/2781345813' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:27.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:27 smithi007 bash[14094]: cluster 2024-02-10T07:55:27.860929+0000 mon.smithi007 (mon.0) 22 : cluster [DBG] mgrmap e3: smithi007.lzuqsb(active, since 1.01247s) 2024-02-10T07:55:28.377 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:28.377 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: { 2024-02-10T07:55:28.377 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "fsid": "96f67ea2-c7e9-11ee-95b8-87774f69a715", 2024-02-10T07:55:28.377 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "health": { 2024-02-10T07:55:28.377 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-10T07:55:28.377 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "checks": {}, 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "mutes": [] 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "quorum": [ 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 0 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: ], 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "smithi007" 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: ], 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "quorum_age": 10, 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "monmap": { 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-10T07:55:28.378 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "osdmap": { 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "pgmap": { 2024-02-10T07:55:28.379 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "fsmap": { 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:28.380 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "available": true, 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "modules": [ 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "iostat", 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "nfs", 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "restful" 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: ], 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "services": {} 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "servicemap": { 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "modified": "2024-02-10T07:55:11.171596+0000", 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "services": {} 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: }, 2024-02-10T07:55:28.381 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-10T07:55:28.382 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: } 2024-02-10T07:55:28.967 INFO:teuthology.orchestra.run.smithi007.stderr:mgr is available 2024-02-10T07:55:29.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:28 smithi007 bash[14094]: audit 2024-02-10T07:55:28.369226+0000 mon.smithi007 (mon.0) 23 : audit [DBG] from='client.? 172.21.15.7:0/4056045992' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-10T07:55:29.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:29 smithi007 bash[14094]: cluster 2024-02-10T07:55:28.915387+0000 mon.smithi007 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi007.lzuqsb(active, since 2s) 2024-02-10T07:55:30.296 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:30.296 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: [global] 2024-02-10T07:55:30.296 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: fsid = 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:55:30.296 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: log_to_journald = false 2024-02-10T07:55:30.296 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-10T07:55:30.296 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-10T07:55:30.296 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-10T07:55:30.296 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-10T07:55:30.296 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:30.297 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: [mgr] 2024-02-10T07:55:30.297 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-10T07:55:30.297 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 2024-02-10T07:55:30.297 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: [osd] 2024-02-10T07:55:30.297 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-10T07:55:30.297 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-10T07:55:30.904 INFO:teuthology.orchestra.run.smithi007.stderr:Enabling cephadm module... 2024-02-10T07:55:31.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:30 smithi007 bash[14094]: audit 2024-02-10T07:55:30.292105+0000 mon.smithi007 (mon.0) 25 : audit [INF] from='client.? 172.21.15.7:0/2202176236' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-10T07:55:32.625 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:32 smithi007 bash[14094]: audit 2024-02-10T07:55:32.299337+0000 mon.smithi007 (mon.0) 26 : audit [INF] from='client.? 172.21.15.7:0/2017443886' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-02-10T07:55:33.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:33 smithi007 bash[14094]: audit 2024-02-10T07:55:32.356115+0000 mon.smithi007 (mon.0) 27 : audit [INF] from='client.? 172.21.15.7:0/2017443886' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-02-10T07:55:33.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:33 smithi007 bash[14094]: cluster 2024-02-10T07:55:32.356216+0000 mon.smithi007 (mon.0) 28 : cluster [DBG] mgrmap e5: smithi007.lzuqsb(active, since 5s) 2024-02-10T07:55:34.512 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: { 2024-02-10T07:55:34.512 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 5, 2024-02-10T07:55:34.512 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "available": true, 2024-02-10T07:55:34.512 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "active_name": "smithi007.lzuqsb", 2024-02-10T07:55:34.512 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-10T07:55:34.512 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: } 2024-02-10T07:55:34.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:34 smithi007 bash[14094]: audit 2024-02-10T07:55:34.510549+0000 mon.smithi007 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.7:0/3030743112' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-10T07:55:35.201 INFO:teuthology.orchestra.run.smithi007.stderr:Waiting for the mgr to restart... 2024-02-10T07:55:35.201 INFO:teuthology.orchestra.run.smithi007.stderr:Waiting for mgr epoch 5... 2024-02-10T07:55:39.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: cluster 2024-02-10T07:55:39.164691+0000 mon.smithi007 (mon.0) 30 : cluster [INF] Active manager daemon smithi007.lzuqsb restarted 2024-02-10T07:55:39.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: cluster 2024-02-10T07:55:39.165610+0000 mon.smithi007 (mon.0) 31 : cluster [INF] Activating manager daemon smithi007.lzuqsb 2024-02-10T07:55:39.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: cluster 2024-02-10T07:55:39.170262+0000 mon.smithi007 (mon.0) 32 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-02-10T07:55:39.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: cluster 2024-02-10T07:55:39.170389+0000 mon.smithi007 (mon.0) 33 : cluster [DBG] mgrmap e6: smithi007.lzuqsb(active, starting, since 0.00516593s) 2024-02-10T07:55:39.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: audit 2024-02-10T07:55:39.172527+0000 mon.smithi007 (mon.0) 34 : audit [DBG] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi007"}]: dispatch 2024-02-10T07:55:39.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: audit 2024-02-10T07:55:39.173573+0000 mon.smithi007 (mon.0) 35 : audit [DBG] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr metadata", "who": "smithi007.lzuqsb", "id": "smithi007.lzuqsb"}]: dispatch 2024-02-10T07:55:39.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: audit 2024-02-10T07:55:39.174647+0000 mon.smithi007 (mon.0) 36 : audit [DBG] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-10T07:55:39.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: audit 2024-02-10T07:55:39.174896+0000 mon.smithi007 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-10T07:55:39.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: audit 2024-02-10T07:55:39.175068+0000 mon.smithi007 (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-10T07:55:39.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: cluster 2024-02-10T07:55:39.178779+0000 mon.smithi007 (mon.0) 39 : cluster [INF] Manager daemon smithi007.lzuqsb is now available 2024-02-10T07:55:39.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:39 smithi007 bash[14094]: audit 2024-02-10T07:55:39.199721+0000 mon.smithi007 (mon.0) 40 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:40.193 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: { 2024-02-10T07:55:40.193 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2024-02-10T07:55:40.193 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "initialized": true 2024-02-10T07:55:40.193 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: } 2024-02-10T07:55:40.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:40 smithi007 bash[14094]: cephadm 2024-02-10T07:55:39.194977+0000 mgr.smithi007.lzuqsb (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-02-10T07:55:40.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:40 smithi007 bash[14094]: audit 2024-02-10T07:55:39.324756+0000 mon.smithi007 (mon.0) 41 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:40.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:40 smithi007 bash[14094]: audit 2024-02-10T07:55:39.326480+0000 mon.smithi007 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:55:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:40 smithi007 bash[14094]: audit 2024-02-10T07:55:39.329429+0000 mon.smithi007 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:55:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:40 smithi007 bash[14094]: audit 2024-02-10T07:55:39.338537+0000 mon.smithi007 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:55:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:40 smithi007 bash[14094]: audit 2024-02-10T07:55:39.354797+0000 mon.smithi007 (mon.0) 45 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.lzuqsb/mirror_snapshot_schedule"}]: dispatch 2024-02-10T07:55:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:40 smithi007 bash[14094]: audit 2024-02-10T07:55:39.358301+0000 mon.smithi007 (mon.0) 46 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.lzuqsb/trash_purge_schedule"}]: dispatch 2024-02-10T07:55:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:40 smithi007 bash[14094]: cluster 2024-02-10T07:55:40.176342+0000 mon.smithi007 (mon.0) 47 : cluster [DBG] mgrmap e7: smithi007.lzuqsb(active, since 1.01112s) 2024-02-10T07:55:40.880 INFO:teuthology.orchestra.run.smithi007.stderr:mgr epoch 5 is available 2024-02-10T07:55:40.880 INFO:teuthology.orchestra.run.smithi007.stderr:Setting orchestrator backend to cephadm... 2024-02-10T07:55:41.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:41 smithi007 bash[14094]: audit 2024-02-10T07:55:40.175794+0000 mgr.smithi007.lzuqsb (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-10T07:55:41.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:41 smithi007 bash[14094]: audit 2024-02-10T07:55:40.191474+0000 mgr.smithi007.lzuqsb (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-10T07:55:42.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:42 smithi007 bash[14094]: cluster 2024-02-10T07:55:41.330872+0000 mon.smithi007 (mon.0) 48 : cluster [DBG] mgrmap e8: smithi007.lzuqsb(active, since 2s) 2024-02-10T07:55:42.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:42 smithi007 bash[14094]: audit 2024-02-10T07:55:42.117127+0000 mon.smithi007 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:42.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:42 smithi007 bash[14094]: audit 2024-02-10T07:55:42.164036+0000 mon.smithi007 (mon.0) 50 : audit [DBG] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:55:43.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:43 smithi007 bash[14094]: audit 2024-02-10T07:55:42.110190+0000 mgr.smithi007.lzuqsb (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-10T07:55:44.009 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: value unchanged 2024-02-10T07:55:44.644 INFO:teuthology.orchestra.run.smithi007.stderr:Generating ssh key... 2024-02-10T07:55:44.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:44 smithi007 bash[14094]: audit 2024-02-10T07:55:44.008315+0000 mgr.smithi007.lzuqsb (mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:55:47.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:47 smithi007 bash[14094]: audit 2024-02-10T07:55:45.970444+0000 mgr.smithi007.lzuqsb (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:55:47.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:47 smithi007 bash[14094]: cephadm 2024-02-10T07:55:45.970843+0000 mgr.smithi007.lzuqsb (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2024-02-10T07:55:47.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:47 smithi007 bash[14094]: audit 2024-02-10T07:55:46.235257+0000 mon.smithi007 (mon.0) 51 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:47.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:47 smithi007 bash[14094]: audit 2024-02-10T07:55:46.238416+0000 mon.smithi007 (mon.0) 52 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:48.138 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDqrLQlTTz5ITvGGoQzXpv9Nr8tkeAEerLvWboYoESXJrVGiac7Lg5Tvc+ByoUPOo4sOGreQ6zL68yaI57XOtHTvIltS0XeycOr8WvAAoBJT4MKuoUPuP0Dc3U8BMMZ60OLbT1r9g0EJN67qmz0q6Mf8wqz1lLRK5FItxnjUpqKrg5FxYWguSzj8Mwdwo+Kyn2A3OQdIpj969k/f3EXoE2r3CKth2HWDp1VLRkESd7NQzRjJrNRKZw8eJryeP6p0QLvWkPbLzHWF3sD9Ri1wBKCc3+H0mG+zyPIr9kUqPsZWrEL0W98qB8+ObJLovLikHnGnk59iplQgBoC0mUpHIlffmI/4GHTzojPeQw18H6b7lVD0ESl0Kmz9TUo9M9D9IzUpoOvxiHahvbjC6qqb1HdBzI5OWDCwvLcCQP/K/n7+ZVww0i9e2ey6rG5Y47mbH2WbSWcxjtmpA0S3H24LQcoILDIkwUnN3/1pPhv7tzjOZjA6BJmm/P9AXCnEETsF60= ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:55:48.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:48 smithi007 bash[14094]: audit 2024-02-10T07:55:48.136854+0000 mgr.smithi007.lzuqsb (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:55:48.791 INFO:teuthology.orchestra.run.smithi007.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-02-10T07:55:48.791 INFO:teuthology.orchestra.run.smithi007.stderr:Adding key to root@localhost authorized_keys... 2024-02-10T07:55:48.792 INFO:teuthology.orchestra.run.smithi007.stderr:Adding host smithi007... 2024-02-10T07:55:50.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:50 smithi007 bash[14094]: audit 2024-02-10T07:55:50.121131+0000 mgr.smithi007.lzuqsb (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi007", "addr": "172.21.15.7", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:55:51.000 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: Added host 'smithi007' with addr '172.21.15.7' 2024-02-10T07:55:51.821 INFO:teuthology.orchestra.run.smithi007.stderr:Deploying mon service with default placement... 2024-02-10T07:55:52.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:51 smithi007 bash[14094]: audit 2024-02-10T07:55:50.997954+0000 mon.smithi007 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:52.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:51 smithi007 bash[14094]: cephadm 2024-02-10T07:55:50.998700+0000 mgr.smithi007.lzuqsb (mgr.14116) 10 : cephadm [INF] Added host smithi007 2024-02-10T07:55:52.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:51 smithi007 bash[14094]: audit 2024-02-10T07:55:51.012492+0000 mon.smithi007 (mon.0) 54 : audit [DBG] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:55:53.881 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: Scheduled mon update... 2024-02-10T07:55:54.744 INFO:teuthology.orchestra.run.smithi007.stderr:Deploying mgr service with default placement... 2024-02-10T07:55:55.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:54 smithi007 bash[14094]: audit 2024-02-10T07:55:53.876493+0000 mgr.smithi007.lzuqsb (mgr.14116) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:55:55.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:54 smithi007 bash[14094]: cephadm 2024-02-10T07:55:53.877920+0000 mgr.smithi007.lzuqsb (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2024-02-10T07:55:55.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:54 smithi007 bash[14094]: audit 2024-02-10T07:55:53.880163+0000 mon.smithi007 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:55.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:54 smithi007 bash[14094]: audit 2024-02-10T07:55:54.371224+0000 mon.smithi007 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:55.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:54 smithi007 bash[14094]: audit 2024-02-10T07:55:54.615330+0000 mon.smithi007 (mon.0) 57 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:56.055 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: Scheduled mgr update... 2024-02-10T07:55:56.759 INFO:teuthology.orchestra.run.smithi007.stderr:Deploying crash service with default placement... 2024-02-10T07:55:57.468 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:57 smithi007 bash[14094]: audit 2024-02-10T07:55:56.046911+0000 mgr.smithi007.lzuqsb (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:55:57.469 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:57 smithi007 bash[14094]: cephadm 2024-02-10T07:55:56.049099+0000 mgr.smithi007.lzuqsb (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2024-02-10T07:55:57.469 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:57 smithi007 bash[14094]: audit 2024-02-10T07:55:56.053806+0000 mon.smithi007 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:55:58.054 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: Scheduled crash update... 2024-02-10T07:55:58.786 INFO:teuthology.orchestra.run.smithi007.stderr:Deploying prometheus service with default placement... 2024-02-10T07:55:59.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:59 smithi007 bash[14094]: audit 2024-02-10T07:55:58.045562+0000 mgr.smithi007.lzuqsb (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:55:59.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:59 smithi007 bash[14094]: cephadm 2024-02-10T07:55:58.047989+0000 mgr.smithi007.lzuqsb (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2024-02-10T07:55:59.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:55:59 smithi007 bash[14094]: audit 2024-02-10T07:55:58.052140+0000 mon.smithi007 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:00.157 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: Scheduled prometheus update... 2024-02-10T07:56:00.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:00 smithi007 bash[14094]: cluster 2024-02-10T07:55:59.176544+0000 mgr.smithi007.lzuqsb (mgr.14116) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:00.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:00 smithi007 bash[14094]: audit 2024-02-10T07:55:59.657098+0000 mon.smithi007 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:00.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:00 smithi007 bash[14094]: audit 2024-02-10T07:56:00.155459+0000 mon.smithi007 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:00.849 INFO:teuthology.orchestra.run.smithi007.stderr:Deploying grafana service with default placement... 2024-02-10T07:56:01.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:01 smithi007 bash[14094]: audit 2024-02-10T07:56:00.150197+0000 mgr.smithi007.lzuqsb (mgr.14116) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:56:01.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:01 smithi007 bash[14094]: cephadm 2024-02-10T07:56:00.151402+0000 mgr.smithi007.lzuqsb (mgr.14116) 19 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-02-10T07:56:02.153 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: Scheduled grafana update... 2024-02-10T07:56:02.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:02 smithi007 bash[14094]: cluster 2024-02-10T07:56:01.177035+0000 mgr.smithi007.lzuqsb (mgr.14116) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:02.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:02 smithi007 bash[14094]: audit 2024-02-10T07:56:02.152004+0000 mon.smithi007 (mon.0) 62 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:02.822 INFO:teuthology.orchestra.run.smithi007.stderr:Deploying node-exporter service with default placement... 2024-02-10T07:56:03.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:03 smithi007 bash[14094]: audit 2024-02-10T07:56:02.145902+0000 mgr.smithi007.lzuqsb (mgr.14116) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:56:03.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:03 smithi007 bash[14094]: cephadm 2024-02-10T07:56:02.148035+0000 mgr.smithi007.lzuqsb (mgr.14116) 22 : cephadm [INF] Saving service grafana spec with placement count:1 2024-02-10T07:56:04.146 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2024-02-10T07:56:04.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:04 smithi007 bash[14094]: cluster 2024-02-10T07:56:03.177436+0000 mgr.smithi007.lzuqsb (mgr.14116) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:04.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:04 smithi007 bash[14094]: audit 2024-02-10T07:56:04.144029+0000 mon.smithi007 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:04.838 INFO:teuthology.orchestra.run.smithi007.stderr:Deploying alertmanager service with default placement... 2024-02-10T07:56:05.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:05 smithi007 bash[14094]: audit 2024-02-10T07:56:04.137362+0000 mgr.smithi007.lzuqsb (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-10T07:56:05.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:05 smithi007 bash[14094]: cephadm 2024-02-10T07:56:04.139611+0000 mgr.smithi007.lzuqsb (mgr.14116) 25 : cephadm [INF] Saving service node-exporter spec with placement * 2024-02-10T07:56:06.141 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2024-02-10T07:56:06.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:06 smithi007 bash[14094]: cluster 2024-02-10T07:56:05.177831+0000 mgr.smithi007.lzuqsb (mgr.14116) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:06.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:06 smithi007 bash[14094]: audit 2024-02-10T07:56:06.139227+0000 mon.smithi007 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.7:0/2224357486' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:07.505 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:07 smithi007 bash[14094]: audit 2024-02-10T07:56:06.132351+0000 mgr.smithi007.lzuqsb (mgr.14116) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:56:07.505 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:07 smithi007 bash[14094]: cephadm 2024-02-10T07:56:06.134701+0000 mgr.smithi007.lzuqsb (mgr.14116) 28 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-02-10T07:56:08.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:08 smithi007 bash[14094]: cluster 2024-02-10T07:56:07.178211+0000 mgr.smithi007.lzuqsb (mgr.14116) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:10.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:09 smithi007 bash[14094]: audit 2024-02-10T07:56:08.813234+0000 mon.smithi007 (mon.0) 65 : audit [INF] from='client.? 172.21.15.7:0/3205165389' entity='client.admin' 2024-02-10T07:56:10.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:09 smithi007 bash[14094]: cluster 2024-02-10T07:56:09.178642+0000 mgr.smithi007.lzuqsb (mgr.14116) 30 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:11.906 INFO:teuthology.orchestra.run.smithi007.stderr:Enabling the dashboard module... 2024-02-10T07:56:12.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:12 smithi007 bash[14094]: cluster 2024-02-10T07:56:11.179035+0000 mgr.smithi007.lzuqsb (mgr.14116) 31 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:12.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:12 smithi007 bash[14094]: audit 2024-02-10T07:56:11.224245+0000 mon.smithi007 (mon.0) 66 : audit [INF] from='client.? 172.21.15.7:0/1121548758' entity='client.admin' 2024-02-10T07:56:13.685 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:13 smithi007 bash[14094]: cluster 2024-02-10T07:56:13.179428+0000 mgr.smithi007.lzuqsb (mgr.14116) 32 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:13.685 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:13 smithi007 bash[14094]: audit 2024-02-10T07:56:13.298706+0000 mon.smithi007 (mon.0) 67 : audit [INF] from='client.? 172.21.15.7:0/626560258' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-02-10T07:56:14.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:14 smithi007 bash[14094]: audit 2024-02-10T07:56:13.428290+0000 mon.smithi007 (mon.0) 68 : audit [INF] from='client.? 172.21.15.7:0/626560258' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-02-10T07:56:14.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:14 smithi007 bash[14094]: cluster 2024-02-10T07:56:13.428413+0000 mon.smithi007 (mon.0) 69 : cluster [DBG] mgrmap e9: smithi007.lzuqsb(active, since 34s) 2024-02-10T07:56:15.776 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: { 2024-02-10T07:56:15.776 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "epoch": 9, 2024-02-10T07:56:15.776 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "available": true, 2024-02-10T07:56:15.777 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "active_name": "smithi007.lzuqsb", 2024-02-10T07:56:15.777 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-10T07:56:15.777 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: } 2024-02-10T07:56:15.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:15 smithi007 bash[14094]: audit 2024-02-10T07:56:15.774561+0000 mon.smithi007 (mon.0) 70 : audit [DBG] from='client.? 172.21.15.7:0/1864813656' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-10T07:56:16.412 INFO:teuthology.orchestra.run.smithi007.stderr:Waiting for the mgr to restart... 2024-02-10T07:56:16.412 INFO:teuthology.orchestra.run.smithi007.stderr:Waiting for mgr epoch 9... 2024-02-10T07:56:20.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:20 smithi007 bash[14094]: cluster 2024-02-10T07:56:20.301286+0000 mon.smithi007 (mon.0) 71 : cluster [INF] Active manager daemon smithi007.lzuqsb restarted 2024-02-10T07:56:20.537 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:20 smithi007 bash[14094]: cluster 2024-02-10T07:56:20.301730+0000 mon.smithi007 (mon.0) 72 : cluster [INF] Activating manager daemon smithi007.lzuqsb 2024-02-10T07:56:20.537 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:20 smithi007 bash[14094]: cluster 2024-02-10T07:56:20.307832+0000 mon.smithi007 (mon.0) 73 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-02-10T07:56:20.537 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:20 smithi007 bash[14094]: cluster 2024-02-10T07:56:20.308057+0000 mon.smithi007 (mon.0) 74 : cluster [DBG] mgrmap e10: smithi007.lzuqsb(active, starting, since 0.00649893s) 2024-02-10T07:56:20.537 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:20 smithi007 bash[14094]: audit 2024-02-10T07:56:20.308810+0000 mon.smithi007 (mon.0) 75 : audit [DBG] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi007"}]: dispatch 2024-02-10T07:56:20.537 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:20 smithi007 bash[14094]: audit 2024-02-10T07:56:20.310735+0000 mon.smithi007 (mon.0) 76 : audit [DBG] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr metadata", "who": "smithi007.lzuqsb", "id": "smithi007.lzuqsb"}]: dispatch 2024-02-10T07:56:20.537 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:20 smithi007 bash[14094]: audit 2024-02-10T07:56:20.312039+0000 mon.smithi007 (mon.0) 77 : audit [DBG] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-10T07:56:20.537 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:20 smithi007 bash[14094]: audit 2024-02-10T07:56:20.312322+0000 mon.smithi007 (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-10T07:56:20.537 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:20 smithi007 bash[14094]: audit 2024-02-10T07:56:20.312589+0000 mon.smithi007 (mon.0) 79 : audit [DBG] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-10T07:56:20.537 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:20 smithi007 bash[14094]: cluster 2024-02-10T07:56:20.334509+0000 mon.smithi007 (mon.0) 80 : cluster [INF] Manager daemon smithi007.lzuqsb is now available 2024-02-10T07:56:21.329 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: { 2024-02-10T07:56:21.330 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2024-02-10T07:56:21.330 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: "initialized": true 2024-02-10T07:56:21.330 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: } 2024-02-10T07:56:21.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:21 smithi007 bash[14094]: audit 2024-02-10T07:56:20.480284+0000 mon.smithi007 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:56:21.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:21 smithi007 bash[14094]: audit 2024-02-10T07:56:20.482839+0000 mon.smithi007 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:56:21.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:21 smithi007 bash[14094]: audit 2024-02-10T07:56:20.535087+0000 mon.smithi007 (mon.0) 83 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.lzuqsb/mirror_snapshot_schedule"}]: dispatch 2024-02-10T07:56:21.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:21 smithi007 bash[14094]: audit 2024-02-10T07:56:20.540315+0000 mon.smithi007 (mon.0) 84 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.lzuqsb/trash_purge_schedule"}]: dispatch 2024-02-10T07:56:21.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:21 smithi007 bash[14094]: cluster 2024-02-10T07:56:21.312582+0000 mon.smithi007 (mon.0) 85 : cluster [DBG] mgrmap e11: smithi007.lzuqsb(active, since 1.01101s) 2024-02-10T07:56:22.061 INFO:teuthology.orchestra.run.smithi007.stderr:mgr epoch 9 is available 2024-02-10T07:56:22.062 INFO:teuthology.orchestra.run.smithi007.stderr:Generating a dashboard self-signed certificate... 2024-02-10T07:56:22.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:22 smithi007 bash[14094]: audit 2024-02-10T07:56:21.311590+0000 mgr.smithi007.lzuqsb (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-10T07:56:22.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:22 smithi007 bash[14094]: audit 2024-02-10T07:56:21.327807+0000 mgr.smithi007.lzuqsb (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-10T07:56:23.428 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: Self-signed certificate created 2024-02-10T07:56:23.668 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:23 smithi007 bash[14094]: cluster 2024-02-10T07:56:22.360655+0000 mon.smithi007 (mon.0) 86 : cluster [DBG] mgrmap e12: smithi007.lzuqsb(active, since 2s) 2024-02-10T07:56:24.077 INFO:teuthology.orchestra.run.smithi007.stderr:Creating initial admin user... 2024-02-10T07:56:24.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:24 smithi007 bash[14094]: audit 2024-02-10T07:56:23.386763+0000 mgr.smithi007.lzuqsb (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:56:24.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:24 smithi007 bash[14094]: audit 2024-02-10T07:56:23.422976+0000 mon.smithi007 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:24.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:24 smithi007 bash[14094]: audit 2024-02-10T07:56:23.426038+0000 mon.smithi007 (mon.0) 88 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:25.728 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$RCFitjMgblOXwRvOwSmkw.1HDTnUlGvBzvAZBRreLGDp3.uz7Vveu", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1707551785, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-02-10T07:56:25.943 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:25 smithi007 bash[14094]: audit 2024-02-10T07:56:25.432526+0000 mgr.smithi007.lzuqsb (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-10T07:56:26.382 INFO:teuthology.orchestra.run.smithi007.stderr:Fetching dashboard port number... 2024-02-10T07:56:26.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:26 smithi007 bash[14094]: audit 2024-02-10T07:56:25.723376+0000 mon.smithi007 (mon.0) 89 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:27.668 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: 8443 2024-02-10T07:56:27.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:27 smithi007 bash[14094]: cluster 2024-02-10T07:56:26.730808+0000 mon.smithi007 (mon.0) 90 : cluster [DBG] mgrmap e13: smithi007.lzuqsb(active, since 6s) 2024-02-10T07:56:27.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:27 smithi007 bash[14094]: audit 2024-02-10T07:56:27.365158+0000 mon.smithi007 (mon.0) 91 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:27.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:27 smithi007 bash[14094]: audit 2024-02-10T07:56:27.667053+0000 mon.smithi007 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.7:0/3964727540' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-02-10T07:56:28.413 INFO:teuthology.orchestra.run.smithi007.stderr:firewalld does not appear to be present 2024-02-10T07:56:28.413 INFO:teuthology.orchestra.run.smithi007.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2024-02-10T07:56:28.417 INFO:teuthology.orchestra.run.smithi007.stderr:Ceph Dashboard is now available at: 2024-02-10T07:56:28.417 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:56:28.417 INFO:teuthology.orchestra.run.smithi007.stderr: URL: https://smithi007.front.sepia.ceph.com:8443/ 2024-02-10T07:56:28.418 INFO:teuthology.orchestra.run.smithi007.stderr: User: admin 2024-02-10T07:56:28.418 INFO:teuthology.orchestra.run.smithi007.stderr: Password: 936l8z3d6n 2024-02-10T07:56:28.418 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:56:28.418 INFO:teuthology.orchestra.run.smithi007.stderr:Enabling autotune for osd_memory_target 2024-02-10T07:56:31.914 INFO:teuthology.orchestra.run.smithi007.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2024-02-10T07:56:32.558 INFO:teuthology.orchestra.run.smithi007.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr:Or, if you are only running a single cluster on this host: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr:Please consider enabling telemetry to help improve Ceph: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: ceph telemetry on 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr:For more information see: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:56:32.559 INFO:teuthology.orchestra.run.smithi007.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2024-02-10T07:56:32.560 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T07:56:32.560 INFO:teuthology.orchestra.run.smithi007.stderr:Bootstrap complete. 2024-02-10T07:56:32.598 INFO:tasks.cephadm:Fetching config... 2024-02-10T07:56:32.598 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:56:32.599 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-02-10T07:56:32.606 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-02-10T07:56:32.606 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:56:32.606 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-02-10T07:56:32.652 INFO:tasks.cephadm:Fetching mon keyring... 2024-02-10T07:56:32.652 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:56:32.652 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/keyring of=/dev/stdout 2024-02-10T07:56:32.709 INFO:tasks.cephadm:Fetching pub ssh key... 2024-02-10T07:56:32.709 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:56:32.710 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-02-10T07:56:32.757 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-02-10T07:56:32.757 DEBUG:teuthology.orchestra.run.smithi007:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDqrLQlTTz5ITvGGoQzXpv9Nr8tkeAEerLvWboYoESXJrVGiac7Lg5Tvc+ByoUPOo4sOGreQ6zL68yaI57XOtHTvIltS0XeycOr8WvAAoBJT4MKuoUPuP0Dc3U8BMMZ60OLbT1r9g0EJN67qmz0q6Mf8wqz1lLRK5FItxnjUpqKrg5FxYWguSzj8Mwdwo+Kyn2A3OQdIpj969k/f3EXoE2r3CKth2HWDp1VLRkESd7NQzRjJrNRKZw8eJryeP6p0QLvWkPbLzHWF3sD9Ri1wBKCc3+H0mG+zyPIr9kUqPsZWrEL0W98qB8+ObJLovLikHnGnk59iplQgBoC0mUpHIlffmI/4GHTzojPeQw18H6b7lVD0ESl0Kmz9TUo9M9D9IzUpoOvxiHahvbjC6qqb1HdBzI5OWDCwvLcCQP/K/n7+ZVww0i9e2ey6rG5Y47mbH2WbSWcxjtmpA0S3H24LQcoILDIkwUnN3/1pPhv7tzjOZjA6BJmm/P9AXCnEETsF60= ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-10T07:56:32.821 INFO:teuthology.orchestra.run.smithi007.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDqrLQlTTz5ITvGGoQzXpv9Nr8tkeAEerLvWboYoESXJrVGiac7Lg5Tvc+ByoUPOo4sOGreQ6zL68yaI57XOtHTvIltS0XeycOr8WvAAoBJT4MKuoUPuP0Dc3U8BMMZ60OLbT1r9g0EJN67qmz0q6Mf8wqz1lLRK5FItxnjUpqKrg5FxYWguSzj8Mwdwo+Kyn2A3OQdIpj969k/f3EXoE2r3CKth2HWDp1VLRkESd7NQzRjJrNRKZw8eJryeP6p0QLvWkPbLzHWF3sD9Ri1wBKCc3+H0mG+zyPIr9kUqPsZWrEL0W98qB8+ObJLovLikHnGnk59iplQgBoC0mUpHIlffmI/4GHTzojPeQw18H6b7lVD0ESl0Kmz9TUo9M9D9IzUpoOvxiHahvbjC6qqb1HdBzI5OWDCwvLcCQP/K/n7+ZVww0i9e2ey6rG5Y47mbH2WbSWcxjtmpA0S3H24LQcoILDIkwUnN3/1pPhv7tzjOZjA6BJmm/P9AXCnEETsF60= ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:56:32.829 DEBUG:teuthology.orchestra.run.smithi123:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDqrLQlTTz5ITvGGoQzXpv9Nr8tkeAEerLvWboYoESXJrVGiac7Lg5Tvc+ByoUPOo4sOGreQ6zL68yaI57XOtHTvIltS0XeycOr8WvAAoBJT4MKuoUPuP0Dc3U8BMMZ60OLbT1r9g0EJN67qmz0q6Mf8wqz1lLRK5FItxnjUpqKrg5FxYWguSzj8Mwdwo+Kyn2A3OQdIpj969k/f3EXoE2r3CKth2HWDp1VLRkESd7NQzRjJrNRKZw8eJryeP6p0QLvWkPbLzHWF3sD9Ri1wBKCc3+H0mG+zyPIr9kUqPsZWrEL0W98qB8+ObJLovLikHnGnk59iplQgBoC0mUpHIlffmI/4GHTzojPeQw18H6b7lVD0ESl0Kmz9TUo9M9D9IzUpoOvxiHahvbjC6qqb1HdBzI5OWDCwvLcCQP/K/n7+ZVww0i9e2ey6rG5Y47mbH2WbSWcxjtmpA0S3H24LQcoILDIkwUnN3/1pPhv7tzjOZjA6BJmm/P9AXCnEETsF60= ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-10T07:56:32.852 INFO:teuthology.orchestra.run.smithi123.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDqrLQlTTz5ITvGGoQzXpv9Nr8tkeAEerLvWboYoESXJrVGiac7Lg5Tvc+ByoUPOo4sOGreQ6zL68yaI57XOtHTvIltS0XeycOr8WvAAoBJT4MKuoUPuP0Dc3U8BMMZ60OLbT1r9g0EJN67qmz0q6Mf8wqz1lLRK5FItxnjUpqKrg5FxYWguSzj8Mwdwo+Kyn2A3OQdIpj969k/f3EXoE2r3CKth2HWDp1VLRkESd7NQzRjJrNRKZw8eJryeP6p0QLvWkPbLzHWF3sD9Ri1wBKCc3+H0mG+zyPIr9kUqPsZWrEL0W98qB8+ObJLovLikHnGnk59iplQgBoC0mUpHIlffmI/4GHTzojPeQw18H6b7lVD0ESl0Kmz9TUo9M9D9IzUpoOvxiHahvbjC6qqb1HdBzI5OWDCwvLcCQP/K/n7+ZVww0i9e2ey6rG5Y47mbH2WbSWcxjtmpA0S3H24LQcoILDIkwUnN3/1pPhv7tzjOZjA6BJmm/P9AXCnEETsF60= ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:56:32.862 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-02-10T07:56:33.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:32 smithi007 bash[14094]: audit 2024-02-10T07:56:31.909234+0000 mon.smithi007 (mon.0) 93 : audit [INF] from='client.? 172.21.15.7:0/2615886679' entity='client.admin' 2024-02-10T07:56:39.013 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-02-10T07:56:39.013 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-02-10T07:56:39.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:38 smithi007 bash[14094]: audit 2024-02-10T07:56:37.986396+0000 mon.smithi007 (mon.0) 94 : audit [INF] from='client.? 172.21.15.7:0/18290761' entity='client.admin' 2024-02-10T07:56:41.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:41 smithi007 bash[14094]: cluster 2024-02-10T07:56:40.313848+0000 mgr.smithi007.lzuqsb (mgr.14156) 5 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:43.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:43 smithi007 bash[14094]: audit 2024-02-10T07:56:42.048293+0000 mon.smithi007 (mon.0) 95 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:43.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:43 smithi007 bash[14094]: audit 2024-02-10T07:56:42.371851+0000 mon.smithi007 (mon.0) 96 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd/host:smithi007", "name": "osd_memory_target"}]: dispatch 2024-02-10T07:56:43.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:43 smithi007 bash[14094]: audit 2024-02-10T07:56:42.377057+0000 mon.smithi007 (mon.0) 97 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:43.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:43 smithi007 bash[14094]: cephadm 2024-02-10T07:56:42.392375+0000 mgr.smithi007.lzuqsb (mgr.14156) 7 : cephadm [INF] Deploying daemon alertmanager.smithi007 on smithi007 2024-02-10T07:56:43.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:43 smithi007 bash[14094]: audit 2024-02-10T07:56:42.607495+0000 mon.smithi007 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:43.514 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi123 2024-02-10T07:56:43.515 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T07:56:43.515 DEBUG:teuthology.orchestra.run.smithi123:> dd of=/etc/ceph/ceph.conf 2024-02-10T07:56:43.522 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T07:56:43.522 DEBUG:teuthology.orchestra.run.smithi123:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-10T07:56:43.569 INFO:tasks.cephadm:Adding host smithi123 to orchestrator... 2024-02-10T07:56:43.569 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph orch host add smithi123 2024-02-10T07:56:44.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:44 smithi007 bash[14094]: audit 2024-02-10T07:56:42.603871+0000 mgr.smithi007.lzuqsb (mgr.14156) 8 : 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-10T07:56:45.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:45 smithi007 bash[14094]: cluster 2024-02-10T07:56:44.314474+0000 mgr.smithi007.lzuqsb (mgr.14156) 9 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:47.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:47 smithi007 bash[14094]: cluster 2024-02-10T07:56:46.314822+0000 mgr.smithi007.lzuqsb (mgr.14156) 10 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:49.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:49 smithi007 bash[14094]: cluster 2024-02-10T07:56:48.315245+0000 mgr.smithi007.lzuqsb (mgr.14156) 11 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:51.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:51 smithi007 bash[14094]: cluster 2024-02-10T07:56:50.315547+0000 mgr.smithi007.lzuqsb (mgr.14156) 12 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:51.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:51 smithi007 bash[14094]: audit 2024-02-10T07:56:50.732799+0000 mon.smithi007 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:51.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:51 smithi007 bash[14094]: audit 2024-02-10T07:56:50.735134+0000 mon.smithi007 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi007", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-10T07:56:51.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:51 smithi007 bash[14094]: audit 2024-02-10T07:56:50.738026+0000 mon.smithi007 (mon.0) 101 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi007", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-10T07:56:51.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:51 smithi007 bash[14094]: audit 2024-02-10T07:56:50.739311+0000 mon.smithi007 (mon.0) 102 : audit [DBG] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:56:52.737 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:52 smithi007 bash[14094]: cephadm 2024-02-10T07:56:50.740531+0000 mgr.smithi007.lzuqsb (mgr.14156) 13 : cephadm [INF] Deploying daemon crash.smithi007 on smithi007 2024-02-10T07:56:53.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:53 smithi007 bash[14094]: cluster 2024-02-10T07:56:52.315828+0000 mgr.smithi007.lzuqsb (mgr.14156) 14 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:54.740 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:54 smithi007 bash[14094]: audit 2024-02-10T07:56:53.720158+0000 mon.smithi007 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:54.740 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:54 smithi007 bash[14094]: audit 2024-02-10T07:56:53.833629+0000 mon.smithi007 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:54.740 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:54 smithi007 bash[14094]: audit 2024-02-10T07:56:53.836576+0000 mon.smithi007 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:54.740 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:54 smithi007 bash[14094]: audit 2024-02-10T07:56:53.839380+0000 mon.smithi007 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-10T07:56:54.741 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:54 smithi007 bash[14094]: audit 2024-02-10T07:56:53.840000+0000 mgr.smithi007.lzuqsb (mgr.14156) 15 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-10T07:56:54.741 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:54 smithi007 bash[14094]: audit 2024-02-10T07:56:53.843830+0000 mon.smithi007 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:54.741 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:54 smithi007 bash[14094]: cephadm 2024-02-10T07:56:53.856429+0000 mgr.smithi007.lzuqsb (mgr.14156) 16 : cephadm [INF] Deploying daemon grafana.smithi007 on smithi007 2024-02-10T07:56:54.741 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:54 smithi007 bash[14094]: cluster 2024-02-10T07:56:54.316167+0000 mgr.smithi007.lzuqsb (mgr.14156) 17 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:56.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:56 smithi007 bash[14094]: audit 2024-02-10T07:56:55.534601+0000 mon.smithi007 (mon.0) 108 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:56:56.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:56 smithi007 bash[14094]: cluster 2024-02-10T07:56:56.316570+0000 mgr.smithi007.lzuqsb (mgr.14156) 18 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:56:59.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:56:59 smithi007 bash[14094]: cluster 2024-02-10T07:56:58.316975+0000 mgr.smithi007.lzuqsb (mgr.14156) 19 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:01.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:01 smithi007 bash[14094]: cluster 2024-02-10T07:57:00.317358+0000 mgr.smithi007.lzuqsb (mgr.14156) 20 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:03.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:03 smithi007 bash[14094]: cluster 2024-02-10T07:57:02.317775+0000 mgr.smithi007.lzuqsb (mgr.14156) 21 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:05.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:05 smithi007 bash[14094]: cluster 2024-02-10T07:57:04.318224+0000 mgr.smithi007.lzuqsb (mgr.14156) 22 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:07.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:07 smithi007 bash[14094]: cluster 2024-02-10T07:57:06.318657+0000 mgr.smithi007.lzuqsb (mgr.14156) 23 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:09.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:09 smithi007 bash[14094]: cluster 2024-02-10T07:57:08.319073+0000 mgr.smithi007.lzuqsb (mgr.14156) 24 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:11.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:11 smithi007 bash[14094]: cluster 2024-02-10T07:57:10.319511+0000 mgr.smithi007.lzuqsb (mgr.14156) 25 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:13 smithi007 bash[14094]: cluster 2024-02-10T07:57:12.320074+0000 mgr.smithi007.lzuqsb (mgr.14156) 26 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:15.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:15 smithi007 bash[14094]: cluster 2024-02-10T07:57:14.320521+0000 mgr.smithi007.lzuqsb (mgr.14156) 27 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:15.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:15 smithi007 bash[14094]: audit 2024-02-10T07:57:14.828783+0000 mon.smithi007 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:16.573 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:16 smithi007 bash[14094]: cephadm 2024-02-10T07:57:14.832550+0000 mgr.smithi007.lzuqsb (mgr.14156) 28 : cephadm [INF] Deploying daemon node-exporter.smithi007 on smithi007 2024-02-10T07:57:16.573 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:16 smithi007 bash[14094]: audit 2024-02-10T07:57:15.522640+0000 mon.smithi007 (mon.0) 110 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:16.573 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:16 smithi007 bash[14094]: audit 2024-02-10T07:57:15.526684+0000 mon.smithi007 (mon.0) 111 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-02-10T07:57:16.573 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:16 smithi007 bash[14094]: audit 2024-02-10T07:57:15.540697+0000 mon.smithi007 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:17.655 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:17 smithi007 bash[14094]: cluster 2024-02-10T07:57:16.320820+0000 mgr.smithi007.lzuqsb (mgr.14156) 29 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:17.655 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:17 smithi007 bash[14094]: audit 2024-02-10T07:57:16.527627+0000 mon.smithi007 (mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.7:0/4256744016' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-02-10T07:57:17.655 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:17 smithi007 bash[14094]: cluster 2024-02-10T07:57:16.527745+0000 mon.smithi007 (mon.0) 114 : cluster [DBG] mgrmap e14: smithi007.lzuqsb(active, since 56s) 2024-02-10T07:57:23.663 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:23 smithi007 bash[14094]: cluster 2024-02-10T07:57:23.452593+0000 mon.smithi007 (mon.0) 115 : cluster [INF] Active manager daemon smithi007.lzuqsb restarted 2024-02-10T07:57:23.664 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:23 smithi007 bash[14094]: cluster 2024-02-10T07:57:23.452971+0000 mon.smithi007 (mon.0) 116 : cluster [INF] Activating manager daemon smithi007.lzuqsb 2024-02-10T07:57:23.664 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:23 smithi007 bash[14094]: cluster 2024-02-10T07:57:23.458295+0000 mon.smithi007 (mon.0) 117 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-02-10T07:57:23.664 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:23 smithi007 bash[14094]: cluster 2024-02-10T07:57:23.458598+0000 mon.smithi007 (mon.0) 118 : cluster [DBG] mgrmap e15: smithi007.lzuqsb(active, starting, since 0.00578503s) 2024-02-10T07:57:23.664 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:23 smithi007 bash[14094]: audit 2024-02-10T07:57:23.459828+0000 mon.smithi007 (mon.0) 119 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi007"}]: dispatch 2024-02-10T07:57:23.664 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:23 smithi007 bash[14094]: audit 2024-02-10T07:57:23.461350+0000 mon.smithi007 (mon.0) 120 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr metadata", "who": "smithi007.lzuqsb", "id": "smithi007.lzuqsb"}]: dispatch 2024-02-10T07:57:23.664 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:23 smithi007 bash[14094]: audit 2024-02-10T07:57:23.462230+0000 mon.smithi007 (mon.0) 121 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-10T07:57:23.664 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:23 smithi007 bash[14094]: audit 2024-02-10T07:57:23.462486+0000 mon.smithi007 (mon.0) 122 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-10T07:57:23.664 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:23 smithi007 bash[14094]: audit 2024-02-10T07:57:23.462714+0000 mon.smithi007 (mon.0) 123 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-10T07:57:23.664 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:23 smithi007 bash[14094]: cluster 2024-02-10T07:57:23.485613+0000 mon.smithi007 (mon.0) 124 : cluster [INF] Manager daemon smithi007.lzuqsb is now available 2024-02-10T07:57:24.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:24 smithi007 bash[14094]: audit 2024-02-10T07:57:23.623654+0000 mon.smithi007 (mon.0) 125 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:57:24.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:24 smithi007 bash[14094]: audit 2024-02-10T07:57:23.625468+0000 mon.smithi007 (mon.0) 126 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:57:24.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:24 smithi007 bash[14094]: audit 2024-02-10T07:57:23.663122+0000 mon.smithi007 (mon.0) 127 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:24.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:24 smithi007 bash[14094]: audit 2024-02-10T07:57:23.680142+0000 mon.smithi007 (mon.0) 128 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.lzuqsb/mirror_snapshot_schedule"}]: dispatch 2024-02-10T07:57:24.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:24 smithi007 bash[14094]: audit 2024-02-10T07:57:23.687441+0000 mon.smithi007 (mon.0) 129 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.lzuqsb/trash_purge_schedule"}]: dispatch 2024-02-10T07:57:24.742 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:24 smithi007 bash[14094]: cluster 2024-02-10T07:57:24.462343+0000 mon.smithi007 (mon.0) 130 : cluster [DBG] mgrmap e16: smithi007.lzuqsb(active, since 1.00953s) 2024-02-10T07:57:26.603 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:26 smithi007 bash[14094]: cluster 2024-02-10T07:57:25.511559+0000 mon.smithi007 (mon.0) 131 : cluster [DBG] mgrmap e17: smithi007.lzuqsb(active, since 2s) 2024-02-10T07:57:26.796 INFO:teuthology.orchestra.run.smithi123.stdout:Added host 'smithi123' with addr '172.21.15.123' 2024-02-10T07:57:27.436 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph orch host ls --format=json 2024-02-10T07:57:27.631 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:27 smithi007 bash[14094]: audit 2024-02-10T07:57:25.957202+0000 mgr.smithi007.lzuqsb (mgr.14180) 1 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi123", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:57:27.631 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:27 smithi007 bash[14094]: audit 2024-02-10T07:57:26.793812+0000 mon.smithi007 (mon.0) 132 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:28.685 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:28 smithi007 bash[14094]: cephadm 2024-02-10T07:57:26.794382+0000 mgr.smithi007.lzuqsb (mgr.14180) 2 : cephadm [INF] Added host smithi123 2024-02-10T07:57:30.148 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-02-10T07:57:30.149 INFO:teuthology.orchestra.run.smithi123.stdout:[{"addr": "172.21.15.7", "hostname": "smithi007", "labels": [], "status": ""}, {"addr": "172.21.15.123", "hostname": "smithi123", "labels": [], "status": ""}] 2024-02-10T07:57:30.651 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:30 smithi007 bash[14094]: audit 2024-02-10T07:57:29.462909+0000 mon.smithi007 (mon.0) 133 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:30.651 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:30 smithi007 bash[14094]: audit 2024-02-10T07:57:29.741502+0000 mon.smithi007 (mon.0) 134 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd/host:smithi007", "name": "osd_memory_target"}]: dispatch 2024-02-10T07:57:30.652 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:30 smithi007 bash[14094]: audit 2024-02-10T07:57:29.743494+0000 mon.smithi007 (mon.0) 135 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:57:30.652 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:30 smithi007 bash[14094]: audit 2024-02-10T07:57:29.744926+0000 mon.smithi007 (mon.0) 136 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T07:57:30.652 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:30 smithi007 bash[14094]: audit 2024-02-10T07:57:29.834188+0000 mon.smithi007 (mon.0) 137 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:30.652 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:30 smithi007 bash[14094]: audit 2024-02-10T07:57:29.837723+0000 mon.smithi007 (mon.0) 138 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:30.781 INFO:tasks.cephadm:Setting crush tunables to default 2024-02-10T07:57:30.781 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd crush tunables default 2024-02-10T07:57:31.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:31 smithi007 bash[14094]: cephadm 2024-02-10T07:57:29.746875+0000 mgr.smithi007.lzuqsb (mgr.14180) 3 : cephadm [INF] Updating smithi007:/etc/ceph/ceph.conf 2024-02-10T07:57:31.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:31 smithi007 bash[14094]: cephadm 2024-02-10T07:57:29.784893+0000 mgr.smithi007.lzuqsb (mgr.14180) 4 : cephadm [INF] Updating smithi007:/etc/ceph/ceph.client.admin.keyring 2024-02-10T07:57:31.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:31 smithi007 bash[14094]: cephadm 2024-02-10T07:57:29.855347+0000 mgr.smithi007.lzuqsb (mgr.14180) 5 : cephadm [INF] Deploying daemon prometheus.smithi007 on smithi007 2024-02-10T07:57:31.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:31 smithi007 bash[14094]: audit 2024-02-10T07:57:30.145861+0000 mgr.smithi007.lzuqsb (mgr.14180) 6 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-10T07:57:37.295 INFO:teuthology.orchestra.run.smithi007.stderr:adjusted tunables profile to default 2024-02-10T07:57:37.606 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:37 smithi007 bash[14094]: audit 2024-02-10T07:57:37.236706+0000 mon.smithi007 (mon.0) 139 : audit [INF] from='client.? 172.21.15.7:0/1007465126' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-02-10T07:57:38.690 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:38 smithi007 bash[14094]: audit 2024-02-10T07:57:37.290107+0000 mon.smithi007 (mon.0) 140 : audit [INF] from='client.? 172.21.15.7:0/1007465126' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-02-10T07:57:38.690 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:38 smithi007 bash[14094]: cluster 2024-02-10T07:57:37.290166+0000 mon.smithi007 (mon.0) 141 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-10T07:57:38.691 INFO:tasks.cephadm:Adding mon.smithi007 on smithi007 2024-02-10T07:57:38.691 INFO:tasks.cephadm:Adding mon.smithi123 on smithi123 2024-02-10T07:57:38.691 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph orch apply mon '2;smithi007:172.21.15.7=smithi007;smithi123:172.21.15.123=smithi123' 2024-02-10T07:57:41.334 INFO:teuthology.orchestra.run.smithi123.stdout:Scheduled mon update... 2024-02-10T07:57:41.952 DEBUG:teuthology.orchestra.run.smithi123:mon.smithi123> sudo journalctl -f -n 0 -u ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mon.smithi123.service 2024-02-10T07:57:41.954 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-10T07:57:41.955 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph mon dump -f json 2024-02-10T07:57:42.179 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-02-10T07:57:42.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:42 smithi007 bash[14094]: audit 2024-02-10T07:57:41.321485+0000 mgr.smithi007.lzuqsb (mgr.14180) 7 : audit [DBG] from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi007:172.21.15.7=smithi007;smithi123:172.21.15.123=smithi123", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:57:42.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:42 smithi007 bash[14094]: cephadm 2024-02-10T07:57:41.327018+0000 mgr.smithi007.lzuqsb (mgr.14180) 8 : cephadm [INF] Saving service mon spec with placement smithi007:172.21.15.7=smithi007;smithi123:172.21.15.123=smithi123;count:2 2024-02-10T07:57:42.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:42 smithi007 bash[14094]: audit 2024-02-10T07:57:41.332355+0000 mon.smithi007 (mon.0) 142 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:44.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:44 smithi007 bash[14094]: audit 2024-02-10T07:57:43.351198+0000 mon.smithi007 (mon.0) 143 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:44.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:44 smithi007 bash[14094]: audit 2024-02-10T07:57:43.353676+0000 mon.smithi007 (mon.0) 144 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:57:44.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:44 smithi007 bash[14094]: cluster 2024-02-10T07:57:43.464165+0000 mgr.smithi007.lzuqsb (mgr.14180) 9 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:44.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:44 smithi007 bash[14094]: audit 2024-02-10T07:57:43.666139+0000 mon.smithi007 (mon.0) 145 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:44 smithi007 bash[14094]: audit 2024-02-10T07:57:43.889030+0000 mon.smithi007 (mon.0) 146 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:44.646 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-02-10T07:57:44.646 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"96f67ea2-c7e9-11ee-95b8-87774f69a715","modified":"2024-02-10T07:55:06.681512Z","created":"2024-02-10T07:55:06.681512Z","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":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-10T07:57:44.650 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-02-10T07:57:45.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:45 smithi007 bash[14094]: audit 2024-02-10T07:57:44.643884+0000 mon.smithi007 (mon.0) 147 : audit [DBG] from='client.? 172.21.15.123:0/716357418' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-10T07:57:46.155 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-10T07:57:46.155 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph mon dump -f json 2024-02-10T07:57:46.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:46 smithi007 bash[14094]: cluster 2024-02-10T07:57:45.464652+0000 mgr.smithi007.lzuqsb (mgr.14180) 10 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:46.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:46 smithi007 bash[14094]: audit 2024-02-10T07:57:45.611404+0000 mon.smithi007 (mon.0) 148 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:48.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:48 smithi007 bash[14094]: cluster 2024-02-10T07:57:47.465067+0000 mgr.smithi007.lzuqsb (mgr.14180) 11 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:49.892 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-02-10T07:57:49.892 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"96f67ea2-c7e9-11ee-95b8-87774f69a715","modified":"2024-02-10T07:55:06.681512Z","created":"2024-02-10T07:55:06.681512Z","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":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-10T07:57:49.894 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-02-10T07:57:50.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:50 smithi007 bash[14094]: audit 2024-02-10T07:57:49.186393+0000 mon.smithi007 (mon.0) 149 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:50.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:50 smithi007 bash[14094]: cluster 2024-02-10T07:57:49.465436+0000 mgr.smithi007.lzuqsb (mgr.14180) 12 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:50.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:50 smithi007 bash[14094]: audit 2024-02-10T07:57:49.890397+0000 mon.smithi007 (mon.0) 150 : audit [DBG] from='client.? 172.21.15.123:0/4223391823' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-10T07:57:51.507 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-10T07:57:51.507 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph mon dump -f json 2024-02-10T07:57:52.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: cluster 2024-02-10T07:57:51.465911+0000 mgr.smithi007.lzuqsb (mgr.14180) 13 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:52.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: audit 2024-02-10T07:57:51.849171+0000 mon.smithi007 (mon.0) 151 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:52.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: audit 2024-02-10T07:57:52.200513+0000 mon.smithi007 (mon.0) 152 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:52.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: audit 2024-02-10T07:57:52.202139+0000 mon.smithi007 (mon.0) 153 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd/host:smithi123", "name": "osd_memory_target"}]: dispatch 2024-02-10T07:57:52.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: audit 2024-02-10T07:57:52.204002+0000 mon.smithi007 (mon.0) 154 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:57:52.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: audit 2024-02-10T07:57:52.205477+0000 mon.smithi007 (mon.0) 155 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T07:57:52.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: audit 2024-02-10T07:57:52.298777+0000 mon.smithi007 (mon.0) 156 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:52.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: audit 2024-02-10T07:57:52.303767+0000 mon.smithi007 (mon.0) 157 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:52.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: audit 2024-02-10T07:57:52.307668+0000 mon.smithi007 (mon.0) 158 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi123", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-10T07:57:52.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: audit 2024-02-10T07:57:52.310503+0000 mon.smithi007 (mon.0) 159 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi123", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-10T07:57:52.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:52 smithi007 bash[14094]: audit 2024-02-10T07:57:52.311756+0000 mon.smithi007 (mon.0) 160 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:57:53.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:53 smithi007 bash[14094]: cephadm 2024-02-10T07:57:52.207781+0000 mgr.smithi007.lzuqsb (mgr.14180) 14 : cephadm [INF] Updating smithi123:/etc/ceph/ceph.conf 2024-02-10T07:57:53.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:53 smithi007 bash[14094]: cephadm 2024-02-10T07:57:52.240041+0000 mgr.smithi007.lzuqsb (mgr.14180) 15 : cephadm [INF] Updating smithi123:/etc/ceph/ceph.client.admin.keyring 2024-02-10T07:57:53.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:53 smithi007 bash[14094]: cephadm 2024-02-10T07:57:52.312884+0000 mgr.smithi007.lzuqsb (mgr.14180) 16 : cephadm [INF] Deploying daemon crash.smithi123 on smithi123 2024-02-10T07:57:54.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:54 smithi007 bash[14094]: cluster 2024-02-10T07:57:53.466355+0000 mgr.smithi007.lzuqsb (mgr.14180) 17 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:55.387 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-02-10T07:57:55.388 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"96f67ea2-c7e9-11ee-95b8-87774f69a715","modified":"2024-02-10T07:55:06.681512Z","created":"2024-02-10T07:55:06.681512Z","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":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-10T07:57:55.391 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-02-10T07:57:55.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:55 smithi007 bash[14094]: audit 2024-02-10T07:57:55.386113+0000 mon.smithi007 (mon.0) 161 : audit [DBG] from='client.? 172.21.15.123:0/4046235050' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-10T07:57:56.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:56 smithi007 bash[14094]: cluster 2024-02-10T07:57:55.466790+0000 mgr.smithi007.lzuqsb (mgr.14180) 18 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:56.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:56 smithi007 bash[14094]: audit 2024-02-10T07:57:56.066935+0000 mon.smithi007 (mon.0) 162 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:56.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:56 smithi007 bash[14094]: audit 2024-02-10T07:57:56.071465+0000 mon.smithi007 (mon.0) 163 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi123.qhmycm", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-10T07:57:56.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:56 smithi007 bash[14094]: audit 2024-02-10T07:57:56.074080+0000 mon.smithi007 (mon.0) 164 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi123.qhmycm", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-02-10T07:57:56.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:56 smithi007 bash[14094]: audit 2024-02-10T07:57:56.075365+0000 mon.smithi007 (mon.0) 165 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-10T07:57:56.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:56 smithi007 bash[14094]: audit 2024-02-10T07:57:56.077177+0000 mon.smithi007 (mon.0) 166 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:57:57.017 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-10T07:57:57.018 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph mon dump -f json 2024-02-10T07:57:57.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:57 smithi007 bash[14094]: cephadm 2024-02-10T07:57:56.078404+0000 mgr.smithi007.lzuqsb (mgr.14180) 19 : cephadm [INF] Deploying daemon mgr.smithi123.qhmycm on smithi123 2024-02-10T07:57:58.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:58 smithi007 bash[14094]: cluster 2024-02-10T07:57:57.467141+0000 mgr.smithi007.lzuqsb (mgr.14180) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:57:59.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:59 smithi007 bash[14094]: audit 2024-02-10T07:57:58.675054+0000 mon.smithi007 (mon.0) 167 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:59.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:59 smithi007 bash[14094]: audit 2024-02-10T07:57:59.093866+0000 mon.smithi007 (mon.0) 168 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:57:59.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:59 smithi007 bash[14094]: audit 2024-02-10T07:57:59.097997+0000 mon.smithi007 (mon.0) 169 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-10T07:57:59.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:59 smithi007 bash[14094]: audit 2024-02-10T07:57:59.099561+0000 mon.smithi007 (mon.0) 170 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:57:59.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:59 smithi007 bash[14094]: cephadm 2024-02-10T07:57:59.100878+0000 mgr.smithi007.lzuqsb (mgr.14180) 21 : cephadm [INF] Deploying daemon mon.smithi123 on smithi123 2024-02-10T07:57:59.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:57:59 smithi007 bash[14094]: cluster 2024-02-10T07:57:59.467542+0000 mgr.smithi007.lzuqsb (mgr.14180) 22 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:01.567 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-02-10T07:58:01.567 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"96f67ea2-c7e9-11ee-95b8-87774f69a715","modified":"2024-02-10T07:55:06.681512Z","created":"2024-02-10T07:55:06.681512Z","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":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-10T07:58:01.569 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-02-10T07:58:02.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:02 smithi007 bash[14094]: cluster 2024-02-10T07:58:01.467985+0000 mgr.smithi007.lzuqsb (mgr.14180) 23 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:02.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:02 smithi007 bash[14094]: audit 2024-02-10T07:58:01.565303+0000 mon.smithi007 (mon.0) 171 : audit [DBG] from='client.? 172.21.15.123:0/2806259505' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-10T07:58:03.455 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-10T07:58:03.455 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph mon dump -f json 2024-02-10T07:58:04.028 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:03 smithi123 systemd[1]: Started Ceph mon.smithi123 for 96f67ea2-c7e9-11ee-95b8-87774f69a715. 2024-02-10T07:58:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:04 smithi007 bash[14094]: cluster 2024-02-10T07:58:03.468435+0000 mgr.smithi007.lzuqsb (mgr.14180) 24 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:04 smithi007 bash[14094]: audit 2024-02-10T07:58:03.681405+0000 mon.smithi007 (mon.0) 172 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:04 smithi007 bash[14094]: audit 2024-02-10T07:58:04.009866+0000 mon.smithi007 (mon.0) 173 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:05.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:05 smithi007 bash[14094]: cephadm 2024-02-10T07:58:04.013024+0000 mgr.smithi007.lzuqsb (mgr.14180) 25 : cephadm [INF] Deploying daemon node-exporter.smithi123 on smithi123 2024-02-10T07:58:05.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:05 smithi007 bash[14094]: audit 2024-02-10T07:58:04.735202+0000 mon.smithi007 (mon.0) 174 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:05.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:05 smithi007 bash[14094]: audit 2024-02-10T07:58:04.738825+0000 mon.smithi007 (mon.0) 175 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:58:06.322 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.251+0000 7fd1907d7880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.251+0000 7fd1907d7880 0 ceph version 16.2.14-521-g0e714d9a (0e714d9a4bd2a821113e6318adb87bd06cf81ec1) pacific (stable), process ceph-mon, pid 7 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.251+0000 7fd1907d7880 0 pidfile_write: ignore empty --pid-file 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 0 load: jerasure load: lrc load: isa 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: RocksDB version: 6.8.1 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Compile date Feb 8 2024 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: DB SUMMARY 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: CURRENT file: CURRENT 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi123/store.db dir, Total Num: 0, files: 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi123/store.db: 000003.log size: 511 ; 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.error_if_exists: 0 2024-02-10T07:58:06.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.create_if_missing: 0 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.paranoid_checks: 1 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.env: 0x559891a26080 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.fs: Posix File System 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.info_log: 0x5598936a0520 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.statistics: (nil) 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.use_fsync: 0 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_log_file_size: 0 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-10T07:58:06.324 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.allow_fallocate: 1 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.use_direct_reads: 0 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.db_log_dir: 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi123/store.db 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_subcompactions: 1 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_background_flushes: -1 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-10T07:58:06.325 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.write_buffer_manager: 0x5598942ee480 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-10T07:58:06.326 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-10T07:58:06.328 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-10T07:58:06.328 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.unordered_write: 0 2024-02-10T07:58:06.328 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-10T07:58:06.328 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-10T07:58:06.328 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.row_cache: None 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.wal_filter: None 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.preserve_deletes: 0 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.two_write_queues: 0 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.atomic_flush: 0 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-10T07:58:06.329 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.log_readahead_size: 0 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_background_jobs: 2 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_background_compactions: -1 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_open_files: -1 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-10T07:58:06.330 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Compression algorithms supported: 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: kZSTD supported: 0 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: kXpressCompression supported: 0 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: kLZ4Compression supported: 1 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: kBZip2Compression supported: 0 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: kZlibCompression supported: 1 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: kSnappyCompression supported: 1 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi123/store.db/MANIFEST-000001 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-10T07:58:06.331 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.merge_operator: 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_filter: None 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x559893643d28) 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: cache_index_and_filter_blocks: 1 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: pin_top_level_index_and_filter: 1 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: index_type: 0 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: data_block_index_type: 0 2024-02-10T07:58:06.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: index_shortening: 1 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: data_block_hash_table_util_ratio: 0.750000 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: hash_index_allow_collision: 1 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: checksum: 1 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: no_block_cache: 0 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: block_cache: 0x55989367af10 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: block_cache_name: BinnedLRUCache 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: block_cache_options: 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: capacity : 536870912 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: num_shard_bits : 4 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: strict_capacity_limit : 0 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: high_pri_pool_ratio: 0.000 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: block_cache_compressed: (nil) 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: persistent_cache: (nil) 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: block_size: 4096 2024-02-10T07:58:06.333 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: block_size_deviation: 10 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: block_restart_interval: 16 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: index_block_restart_interval: 1 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: metadata_block_size: 4096 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: partition_filters: 0 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: use_delta_encoding: 1 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: whole_key_filtering: 1 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: verify_compression: 0 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: read_amp_bytes_per_bit: 0 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: format_version: 2 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: enable_index_compression: 1 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: block_align: 0 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-10T07:58:06.334 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compression: NoCompression 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.num_levels: 7 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-10T07:58:06.335 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-10T07:58:06.336 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-10T07:58:06.337 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.table_properties_collectors: 2024-02-10T07:58:06.338 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.inplace_update_support: 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.bloom_locality: 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.max_successive_merges: 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.ttl: 2592000 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi123/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-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-10T07:58:06.339 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707551886262407, "job": 1, "event": "recovery_started", "log_files": [3]} 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 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-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707551886262968, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 4, "file_size": 1437, "table_properties": {"data_size": 523, "index_size": 40, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 0, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_deletions": 0, "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": 1707551886, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707551886263389, "job": 1, "event": "recovery_finished"} 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.259+0000 7fd1907d7880 4 rocksdb: DB pointer 0x559893743800 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.263+0000 7fd1775c8700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.263+0000 7fd1775c8700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ** DB Stats ** 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-10T07:58:06.340 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ** Compaction Stats [default] ** 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.000 0 0 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.000 0 0 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.000 0 0 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ** Compaction Stats [default] ** 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8 0.00 0.00 1 0.000 0 0 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-10T07:58:06.341 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: AddFile(Total Files): cumulative 0, interval 0 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: AddFile(Keys): cumulative 0, interval 0 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Cumulative compaction: 0.00 GB write, 0.49 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Interval compaction: 0.00 GB write, 0.49 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ** File Read Latency Histogram By Level [default] ** 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ** Compaction Stats [default] ** 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.000 0 0 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.000 0 0 2024-02-10T07:58:06.342 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ** Compaction Stats [default] ** 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8 0.00 0.00 1 0.000 0 0 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: AddFile(Total Files): cumulative 0, interval 0 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: AddFile(Keys): cumulative 0, interval 0 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: Cumulative compaction: 0.00 GB write, 0.48 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: ** File Read Latency Histogram By Level [default] ** 2024-02-10T07:58:06.343 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.263+0000 7fd1907d7880 0 mon.smithi123 does not exist in monmap, will attempt to join an existing cluster 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.263+0000 7fd1907d7880 0 using public_addr v2:172.21.15.123:0/0 -> [v2:172.21.15.123:3300/0,v1:172.21.15.123:6789/0] 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.263+0000 7fd1907d7880 0 starting mon.smithi123 rank -1 at public addrs [v2:172.21.15.123:3300/0,v1:172.21.15.123:6789/0] at bind addrs [v2:172.21.15.123:3300/0,v1:172.21.15.123:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi123 fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.263+0000 7fd1907d7880 1 mon.smithi123@-1(???) e0 preinit fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 0 mon.smithi123@-1(synchronizing).mds e1 new map 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 0 mon.smithi123@-1(synchronizing).mds e1 print_map 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: e1 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 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-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: legacy client fscid: -1 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: No filesystems configured 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 1 mon.smithi123@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-02-10T07:58:06.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 1 mon.smithi123@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 1 mon.smithi123@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 1 mon.smithi123@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 1 mon.smithi123@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 1 mon.smithi123@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 1 mon.smithi123@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 0 mon.smithi123@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 0 mon.smithi123@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 0 mon.smithi123@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 0 mon.smithi123@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: cephadm 2024-02-10T07:58:04.013024+0000 mgr.smithi007.lzuqsb (mgr.14180) 25 : cephadm [INF] Deploying daemon node-exporter.smithi123 on smithi123 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: audit 2024-02-10T07:58:04.735202+0000 mon.smithi007 (mon.0) 174 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: audit 2024-02-10T07:58:04.738825+0000 mon.smithi007 (mon.0) 175 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:58:06.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:06 smithi123 bash[18776]: debug 2024-02-10T07:58:06.303+0000 7fd179dcd700 1 mon.smithi123@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-02-10T07:58:11.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:06.308420+0000 mon.smithi007 (mon.0) 176 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:06.312866+0000 mon.smithi007 (mon.0) 177 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi007"}]: dispatch 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:06.313215+0000 mon.smithi007 (mon.0) 178 : cluster [INF] mon.smithi007 calling monitor election 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:06.331660+0000 mon.smithi007 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:07.308959+0000 mon.smithi007 (mon.0) 180 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:07.469288+0000 mgr.smithi007.lzuqsb (mgr.14180) 27 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:07.507856+0000 mon.smithi007 (mon.0) 181 : audit [DBG] from='mgr.? 172.21.15.123:0/859663564' entity='mgr.smithi123.qhmycm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi123.qhmycm/crt"}]: dispatch 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:08.308644+0000 mon.smithi007 (mon.0) 182 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:08.311549+0000 mon.smithi123 (mon.1) 1 : cluster [INF] mon.smithi123 calling monitor election 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:09.308988+0000 mon.smithi007 (mon.0) 183 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:09.469683+0000 mgr.smithi007.lzuqsb (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:10.309094+0000 mon.smithi007 (mon.0) 184 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:11.309384+0000 mon.smithi007 (mon.0) 185 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:11.352440+0000 mon.smithi007 (mon.0) 186 : cluster [INF] mon.smithi007 is new leader, mons smithi007,smithi123 in quorum (ranks 0,1) 2024-02-10T07:58:11.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:11.358025+0000 mon.smithi007 (mon.0) 187 : cluster [DBG] monmap e2: 2 mons at {smithi007=[v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0],smithi123=[v2:172.21.15.123:3300/0,v1:172.21.15.123:6789/0]} removed_ranks: {} 2024-02-10T07:58:11.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:11.359132+0000 mon.smithi007 (mon.0) 188 : cluster [DBG] fsmap 2024-02-10T07:58:11.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:11.359192+0000 mon.smithi007 (mon.0) 189 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-10T07:58:11.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:11.359535+0000 mon.smithi007 (mon.0) 190 : cluster [DBG] mgrmap e17: smithi007.lzuqsb(active, since 47s) 2024-02-10T07:58:11.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:11.360598+0000 mon.smithi007 (mon.0) 191 : cluster [DBG] Standby manager daemon smithi123.qhmycm started 2024-02-10T07:58:11.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:11.361889+0000 mon.smithi007 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.123:0/859663564' entity='mgr.smithi123.qhmycm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-10T07:58:11.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: cluster 2024-02-10T07:58:11.364761+0000 mon.smithi007 (mon.0) 193 : cluster [INF] overall HEALTH_OK 2024-02-10T07:58:11.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:11.365307+0000 mon.smithi007 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.123:0/859663564' entity='mgr.smithi123.qhmycm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi123.qhmycm/key"}]: dispatch 2024-02-10T07:58:11.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:11.368124+0000 mon.smithi007 (mon.0) 195 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:11.748 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:11 smithi007 bash[14094]: audit 2024-02-10T07:58:11.368383+0000 mon.smithi007 (mon.0) 196 : audit [DBG] from='mgr.? 172.21.15.123:0/859663564' entity='mgr.smithi123.qhmycm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-10T07:58:11.844 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-02-10T07:58:11.844 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":2,"fsid":"96f67ea2-c7e9-11ee-95b8-87774f69a715","modified":"2024-02-10T07:58:06.307821Z","created":"2024-02-10T07:55:06.681512Z","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":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi123","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:3300","nonce":0},{"type":"v1","addr":"172.21.15.123:6789","nonce":0}]},"addr":"172.21.15.123:6789/0","public_addr":"172.21.15.123:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-02-10T07:58:11.847 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 2 2024-02-10T07:58:11.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:06.308420+0000 mon.smithi007 (mon.0) 176 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:06.312866+0000 mon.smithi007 (mon.0) 177 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi007"}]: dispatch 2024-02-10T07:58:11.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:06.313215+0000 mon.smithi007 (mon.0) 178 : cluster [INF] mon.smithi007 calling monitor election 2024-02-10T07:58:11.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:06.331660+0000 mon.smithi007 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:07.308959+0000 mon.smithi007 (mon.0) 180 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:07.469288+0000 mgr.smithi007.lzuqsb (mgr.14180) 27 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:07.507856+0000 mon.smithi007 (mon.0) 181 : audit [DBG] from='mgr.? 172.21.15.123:0/859663564' entity='mgr.smithi123.qhmycm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi123.qhmycm/crt"}]: dispatch 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:08.308644+0000 mon.smithi007 (mon.0) 182 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:08.311549+0000 mon.smithi123 (mon.1) 1 : cluster [INF] mon.smithi123 calling monitor election 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:09.308988+0000 mon.smithi007 (mon.0) 183 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:09.469683+0000 mgr.smithi007.lzuqsb (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:10.309094+0000 mon.smithi007 (mon.0) 184 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:11.309384+0000 mon.smithi007 (mon.0) 185 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:11.352440+0000 mon.smithi007 (mon.0) 186 : cluster [INF] mon.smithi007 is new leader, mons smithi007,smithi123 in quorum (ranks 0,1) 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:11.358025+0000 mon.smithi007 (mon.0) 187 : cluster [DBG] monmap e2: 2 mons at {smithi007=[v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0],smithi123=[v2:172.21.15.123:3300/0,v1:172.21.15.123:6789/0]} removed_ranks: {} 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:11.359132+0000 mon.smithi007 (mon.0) 188 : cluster [DBG] fsmap 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:11.359192+0000 mon.smithi007 (mon.0) 189 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:11.359535+0000 mon.smithi007 (mon.0) 190 : cluster [DBG] mgrmap e17: smithi007.lzuqsb(active, since 47s) 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:11.360598+0000 mon.smithi007 (mon.0) 191 : cluster [DBG] Standby manager daemon smithi123.qhmycm started 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:11.361889+0000 mon.smithi007 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.123:0/859663564' entity='mgr.smithi123.qhmycm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-10T07:58:11.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: cluster 2024-02-10T07:58:11.364761+0000 mon.smithi007 (mon.0) 193 : cluster [INF] overall HEALTH_OK 2024-02-10T07:58:11.876 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:11.365307+0000 mon.smithi007 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.123:0/859663564' entity='mgr.smithi123.qhmycm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi123.qhmycm/key"}]: dispatch 2024-02-10T07:58:11.876 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:11.368124+0000 mon.smithi007 (mon.0) 195 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:11.876 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:11 smithi123 bash[18776]: audit 2024-02-10T07:58:11.368383+0000 mon.smithi007 (mon.0) 196 : audit [DBG] from='mgr.? 172.21.15.123:0/859663564' entity='mgr.smithi123.qhmycm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-10T07:58:12.576 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-02-10T07:58:12.576 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph config generate-minimal-conf 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: cluster 2024-02-10T07:58:11.426370+0000 mon.smithi007 (mon.0) 197 : cluster [DBG] mgrmap e18: smithi007.lzuqsb(active, since 47s), standbys: smithi123.qhmycm 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:11.426725+0000 mon.smithi007 (mon.0) 198 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr metadata", "who": "smithi123.qhmycm", "id": "smithi123.qhmycm"}]: dispatch 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: cluster 2024-02-10T07:58:11.470122+0000 mgr.smithi007.lzuqsb (mgr.14180) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:11.843044+0000 mon.smithi007 (mon.0) 199 : audit [DBG] from='client.? 172.21.15.123:0/1909287121' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:11.963608+0000 mon.smithi007 (mon.0) 200 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:11.965210+0000 mon.smithi007 (mon.0) 201 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:11.966604+0000 mon.smithi007 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:11.998307+0000 mon.smithi007 (mon.0) 203 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:12.023369+0000 mon.smithi007 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:12.029227+0000 mon.smithi007 (mon.0) 205 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:12.035579+0000 mon.smithi007 (mon.0) 206 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:12.036981+0000 mon.smithi007 (mon.0) 207 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-10T07:58:12.589 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:12.038395+0000 mon.smithi007 (mon.0) 208 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:12.590 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:12 smithi007 bash[14094]: audit 2024-02-10T07:58:12.309349+0000 mon.smithi007 (mon.0) 209 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:12.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: cluster 2024-02-10T07:58:11.426370+0000 mon.smithi007 (mon.0) 197 : cluster [DBG] mgrmap e18: smithi007.lzuqsb(active, since 47s), standbys: smithi123.qhmycm 2024-02-10T07:58:12.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:11.426725+0000 mon.smithi007 (mon.0) 198 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr metadata", "who": "smithi123.qhmycm", "id": "smithi123.qhmycm"}]: dispatch 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: cluster 2024-02-10T07:58:11.470122+0000 mgr.smithi007.lzuqsb (mgr.14180) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:11.843044+0000 mon.smithi007 (mon.0) 199 : audit [DBG] from='client.? 172.21.15.123:0/1909287121' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:11.963608+0000 mon.smithi007 (mon.0) 200 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:11.965210+0000 mon.smithi007 (mon.0) 201 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:11.966604+0000 mon.smithi007 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:11.998307+0000 mon.smithi007 (mon.0) 203 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:12.023369+0000 mon.smithi007 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:12.029227+0000 mon.smithi007 (mon.0) 205 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:12.035579+0000 mon.smithi007 (mon.0) 206 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:12.036981+0000 mon.smithi007 (mon.0) 207 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:12.038395+0000 mon.smithi007 (mon.0) 208 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:12 smithi123 bash[18776]: audit 2024-02-10T07:58:12.309349+0000 mon.smithi007 (mon.0) 209 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-02-10T07:58:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:13 smithi007 bash[14094]: cephadm 2024-02-10T07:58:11.968331+0000 mgr.smithi007.lzuqsb (mgr.14180) 30 : cephadm [INF] Updating smithi007:/etc/ceph/ceph.conf 2024-02-10T07:58:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:13 smithi007 bash[14094]: cephadm 2024-02-10T07:58:11.969067+0000 mgr.smithi007.lzuqsb (mgr.14180) 31 : cephadm [INF] Updating smithi123:/etc/ceph/ceph.conf 2024-02-10T07:58:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:13 smithi007 bash[14094]: cephadm 2024-02-10T07:58:12.035030+0000 mgr.smithi007.lzuqsb (mgr.14180) 32 : cephadm [INF] Reconfiguring mon.smithi007 (unknown last config time)... 2024-02-10T07:58:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:13 smithi007 bash[14094]: cephadm 2024-02-10T07:58:12.039331+0000 mgr.smithi007.lzuqsb (mgr.14180) 33 : cephadm [INF] Reconfiguring daemon mon.smithi007 on smithi007 2024-02-10T07:58:13.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:13 smithi123 bash[18776]: cephadm 2024-02-10T07:58:11.968331+0000 mgr.smithi007.lzuqsb (mgr.14180) 30 : cephadm [INF] Updating smithi007:/etc/ceph/ceph.conf 2024-02-10T07:58:13.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:13 smithi123 bash[18776]: cephadm 2024-02-10T07:58:11.969067+0000 mgr.smithi007.lzuqsb (mgr.14180) 31 : cephadm [INF] Updating smithi123:/etc/ceph/ceph.conf 2024-02-10T07:58:13.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:13 smithi123 bash[18776]: cephadm 2024-02-10T07:58:12.035030+0000 mgr.smithi007.lzuqsb (mgr.14180) 32 : cephadm [INF] Reconfiguring mon.smithi007 (unknown last config time)... 2024-02-10T07:58:13.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:13 smithi123 bash[18776]: cephadm 2024-02-10T07:58:12.039331+0000 mgr.smithi007.lzuqsb (mgr.14180) 33 : cephadm [INF] Reconfiguring daemon mon.smithi007 on smithi007 2024-02-10T07:58:14.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:14 smithi007 bash[14094]: cluster 2024-02-10T07:58:13.470607+0000 mgr.smithi007.lzuqsb (mgr.14180) 34 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:14 smithi123 bash[18776]: cluster 2024-02-10T07:58:13.470607+0000 mgr.smithi007.lzuqsb (mgr.14180) 34 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:16.415 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:16 smithi123 bash[18776]: audit 2024-02-10T07:58:15.135991+0000 mon.smithi007 (mon.0) 210 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:16.415 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:16 smithi123 bash[18776]: cephadm 2024-02-10T07:58:15.137400+0000 mgr.smithi007.lzuqsb (mgr.14180) 35 : cephadm [INF] Reconfiguring mgr.smithi007.lzuqsb (unknown last config time)... 2024-02-10T07:58:16.415 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:16 smithi123 bash[18776]: audit 2024-02-10T07:58:15.137996+0000 mon.smithi007 (mon.0) 211 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi007.lzuqsb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-10T07:58:16.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:16 smithi123 bash[18776]: audit 2024-02-10T07:58:15.139587+0000 mon.smithi007 (mon.0) 212 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-10T07:58:16.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:16 smithi123 bash[18776]: audit 2024-02-10T07:58:15.140773+0000 mon.smithi007 (mon.0) 213 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:16.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:16 smithi123 bash[18776]: cephadm 2024-02-10T07:58:15.141757+0000 mgr.smithi007.lzuqsb (mgr.14180) 36 : cephadm [INF] Reconfiguring daemon mgr.smithi007.lzuqsb on smithi007 2024-02-10T07:58:16.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:16 smithi123 bash[18776]: cluster 2024-02-10T07:58:15.471074+0000 mgr.smithi007.lzuqsb (mgr.14180) 37 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:16.429 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:16 smithi007 bash[14094]: audit 2024-02-10T07:58:15.135991+0000 mon.smithi007 (mon.0) 210 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:16.429 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:16 smithi007 bash[14094]: cephadm 2024-02-10T07:58:15.137400+0000 mgr.smithi007.lzuqsb (mgr.14180) 35 : cephadm [INF] Reconfiguring mgr.smithi007.lzuqsb (unknown last config time)... 2024-02-10T07:58:16.429 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:16 smithi007 bash[14094]: audit 2024-02-10T07:58:15.137996+0000 mon.smithi007 (mon.0) 211 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi007.lzuqsb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-10T07:58:16.429 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:16 smithi007 bash[14094]: audit 2024-02-10T07:58:15.139587+0000 mon.smithi007 (mon.0) 212 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-10T07:58:16.429 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:16 smithi007 bash[14094]: audit 2024-02-10T07:58:15.140773+0000 mon.smithi007 (mon.0) 213 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:16.429 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:16 smithi007 bash[14094]: cephadm 2024-02-10T07:58:15.141757+0000 mgr.smithi007.lzuqsb (mgr.14180) 36 : cephadm [INF] Reconfiguring daemon mgr.smithi007.lzuqsb on smithi007 2024-02-10T07:58:16.429 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:16 smithi007 bash[14094]: cluster 2024-02-10T07:58:15.471074+0000 mgr.smithi007.lzuqsb (mgr.14180) 37 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:16.870 INFO:teuthology.orchestra.run.smithi007.stdout:# minimal ceph.conf for 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:58:16.870 INFO:teuthology.orchestra.run.smithi007.stdout:[global] 2024-02-10T07:58:16.870 INFO:teuthology.orchestra.run.smithi007.stdout: fsid = 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T07:58:16.870 INFO:teuthology.orchestra.run.smithi007.stdout: mon_host = [v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0] [v2:172.21.15.123:3300/0,v1:172.21.15.123:6789/0] 2024-02-10T07:58:17.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:17 smithi007 bash[14094]: audit 2024-02-10T07:58:16.868967+0000 mon.smithi007 (mon.0) 214 : audit [DBG] from='client.? 172.21.15.7:0/1902202401' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:17.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:17 smithi123 bash[18776]: audit 2024-02-10T07:58:16.868967+0000 mon.smithi007 (mon.0) 214 : audit [DBG] from='client.? 172.21.15.7:0/1902202401' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:18.384 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-02-10T07:58:18.384 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:58:18.384 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/etc/ceph/ceph.conf 2024-02-10T07:58:18.441 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:58:18.441 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-10T07:58:18.498 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T07:58:18.499 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/etc/ceph/ceph.conf 2024-02-10T07:58:18.513 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T07:58:18.513 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-10T07:58:18.569 INFO:tasks.cephadm:Deploying OSDs... 2024-02-10T07:58:18.569 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T07:58:18.569 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/scratch_devs of=/dev/stdout 2024-02-10T07:58:18.576 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-10T07:58:18.576 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/nvme1n1 2024-02-10T07:58:18.626 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/nvme1n1 2024-02-10T07:58:18.626 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-10T07:58:18.626 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 526 Links: 1 Device type: 103,2 2024-02-10T07:58:18.626 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-10T07:58:18.626 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-02-10 07:56:35.373770549 +0000 2024-02-10T07:58:18.626 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-02-10 07:54:14.975696957 +0000 2024-02-10T07:58:18.626 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-02-10 07:54:14.975696957 +0000 2024-02-10T07:58:18.626 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: - 2024-02-10T07:58:18.626 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-10T07:58:18.679 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:18 smithi007 bash[14094]: cluster 2024-02-10T07:58:17.471561+0000 mgr.smithi007.lzuqsb (mgr.14180) 38 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:18.679 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:18 smithi007 bash[14094]: audit 2024-02-10T07:58:17.580446+0000 mon.smithi007 (mon.0) 215 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:18.679 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:18 smithi007 bash[14094]: cephadm 2024-02-10T07:58:17.581671+0000 mgr.smithi007.lzuqsb (mgr.14180) 39 : cephadm [INF] Reconfiguring alertmanager.smithi007 (dependencies changed)... 2024-02-10T07:58:18.681 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-02-10T07:58:18.681 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-02-10T07:58:18.681 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.000369831 s, 1.4 MB/s 2024-02-10T07:58:18.682 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-10T07:58:18.735 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/nvme2n1 2024-02-10T07:58:18.785 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/nvme2n1 2024-02-10T07:58:18.785 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-10T07:58:18.785 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 534 Links: 1 Device type: 103,4 2024-02-10T07:58:18.785 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-10T07:58:18.785 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-02-10 07:56:35.393770088 +0000 2024-02-10T07:58:18.786 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-02-10 07:54:15.095738794 +0000 2024-02-10T07:58:18.786 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-02-10 07:54:15.095738794 +0000 2024-02-10T07:58:18.786 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: - 2024-02-10T07:58:18.786 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-10T07:58:18.845 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-02-10T07:58:18.845 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-02-10T07:58:18.845 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.00032355 s, 1.6 MB/s 2024-02-10T07:58:18.846 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-10T07:58:18.899 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/nvme3n1 2024-02-10T07:58:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:18 smithi123 bash[18776]: cluster 2024-02-10T07:58:17.471561+0000 mgr.smithi007.lzuqsb (mgr.14180) 38 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:18 smithi123 bash[18776]: audit 2024-02-10T07:58:17.580446+0000 mon.smithi007 (mon.0) 215 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:18 smithi123 bash[18776]: cephadm 2024-02-10T07:58:17.581671+0000 mgr.smithi007.lzuqsb (mgr.14180) 39 : cephadm [INF] Reconfiguring alertmanager.smithi007 (dependencies changed)... 2024-02-10T07:58:18.951 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/nvme3n1 2024-02-10T07:58:18.951 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-10T07:58:18.951 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 542 Links: 1 Device type: 103,6 2024-02-10T07:58:18.951 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-10T07:58:18.951 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-02-10 07:56:35.413769626 +0000 2024-02-10T07:58:18.951 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-02-10 07:54:15.211794119 +0000 2024-02-10T07:58:18.951 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-02-10 07:54:15.211794119 +0000 2024-02-10T07:58:18.952 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: - 2024-02-10T07:58:18.952 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-10T07:58:19.006 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-02-10T07:58:19.006 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-02-10T07:58:19.006 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.00023506 s, 2.2 MB/s 2024-02-10T07:58:19.007 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-10T07:58:19.059 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/nvme4n1 2024-02-10T07:58:19.109 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/nvme4n1 2024-02-10T07:58:19.109 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-10T07:58:19.109 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 550 Links: 1 Device type: 103,8 2024-02-10T07:58:19.109 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-10T07:58:19.109 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-02-10 07:56:35.429769257 +0000 2024-02-10T07:58:19.110 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-02-10 07:54:15.327849444 +0000 2024-02-10T07:58:19.110 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-02-10 07:54:15.327849444 +0000 2024-02-10T07:58:19.110 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: - 2024-02-10T07:58:19.110 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-10T07:58:19.165 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-02-10T07:58:19.165 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-02-10T07:58:19.165 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.000367583 s, 1.4 MB/s 2024-02-10T07:58:19.166 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-10T07:58:19.219 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T07:58:19.219 DEBUG:teuthology.orchestra.run.smithi123:> dd if=/scratch_devs of=/dev/stdout 2024-02-10T07:58:19.226 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-10T07:58:19.226 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/nvme1n1 2024-02-10T07:58:19.274 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/nvme1n1 2024-02-10T07:58:19.274 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-10T07:58:19.274 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 522 Links: 1 Device type: 103,2 2024-02-10T07:58:19.275 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-10T07:58:19.275 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-02-10 07:57:50.367781827 +0000 2024-02-10T07:58:19.275 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-02-10 07:54:16.336727086 +0000 2024-02-10T07:58:19.275 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-02-10 07:54:16.336727086 +0000 2024-02-10T07:58:19.275 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: - 2024-02-10T07:58:19.275 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-10T07:58:19.328 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-02-10T07:58:19.328 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-02-10T07:58:19.328 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000501708 s, 1.0 MB/s 2024-02-10T07:58:19.329 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-10T07:58:19.380 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/nvme2n1 2024-02-10T07:58:19.430 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/nvme2n1 2024-02-10T07:58:19.430 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-10T07:58:19.430 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 530 Links: 1 Device type: 103,4 2024-02-10T07:58:19.430 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-10T07:58:19.430 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-02-10 07:57:50.383781452 +0000 2024-02-10T07:58:19.431 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-02-10 07:54:16.448724504 +0000 2024-02-10T07:58:19.431 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-02-10 07:54:16.448724504 +0000 2024-02-10T07:58:19.431 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: - 2024-02-10T07:58:19.431 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-10T07:58:19.485 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-02-10T07:58:19.486 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-02-10T07:58:19.486 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.00042317 s, 1.2 MB/s 2024-02-10T07:58:19.486 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-10T07:58:19.539 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/nvme3n1 2024-02-10T07:58:19.590 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/nvme3n1 2024-02-10T07:58:19.590 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-10T07:58:19.590 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 538 Links: 1 Device type: 103,6 2024-02-10T07:58:19.591 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-10T07:58:19.591 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-02-10 07:57:50.403780983 +0000 2024-02-10T07:58:19.591 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-02-10 07:54:16.568721735 +0000 2024-02-10T07:58:19.591 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-02-10 07:54:16.568721735 +0000 2024-02-10T07:58:19.591 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: - 2024-02-10T07:58:19.591 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-10T07:58:19.645 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-02-10T07:58:19.645 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-02-10T07:58:19.646 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000430314 s, 1.2 MB/s 2024-02-10T07:58:19.646 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-10T07:58:19.696 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/nvme4n1 2024-02-10T07:58:19.746 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/nvme4n1 2024-02-10T07:58:19.746 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-10T07:58:19.746 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 546 Links: 1 Device type: 103,8 2024-02-10T07:58:19.746 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-10T07:58:19.746 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-02-10 07:57:50.419780608 +0000 2024-02-10T07:58:19.746 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-02-10 07:54:16.676719246 +0000 2024-02-10T07:58:19.746 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-02-10 07:54:16.676719246 +0000 2024-02-10T07:58:19.746 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: - 2024-02-10T07:58:19.747 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-10T07:58:19.801 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-02-10T07:58:19.801 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-02-10T07:58:19.801 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.00043358 s, 1.2 MB/s 2024-02-10T07:58:19.802 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-10T07:58:19.856 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-02-10T07:58:19.910 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:19 smithi123 bash[18776]: cephadm 2024-02-10T07:58:17.590971+0000 mgr.smithi007.lzuqsb (mgr.14180) 40 : cephadm [INF] Reconfiguring daemon alertmanager.smithi007 on smithi007 2024-02-10T07:58:19.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:19 smithi007 bash[14094]: cephadm 2024-02-10T07:58:17.590971+0000 mgr.smithi007.lzuqsb (mgr.14180) 40 : cephadm [INF] Reconfiguring daemon alertmanager.smithi007 on smithi007 2024-02-10T07:58:20.863 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:20 smithi007 bash[14094]: cluster 2024-02-10T07:58:19.472034+0000 mgr.smithi007.lzuqsb (mgr.14180) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:20.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:20 smithi123 bash[18776]: cluster 2024-02-10T07:58:19.472034+0000 mgr.smithi007.lzuqsb (mgr.14180) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:21.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:21 smithi007 bash[14094]: cluster 2024-02-10T07:58:21.472427+0000 mgr.smithi007.lzuqsb (mgr.14180) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:21.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:21 smithi123 bash[18776]: cluster 2024-02-10T07:58:21.472427+0000 mgr.smithi007.lzuqsb (mgr.14180) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:22.829 INFO:teuthology.orchestra.run.smithi123.stdout:Scheduled osd.all-available-devices update... 2024-02-10T07:58:23.471 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:23 smithi123 bash[18776]: audit 2024-02-10T07:58:22.395382+0000 mon.smithi007 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:23.471 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:23 smithi123 bash[18776]: cephadm 2024-02-10T07:58:22.397002+0000 mgr.smithi007.lzuqsb (mgr.14180) 43 : cephadm [INF] Reconfiguring crash.smithi007 (monmap changed)... 2024-02-10T07:58:23.471 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:23 smithi123 bash[18776]: audit 2024-02-10T07:58:22.397438+0000 mon.smithi007 (mon.0) 217 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi007", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-10T07:58:23.471 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:23 smithi123 bash[18776]: audit 2024-02-10T07:58:22.398698+0000 mon.smithi007 (mon.0) 218 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:23.471 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:23 smithi123 bash[18776]: cephadm 2024-02-10T07:58:22.399752+0000 mgr.smithi007.lzuqsb (mgr.14180) 44 : cephadm [INF] Reconfiguring daemon crash.smithi007 on smithi007 2024-02-10T07:58:23.471 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:23 smithi123 bash[18776]: audit 2024-02-10T07:58:22.827896+0000 mon.smithi007 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:23.472 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-02-10T07:58:23.472 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:58:23.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:23 smithi007 bash[14094]: audit 2024-02-10T07:58:22.395382+0000 mon.smithi007 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:23.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:23 smithi007 bash[14094]: cephadm 2024-02-10T07:58:22.397002+0000 mgr.smithi007.lzuqsb (mgr.14180) 43 : cephadm [INF] Reconfiguring crash.smithi007 (monmap changed)... 2024-02-10T07:58:23.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:23 smithi007 bash[14094]: audit 2024-02-10T07:58:22.397438+0000 mon.smithi007 (mon.0) 217 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi007", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-10T07:58:23.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:23 smithi007 bash[14094]: audit 2024-02-10T07:58:22.398698+0000 mon.smithi007 (mon.0) 218 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:23.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:23 smithi007 bash[14094]: cephadm 2024-02-10T07:58:22.399752+0000 mgr.smithi007.lzuqsb (mgr.14180) 44 : cephadm [INF] Reconfiguring daemon crash.smithi007 on smithi007 2024-02-10T07:58:23.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:23 smithi007 bash[14094]: audit 2024-02-10T07:58:22.827896+0000 mon.smithi007 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:24.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:24 smithi123 bash[18776]: audit 2024-02-10T07:58:22.820323+0000 mgr.smithi007.lzuqsb (mgr.14180) 45 : audit [DBG] from='client.24105 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:58:24.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:24 smithi123 bash[18776]: cephadm 2024-02-10T07:58:22.822681+0000 mgr.smithi007.lzuqsb (mgr.14180) 46 : cephadm [INF] Marking host: smithi007 for OSDSpec preview refresh. 2024-02-10T07:58:24.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:24 smithi123 bash[18776]: cephadm 2024-02-10T07:58:22.822777+0000 mgr.smithi007.lzuqsb (mgr.14180) 47 : cephadm [INF] Marking host: smithi123 for OSDSpec preview refresh. 2024-02-10T07:58:24.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:24 smithi123 bash[18776]: cephadm 2024-02-10T07:58:22.823195+0000 mgr.smithi007.lzuqsb (mgr.14180) 48 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-10T07:58:24.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:24 smithi123 bash[18776]: cluster 2024-02-10T07:58:23.472938+0000 mgr.smithi007.lzuqsb (mgr.14180) 49 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:24.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:24 smithi007 bash[14094]: audit 2024-02-10T07:58:22.820323+0000 mgr.smithi007.lzuqsb (mgr.14180) 45 : audit [DBG] from='client.24105 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T07:58:24.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:24 smithi007 bash[14094]: cephadm 2024-02-10T07:58:22.822681+0000 mgr.smithi007.lzuqsb (mgr.14180) 46 : cephadm [INF] Marking host: smithi007 for OSDSpec preview refresh. 2024-02-10T07:58:24.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:24 smithi007 bash[14094]: cephadm 2024-02-10T07:58:22.822777+0000 mgr.smithi007.lzuqsb (mgr.14180) 47 : cephadm [INF] Marking host: smithi123 for OSDSpec preview refresh. 2024-02-10T07:58:24.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:24 smithi007 bash[14094]: cephadm 2024-02-10T07:58:22.823195+0000 mgr.smithi007.lzuqsb (mgr.14180) 48 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-10T07:58:24.673 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:24 smithi007 bash[14094]: cluster 2024-02-10T07:58:23.472938+0000 mgr.smithi007.lzuqsb (mgr.14180) 49 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:26.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:26 smithi123 bash[18776]: cluster 2024-02-10T07:58:25.473356+0000 mgr.smithi007.lzuqsb (mgr.14180) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:26.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:26 smithi123 bash[18776]: audit 2024-02-10T07:58:25.713749+0000 mon.smithi007 (mon.0) 220 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:26.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:26 smithi007 bash[14094]: cluster 2024-02-10T07:58:25.473356+0000 mgr.smithi007.lzuqsb (mgr.14180) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:26.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:26 smithi007 bash[14094]: audit 2024-02-10T07:58:25.713749+0000 mon.smithi007 (mon.0) 220 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:27.854 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:27 smithi007 bash[14094]: cephadm 2024-02-10T07:58:25.715044+0000 mgr.smithi007.lzuqsb (mgr.14180) 51 : cephadm [INF] Reconfiguring grafana.smithi007 (dependencies changed)... 2024-02-10T07:58:27.854 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:27 smithi007 bash[14094]: cephadm 2024-02-10T07:58:25.759002+0000 mgr.smithi007.lzuqsb (mgr.14180) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi007 on smithi007 2024-02-10T07:58:27.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:27 smithi123 bash[18776]: cephadm 2024-02-10T07:58:25.715044+0000 mgr.smithi007.lzuqsb (mgr.14180) 51 : cephadm [INF] Reconfiguring grafana.smithi007 (dependencies changed)... 2024-02-10T07:58:27.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:27 smithi123 bash[18776]: cephadm 2024-02-10T07:58:25.759002+0000 mgr.smithi007.lzuqsb (mgr.14180) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi007 on smithi007 2024-02-10T07:58:28.354 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:58:28.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:28 smithi007 bash[14094]: cluster 2024-02-10T07:58:27.473656+0000 mgr.smithi007.lzuqsb (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:28.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:28 smithi007 bash[14094]: audit 2024-02-10T07:58:28.353125+0000 mon.smithi007 (mon.0) 221 : audit [DBG] from='client.? 172.21.15.7:0/3204331150' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:28.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:28 smithi123 bash[18776]: cluster 2024-02-10T07:58:27.473656+0000 mgr.smithi007.lzuqsb (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:28.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:28 smithi123 bash[18776]: audit 2024-02-10T07:58:28.353125+0000 mon.smithi007 (mon.0) 221 : audit [DBG] from='client.? 172.21.15.7:0/3204331150' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:29.671 INFO:teuthology.orchestra.run.smithi007.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-10T07:58:30.672 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:58:30.685 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:30 smithi007 bash[14094]: cluster 2024-02-10T07:58:29.474019+0000 mgr.smithi007.lzuqsb (mgr.14180) 54 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:30.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:30 smithi123 bash[18776]: cluster 2024-02-10T07:58:29.474019+0000 mgr.smithi007.lzuqsb (mgr.14180) 54 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:32.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:32 smithi007 bash[14094]: cluster 2024-02-10T07:58:31.474501+0000 mgr.smithi007.lzuqsb (mgr.14180) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:32.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:32 smithi007 bash[14094]: audit 2024-02-10T07:58:32.539550+0000 mon.smithi007 (mon.0) 222 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:32.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:32 smithi123 bash[18776]: cluster 2024-02-10T07:58:31.474501+0000 mgr.smithi007.lzuqsb (mgr.14180) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:32.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:32 smithi123 bash[18776]: audit 2024-02-10T07:58:32.539550+0000 mon.smithi007 (mon.0) 222 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:33.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:33 smithi007 bash[14094]: cephadm 2024-02-10T07:58:32.541846+0000 mgr.smithi007.lzuqsb (mgr.14180) 56 : cephadm [INF] Reconfiguring prometheus.smithi007 (dependencies changed)... 2024-02-10T07:58:33.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:33 smithi007 bash[14094]: cephadm 2024-02-10T07:58:32.549465+0000 mgr.smithi007.lzuqsb (mgr.14180) 57 : cephadm [INF] Reconfiguring daemon prometheus.smithi007 on smithi007 2024-02-10T07:58:33.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:33 smithi123 bash[18776]: cephadm 2024-02-10T07:58:32.541846+0000 mgr.smithi007.lzuqsb (mgr.14180) 56 : cephadm [INF] Reconfiguring prometheus.smithi007 (dependencies changed)... 2024-02-10T07:58:33.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:33 smithi123 bash[18776]: cephadm 2024-02-10T07:58:32.549465+0000 mgr.smithi007.lzuqsb (mgr.14180) 57 : cephadm [INF] Reconfiguring daemon prometheus.smithi007 on smithi007 2024-02-10T07:58:34.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:34 smithi123 bash[18776]: cluster 2024-02-10T07:58:33.474878+0000 mgr.smithi007.lzuqsb (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:34.967 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:34 smithi007 bash[14094]: cluster 2024-02-10T07:58:33.474878+0000 mgr.smithi007.lzuqsb (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:36.455 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:58:36.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:36 smithi007 bash[14094]: cluster 2024-02-10T07:58:35.475274+0000 mgr.smithi007.lzuqsb (mgr.14180) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:36.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:36 smithi007 bash[14094]: audit 2024-02-10T07:58:36.454045+0000 mon.smithi007 (mon.0) 223 : audit [DBG] from='client.? 172.21.15.7:0/3067707214' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:36.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:36 smithi123 bash[18776]: cluster 2024-02-10T07:58:35.475274+0000 mgr.smithi007.lzuqsb (mgr.14180) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:36.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:36 smithi123 bash[18776]: audit 2024-02-10T07:58:36.454045+0000 mon.smithi007 (mon.0) 223 : audit [DBG] from='client.? 172.21.15.7:0/3067707214' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:37.638 INFO:teuthology.orchestra.run.smithi007.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-10T07:58:38.638 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:58:38.652 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:38 smithi007 bash[14094]: cluster 2024-02-10T07:58:37.475761+0000 mgr.smithi007.lzuqsb (mgr.14180) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:38.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:38 smithi123 bash[18776]: cluster 2024-02-10T07:58:37.475761+0000 mgr.smithi007.lzuqsb (mgr.14180) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:40 smithi007 bash[14094]: cluster 2024-02-10T07:58:39.476131+0000 mgr.smithi007.lzuqsb (mgr.14180) 61 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:40 smithi007 bash[14094]: audit 2024-02-10T07:58:40.348047+0000 mon.smithi007 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:40 smithi007 bash[14094]: audit 2024-02-10T07:58:40.349398+0000 mon.smithi007 (mon.0) 225 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi123", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-10T07:58:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:40 smithi007 bash[14094]: audit 2024-02-10T07:58:40.350468+0000 mon.smithi007 (mon.0) 226 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:40.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:40 smithi123 bash[18776]: cluster 2024-02-10T07:58:39.476131+0000 mgr.smithi007.lzuqsb (mgr.14180) 61 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:40.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:40 smithi123 bash[18776]: audit 2024-02-10T07:58:40.348047+0000 mon.smithi007 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:40.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:40 smithi123 bash[18776]: audit 2024-02-10T07:58:40.349398+0000 mon.smithi007 (mon.0) 225 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi123", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-10T07:58:40.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:40 smithi123 bash[18776]: audit 2024-02-10T07:58:40.350468+0000 mon.smithi007 (mon.0) 226 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:41.652 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:41 smithi123 bash[18776]: cephadm 2024-02-10T07:58:40.349022+0000 mgr.smithi007.lzuqsb (mgr.14180) 62 : cephadm [INF] Reconfiguring crash.smithi123 (monmap changed)... 2024-02-10T07:58:41.652 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:41 smithi123 bash[18776]: cephadm 2024-02-10T07:58:40.351292+0000 mgr.smithi007.lzuqsb (mgr.14180) 63 : cephadm [INF] Reconfiguring daemon crash.smithi123 on smithi123 2024-02-10T07:58:41.933 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:41 smithi007 bash[14094]: cephadm 2024-02-10T07:58:40.349022+0000 mgr.smithi007.lzuqsb (mgr.14180) 62 : cephadm [INF] Reconfiguring crash.smithi123 (monmap changed)... 2024-02-10T07:58:41.933 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:41 smithi007 bash[14094]: cephadm 2024-02-10T07:58:40.351292+0000 mgr.smithi007.lzuqsb (mgr.14180) 63 : cephadm [INF] Reconfiguring daemon crash.smithi123 on smithi123 2024-02-10T07:58:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:42 smithi123 bash[18776]: cluster 2024-02-10T07:58:41.476528+0000 mgr.smithi007.lzuqsb (mgr.14180) 64 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:42 smithi123 bash[18776]: audit 2024-02-10T07:58:42.081087+0000 mon.smithi007 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:42 smithi123 bash[18776]: audit 2024-02-10T07:58:42.083631+0000 mon.smithi007 (mon.0) 228 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi123.qhmycm", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-10T07:58:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:42 smithi123 bash[18776]: audit 2024-02-10T07:58:42.084572+0000 mon.smithi007 (mon.0) 229 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-10T07:58:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:42 smithi123 bash[18776]: audit 2024-02-10T07:58:42.085384+0000 mon.smithi007 (mon.0) 230 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:42.966 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:42 smithi007 bash[14094]: cluster 2024-02-10T07:58:41.476528+0000 mgr.smithi007.lzuqsb (mgr.14180) 64 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:42.966 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:42 smithi007 bash[14094]: audit 2024-02-10T07:58:42.081087+0000 mon.smithi007 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:42.966 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:42 smithi007 bash[14094]: audit 2024-02-10T07:58:42.083631+0000 mon.smithi007 (mon.0) 228 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi123.qhmycm", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-10T07:58:42.966 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:42 smithi007 bash[14094]: audit 2024-02-10T07:58:42.084572+0000 mon.smithi007 (mon.0) 229 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-10T07:58:42.966 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:42 smithi007 bash[14094]: audit 2024-02-10T07:58:42.085384+0000 mon.smithi007 (mon.0) 230 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:43.376 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:58:43.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:43 smithi123 bash[18776]: cephadm 2024-02-10T07:58:42.083288+0000 mgr.smithi007.lzuqsb (mgr.14180) 65 : cephadm [INF] Reconfiguring mgr.smithi123.qhmycm (monmap changed)... 2024-02-10T07:58:43.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:43 smithi123 bash[18776]: cephadm 2024-02-10T07:58:42.086133+0000 mgr.smithi007.lzuqsb (mgr.14180) 66 : cephadm [INF] Reconfiguring daemon mgr.smithi123.qhmycm on smithi123 2024-02-10T07:58:43.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:43 smithi123 bash[18776]: audit 2024-02-10T07:58:43.374610+0000 mon.smithi007 (mon.0) 231 : audit [DBG] from='client.? 172.21.15.7:0/1034220540' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:43.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:43 smithi007 bash[14094]: cephadm 2024-02-10T07:58:42.083288+0000 mgr.smithi007.lzuqsb (mgr.14180) 65 : cephadm [INF] Reconfiguring mgr.smithi123.qhmycm (monmap changed)... 2024-02-10T07:58:43.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:43 smithi007 bash[14094]: cephadm 2024-02-10T07:58:42.086133+0000 mgr.smithi007.lzuqsb (mgr.14180) 66 : cephadm [INF] Reconfiguring daemon mgr.smithi123.qhmycm on smithi123 2024-02-10T07:58:43.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:43 smithi007 bash[14094]: audit 2024-02-10T07:58:43.374610+0000 mon.smithi007 (mon.0) 231 : audit [DBG] from='client.? 172.21.15.7:0/1034220540' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:44.179 INFO:teuthology.orchestra.run.smithi007.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-10T07:58:44.848 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:44 smithi123 bash[18776]: cluster 2024-02-10T07:58:43.476978+0000 mgr.smithi007.lzuqsb (mgr.14180) 67 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:44.848 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:44 smithi123 bash[18776]: audit 2024-02-10T07:58:43.797051+0000 mon.smithi007 (mon.0) 232 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:44.848 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:44 smithi123 bash[18776]: audit 2024-02-10T07:58:43.798462+0000 mon.smithi007 (mon.0) 233 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-10T07:58:44.848 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:44 smithi123 bash[18776]: audit 2024-02-10T07:58:43.799579+0000 mon.smithi007 (mon.0) 234 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-10T07:58:44.848 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:44 smithi123 bash[18776]: audit 2024-02-10T07:58:43.800674+0000 mon.smithi007 (mon.0) 235 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:44.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:44 smithi007 bash[14094]: cluster 2024-02-10T07:58:43.476978+0000 mgr.smithi007.lzuqsb (mgr.14180) 67 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:44.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:44 smithi007 bash[14094]: audit 2024-02-10T07:58:43.797051+0000 mon.smithi007 (mon.0) 232 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:44.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:44 smithi007 bash[14094]: audit 2024-02-10T07:58:43.798462+0000 mon.smithi007 (mon.0) 233 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-10T07:58:44.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:44 smithi007 bash[14094]: audit 2024-02-10T07:58:43.799579+0000 mon.smithi007 (mon.0) 234 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-10T07:58:44.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:44 smithi007 bash[14094]: audit 2024-02-10T07:58:43.800674+0000 mon.smithi007 (mon.0) 235 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:45.180 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:58:45.715 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: cephadm 2024-02-10T07:58:43.798055+0000 mgr.smithi007.lzuqsb (mgr.14180) 68 : cephadm [INF] Reconfiguring mon.smithi123 (monmap changed)... 2024-02-10T07:58:45.715 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: cephadm 2024-02-10T07:58:43.801678+0000 mgr.smithi007.lzuqsb (mgr.14180) 69 : cephadm [INF] Reconfiguring daemon mon.smithi123 on smithi123 2024-02-10T07:58:45.715 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.460743+0000 mon.smithi007 (mon.0) 236 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:45.716 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.466038+0000 mon.smithi007 (mon.0) 237 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-10T07:58:45.716 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.468367+0000 mon.smithi007 (mon.0) 238 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi007.front.sepia.ceph.com:9093"}]: dispatch 2024-02-10T07:58:45.716 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.473316+0000 mon.smithi007 (mon.0) 239 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:45.716 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.480408+0000 mon.smithi007 (mon.0) 240 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-10T07:58:45.716 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.491480+0000 mon.smithi007 (mon.0) 241 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi007.front.sepia.ceph.com:3000"}]: dispatch 2024-02-10T07:58:45.716 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.497844+0000 mon.smithi007 (mon.0) 242 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:45.716 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.505410+0000 mon.smithi007 (mon.0) 243 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-10T07:58:45.716 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.511778+0000 mon.smithi007 (mon.0) 244 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi007.front.sepia.ceph.com:9095"}]: dispatch 2024-02-10T07:58:45.716 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.517316+0000 mon.smithi007 (mon.0) 245 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:45.716 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:45 smithi007 bash[14094]: audit 2024-02-10T07:58:45.521612+0000 mon.smithi007 (mon.0) 246 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:58:45.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: cephadm 2024-02-10T07:58:43.798055+0000 mgr.smithi007.lzuqsb (mgr.14180) 68 : cephadm [INF] Reconfiguring mon.smithi123 (monmap changed)... 2024-02-10T07:58:45.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: cephadm 2024-02-10T07:58:43.801678+0000 mgr.smithi007.lzuqsb (mgr.14180) 69 : cephadm [INF] Reconfiguring daemon mon.smithi123 on smithi123 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.460743+0000 mon.smithi007 (mon.0) 236 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.466038+0000 mon.smithi007 (mon.0) 237 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.468367+0000 mon.smithi007 (mon.0) 238 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi007.front.sepia.ceph.com:9093"}]: dispatch 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.473316+0000 mon.smithi007 (mon.0) 239 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.480408+0000 mon.smithi007 (mon.0) 240 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.491480+0000 mon.smithi007 (mon.0) 241 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi007.front.sepia.ceph.com:3000"}]: dispatch 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.497844+0000 mon.smithi007 (mon.0) 242 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.505410+0000 mon.smithi007 (mon.0) 243 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.511778+0000 mon.smithi007 (mon.0) 244 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi007.front.sepia.ceph.com:9095"}]: dispatch 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.517316+0000 mon.smithi007 (mon.0) 245 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:45.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:45 smithi123 bash[18776]: audit 2024-02-10T07:58:45.521612+0000 mon.smithi007 (mon.0) 246 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T07:58:46.735 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:46 smithi007 bash[14094]: audit 2024-02-10T07:58:45.466784+0000 mgr.smithi007.lzuqsb (mgr.14180) 70 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-10T07:58:46.735 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:46 smithi007 bash[14094]: audit 2024-02-10T07:58:45.468701+0000 mgr.smithi007.lzuqsb (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi007.front.sepia.ceph.com:9093"}]: dispatch 2024-02-10T07:58:46.735 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:46 smithi007 bash[14094]: cluster 2024-02-10T07:58:45.478949+0000 mgr.smithi007.lzuqsb (mgr.14180) 72 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:46.735 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:46 smithi007 bash[14094]: audit 2024-02-10T07:58:45.480885+0000 mgr.smithi007.lzuqsb (mgr.14180) 73 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-10T07:58:46.735 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:46 smithi007 bash[14094]: audit 2024-02-10T07:58:45.492252+0000 mgr.smithi007.lzuqsb (mgr.14180) 74 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi007.front.sepia.ceph.com:3000"}]: dispatch 2024-02-10T07:58:46.736 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:46 smithi007 bash[14094]: audit 2024-02-10T07:58:45.506087+0000 mgr.smithi007.lzuqsb (mgr.14180) 75 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-10T07:58:46.736 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:46 smithi007 bash[14094]: audit 2024-02-10T07:58:45.512699+0000 mgr.smithi007.lzuqsb (mgr.14180) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi007.front.sepia.ceph.com:9095"}]: dispatch 2024-02-10T07:58:46.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:46 smithi123 bash[18776]: audit 2024-02-10T07:58:45.466784+0000 mgr.smithi007.lzuqsb (mgr.14180) 70 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-10T07:58:46.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:46 smithi123 bash[18776]: audit 2024-02-10T07:58:45.468701+0000 mgr.smithi007.lzuqsb (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi007.front.sepia.ceph.com:9093"}]: dispatch 2024-02-10T07:58:46.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:46 smithi123 bash[18776]: cluster 2024-02-10T07:58:45.478949+0000 mgr.smithi007.lzuqsb (mgr.14180) 72 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:46.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:46 smithi123 bash[18776]: audit 2024-02-10T07:58:45.480885+0000 mgr.smithi007.lzuqsb (mgr.14180) 73 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-10T07:58:46.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:46 smithi123 bash[18776]: audit 2024-02-10T07:58:45.492252+0000 mgr.smithi007.lzuqsb (mgr.14180) 74 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi007.front.sepia.ceph.com:3000"}]: dispatch 2024-02-10T07:58:46.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:46 smithi123 bash[18776]: audit 2024-02-10T07:58:45.506087+0000 mgr.smithi007.lzuqsb (mgr.14180) 75 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-10T07:58:46.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:46 smithi123 bash[18776]: audit 2024-02-10T07:58:45.512699+0000 mgr.smithi007.lzuqsb (mgr.14180) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi007.front.sepia.ceph.com:9095"}]: dispatch 2024-02-10T07:58:48.361 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:58:48.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:48 smithi007 bash[14094]: cluster 2024-02-10T07:58:47.479398+0000 mgr.smithi007.lzuqsb (mgr.14180) 77 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:48.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:48 smithi007 bash[14094]: audit 2024-02-10T07:58:48.359861+0000 mon.smithi007 (mon.0) 247 : audit [DBG] from='client.? 172.21.15.7:0/3689765920' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:48 smithi123 bash[18776]: cluster 2024-02-10T07:58:47.479398+0000 mgr.smithi007.lzuqsb (mgr.14180) 77 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:48 smithi123 bash[18776]: audit 2024-02-10T07:58:48.359861+0000 mon.smithi007 (mon.0) 247 : audit [DBG] from='client.? 172.21.15.7:0/3689765920' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:49.150 INFO:teuthology.orchestra.run.smithi007.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-10T07:58:50.151 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:58:50.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:50 smithi007 bash[14094]: cluster 2024-02-10T07:58:49.479831+0000 mgr.smithi007.lzuqsb (mgr.14180) 78 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:50.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:50 smithi123 bash[18776]: cluster 2024-02-10T07:58:49.479831+0000 mgr.smithi007.lzuqsb (mgr.14180) 78 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:51.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:51 smithi007 bash[14094]: audit 2024-02-10T07:58:50.782280+0000 mon.smithi007 (mon.0) 248 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:51.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:51 smithi007 bash[14094]: audit 2024-02-10T07:58:50.789259+0000 mon.smithi007 (mon.0) 249 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:51.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:51 smithi007 bash[14094]: cluster 2024-02-10T07:58:51.480252+0000 mgr.smithi007.lzuqsb (mgr.14180) 79 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:51.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:51 smithi007 bash[14094]: audit 2024-02-10T07:58:51.567835+0000 mon.smithi007 (mon.0) 250 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:52.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:51 smithi123 bash[18776]: audit 2024-02-10T07:58:50.782280+0000 mon.smithi007 (mon.0) 248 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:52.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:51 smithi123 bash[18776]: audit 2024-02-10T07:58:50.789259+0000 mon.smithi007 (mon.0) 249 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:52.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:51 smithi123 bash[18776]: cluster 2024-02-10T07:58:51.480252+0000 mgr.smithi007.lzuqsb (mgr.14180) 79 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:52.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:51 smithi123 bash[18776]: audit 2024-02-10T07:58:51.567835+0000 mon.smithi007 (mon.0) 250 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:53.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:52 smithi123 bash[18776]: audit 2024-02-10T07:58:51.844880+0000 mon.smithi007 (mon.0) 251 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:53.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:52 smithi123 bash[18776]: audit 2024-02-10T07:58:51.845949+0000 mon.smithi007 (mon.0) 252 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:53.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:52 smithi123 bash[18776]: audit 2024-02-10T07:58:51.846925+0000 mon.smithi007 (mon.0) 253 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T07:58:53.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:52 smithi123 bash[18776]: audit 2024-02-10T07:58:51.851862+0000 mon.smithi007 (mon.0) 254 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:53.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:52 smithi123 bash[18776]: audit 2024-02-10T07:58:51.856694+0000 mon.smithi007 (mon.0) 255 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T07:58:53.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:52 smithi123 bash[18776]: audit 2024-02-10T07:58:51.861071+0000 mon.smithi007 (mon.0) 256 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-10T07:58:53.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:52 smithi123 bash[18776]: audit 2024-02-10T07:58:51.864001+0000 mon.smithi007 (mon.0) 257 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-10T07:58:53.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:52 smithi123 bash[18776]: audit 2024-02-10T07:58:51.864349+0000 mon.smithi007 (mon.0) 258 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:53.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:52 smithi123 bash[18776]: audit 2024-02-10T07:58:51.865242+0000 mon.smithi007 (mon.0) 259 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:53.183 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:52 smithi007 bash[14094]: audit 2024-02-10T07:58:51.844880+0000 mon.smithi007 (mon.0) 251 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:53.183 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:52 smithi007 bash[14094]: audit 2024-02-10T07:58:51.845949+0000 mon.smithi007 (mon.0) 252 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:53.183 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:52 smithi007 bash[14094]: audit 2024-02-10T07:58:51.846925+0000 mon.smithi007 (mon.0) 253 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T07:58:53.183 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:52 smithi007 bash[14094]: audit 2024-02-10T07:58:51.851862+0000 mon.smithi007 (mon.0) 254 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:58:53.183 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:52 smithi007 bash[14094]: audit 2024-02-10T07:58:51.856694+0000 mon.smithi007 (mon.0) 255 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T07:58:53.183 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:52 smithi007 bash[14094]: audit 2024-02-10T07:58:51.861071+0000 mon.smithi007 (mon.0) 256 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-10T07:58:53.183 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:52 smithi007 bash[14094]: audit 2024-02-10T07:58:51.864001+0000 mon.smithi007 (mon.0) 257 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-10T07:58:53.183 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:52 smithi007 bash[14094]: audit 2024-02-10T07:58:51.864349+0000 mon.smithi007 (mon.0) 258 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:53.183 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:52 smithi007 bash[14094]: audit 2024-02-10T07:58:51.865242+0000 mon.smithi007 (mon.0) 259 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:58:53.587 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:58:53.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:53 smithi007 bash[14094]: cluster 2024-02-10T07:58:53.480641+0000 mgr.smithi007.lzuqsb (mgr.14180) 80 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:53.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:53 smithi007 bash[14094]: audit 2024-02-10T07:58:53.586007+0000 mon.smithi007 (mon.0) 260 : audit [DBG] from='client.? 172.21.15.7:0/528641297' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:54.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:53 smithi123 bash[18776]: cluster 2024-02-10T07:58:53.480641+0000 mgr.smithi007.lzuqsb (mgr.14180) 80 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:54.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:53 smithi123 bash[18776]: audit 2024-02-10T07:58:53.586007+0000 mon.smithi007 (mon.0) 260 : audit [DBG] from='client.? 172.21.15.7:0/528641297' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:54.386 INFO:teuthology.orchestra.run.smithi007.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-10T07:58:55.388 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:58:56.884 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:56 smithi007 bash[14094]: cluster 2024-02-10T07:58:55.481152+0000 mgr.smithi007.lzuqsb (mgr.14180) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:56.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:56 smithi123 bash[18776]: cluster 2024-02-10T07:58:55.481152+0000 mgr.smithi007.lzuqsb (mgr.14180) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:58.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:58 smithi123 bash[18776]: cluster 2024-02-10T07:58:57.481470+0000 mgr.smithi007.lzuqsb (mgr.14180) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:58.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:58 smithi007 bash[14094]: cluster 2024-02-10T07:58:57.481470+0000 mgr.smithi007.lzuqsb (mgr.14180) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:58:59.356 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:58:59.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:58:59 smithi007 bash[14094]: audit 2024-02-10T07:58:59.355237+0000 mon.smithi007 (mon.0) 261 : audit [DBG] from='client.? 172.21.15.7:0/1262213007' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:58:59.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:58:59 smithi123 bash[18776]: audit 2024-02-10T07:58:59.355237+0000 mon.smithi007 (mon.0) 261 : audit [DBG] from='client.? 172.21.15.7:0/1262213007' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:00.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:00 smithi123 bash[18776]: cluster 2024-02-10T07:58:59.481829+0000 mgr.smithi007.lzuqsb (mgr.14180) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:00.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:00 smithi007 bash[14094]: cluster 2024-02-10T07:58:59.481829+0000 mgr.smithi007.lzuqsb (mgr.14180) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:00.919 INFO:teuthology.orchestra.run.smithi007.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-10T07:59:01.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:01 smithi007 bash[14094]: audit 2024-02-10T07:59:00.653959+0000 mon.smithi007 (mon.0) 262 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "74e798bd-74f0-488a-add6-d80ca855dc11"}]: dispatch 2024-02-10T07:59:01.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:01 smithi007 bash[14094]: audit 2024-02-10T07:59:00.654195+0000 mon.smithi123 (mon.1) 2 : audit [INF] from='client.? 172.21.15.123:0/3466788099' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "74e798bd-74f0-488a-add6-d80ca855dc11"}]: dispatch 2024-02-10T07:59:01.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:01 smithi007 bash[14094]: audit 2024-02-10T07:59:00.658213+0000 mon.smithi007 (mon.0) 263 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "74e798bd-74f0-488a-add6-d80ca855dc11"}]': finished 2024-02-10T07:59:01.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:01 smithi007 bash[14094]: cluster 2024-02-10T07:59:00.658271+0000 mon.smithi007 (mon.0) 264 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-10T07:59:01.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:01 smithi007 bash[14094]: audit 2024-02-10T07:59:00.658564+0000 mon.smithi007 (mon.0) 265 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:01.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:01 smithi123 bash[18776]: audit 2024-02-10T07:59:00.653959+0000 mon.smithi007 (mon.0) 262 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "74e798bd-74f0-488a-add6-d80ca855dc11"}]: dispatch 2024-02-10T07:59:01.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:01 smithi123 bash[18776]: audit 2024-02-10T07:59:00.654195+0000 mon.smithi123 (mon.1) 2 : audit [INF] from='client.? 172.21.15.123:0/3466788099' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "74e798bd-74f0-488a-add6-d80ca855dc11"}]: dispatch 2024-02-10T07:59:01.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:01 smithi123 bash[18776]: audit 2024-02-10T07:59:00.658213+0000 mon.smithi007 (mon.0) 263 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "74e798bd-74f0-488a-add6-d80ca855dc11"}]': finished 2024-02-10T07:59:01.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:01 smithi123 bash[18776]: cluster 2024-02-10T07:59:00.658271+0000 mon.smithi007 (mon.0) 264 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-10T07:59:01.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:01 smithi123 bash[18776]: audit 2024-02-10T07:59:00.658564+0000 mon.smithi007 (mon.0) 265 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:01.920 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:59:02.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:02 smithi007 bash[14094]: cluster 2024-02-10T07:59:01.482179+0000 mgr.smithi007.lzuqsb (mgr.14180) 84 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:02.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:02 smithi007 bash[14094]: audit 2024-02-10T07:59:02.271782+0000 mon.smithi123 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.123:0/1141619061' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:02.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:02 smithi123 bash[18776]: cluster 2024-02-10T07:59:01.482179+0000 mgr.smithi007.lzuqsb (mgr.14180) 84 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:02.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:02 smithi123 bash[18776]: audit 2024-02-10T07:59:02.271782+0000 mon.smithi123 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.123:0/1141619061' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:03.707 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:03 smithi007 bash[14094]: audit 2024-02-10T07:59:02.810468+0000 mon.smithi007 (mon.0) 266 : audit [INF] from='client.? 172.21.15.7:0/1557116282' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "375d6fd4-1f83-4525-beb1-bcdd03b060c8"}]: dispatch 2024-02-10T07:59:03.707 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:03 smithi007 bash[14094]: audit 2024-02-10T07:59:02.815383+0000 mon.smithi007 (mon.0) 267 : audit [INF] from='client.? 172.21.15.7:0/1557116282' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "375d6fd4-1f83-4525-beb1-bcdd03b060c8"}]': finished 2024-02-10T07:59:03.707 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:03 smithi007 bash[14094]: cluster 2024-02-10T07:59:02.815420+0000 mon.smithi007 (mon.0) 268 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-10T07:59:03.707 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:03 smithi007 bash[14094]: audit 2024-02-10T07:59:02.815517+0000 mon.smithi007 (mon.0) 269 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:03.707 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:03 smithi007 bash[14094]: audit 2024-02-10T07:59:02.815739+0000 mon.smithi007 (mon.0) 270 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:03.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:03 smithi123 bash[18776]: audit 2024-02-10T07:59:02.810468+0000 mon.smithi007 (mon.0) 266 : audit [INF] from='client.? 172.21.15.7:0/1557116282' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "375d6fd4-1f83-4525-beb1-bcdd03b060c8"}]: dispatch 2024-02-10T07:59:03.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:03 smithi123 bash[18776]: audit 2024-02-10T07:59:02.815383+0000 mon.smithi007 (mon.0) 267 : audit [INF] from='client.? 172.21.15.7:0/1557116282' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "375d6fd4-1f83-4525-beb1-bcdd03b060c8"}]': finished 2024-02-10T07:59:03.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:03 smithi123 bash[18776]: cluster 2024-02-10T07:59:02.815420+0000 mon.smithi007 (mon.0) 268 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-10T07:59:03.876 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:03 smithi123 bash[18776]: audit 2024-02-10T07:59:02.815517+0000 mon.smithi007 (mon.0) 269 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:03.876 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:03 smithi123 bash[18776]: audit 2024-02-10T07:59:02.815739+0000 mon.smithi007 (mon.0) 270 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:04.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:04 smithi007 bash[14094]: cluster 2024-02-10T07:59:03.482589+0000 mgr.smithi007.lzuqsb (mgr.14180) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:04.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:04 smithi123 bash[18776]: cluster 2024-02-10T07:59:03.482589+0000 mgr.smithi007.lzuqsb (mgr.14180) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:05.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:05 smithi123 bash[18776]: audit 2024-02-10T07:59:05.080757+0000 mon.smithi007 (mon.0) 271 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1319a656-c3da-4f5a-8d58-b4b2e7ce2139"}]: dispatch 2024-02-10T07:59:05.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:05 smithi123 bash[18776]: audit 2024-02-10T07:59:05.080974+0000 mon.smithi123 (mon.1) 4 : audit [INF] from='client.? 172.21.15.123:0/958968317' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1319a656-c3da-4f5a-8d58-b4b2e7ce2139"}]: dispatch 2024-02-10T07:59:05.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:05 smithi123 bash[18776]: audit 2024-02-10T07:59:05.088493+0000 mon.smithi007 (mon.0) 272 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1319a656-c3da-4f5a-8d58-b4b2e7ce2139"}]': finished 2024-02-10T07:59:05.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:05 smithi123 bash[18776]: cluster 2024-02-10T07:59:05.088600+0000 mon.smithi007 (mon.0) 273 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-10T07:59:05.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:05 smithi123 bash[18776]: audit 2024-02-10T07:59:05.088853+0000 mon.smithi007 (mon.0) 274 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:05.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:05 smithi123 bash[18776]: audit 2024-02-10T07:59:05.089367+0000 mon.smithi007 (mon.0) 275 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:05.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:05 smithi123 bash[18776]: audit 2024-02-10T07:59:05.089645+0000 mon.smithi007 (mon.0) 276 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:05.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:05 smithi123 bash[18776]: audit 2024-02-10T07:59:05.277040+0000 mon.smithi007 (mon.0) 277 : audit [DBG] from='client.? 172.21.15.7:0/4179404604' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:05.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:05 smithi007 bash[14094]: audit 2024-02-10T07:59:05.080757+0000 mon.smithi007 (mon.0) 271 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1319a656-c3da-4f5a-8d58-b4b2e7ce2139"}]: dispatch 2024-02-10T07:59:05.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:05 smithi007 bash[14094]: audit 2024-02-10T07:59:05.080974+0000 mon.smithi123 (mon.1) 4 : audit [INF] from='client.? 172.21.15.123:0/958968317' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1319a656-c3da-4f5a-8d58-b4b2e7ce2139"}]: dispatch 2024-02-10T07:59:05.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:05 smithi007 bash[14094]: audit 2024-02-10T07:59:05.088493+0000 mon.smithi007 (mon.0) 272 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1319a656-c3da-4f5a-8d58-b4b2e7ce2139"}]': finished 2024-02-10T07:59:05.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:05 smithi007 bash[14094]: cluster 2024-02-10T07:59:05.088600+0000 mon.smithi007 (mon.0) 273 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-10T07:59:05.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:05 smithi007 bash[14094]: audit 2024-02-10T07:59:05.088853+0000 mon.smithi007 (mon.0) 274 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:05.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:05 smithi007 bash[14094]: audit 2024-02-10T07:59:05.089367+0000 mon.smithi007 (mon.0) 275 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:05.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:05 smithi007 bash[14094]: audit 2024-02-10T07:59:05.089645+0000 mon.smithi007 (mon.0) 276 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:05.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:05 smithi007 bash[14094]: audit 2024-02-10T07:59:05.277040+0000 mon.smithi007 (mon.0) 277 : audit [DBG] from='client.? 172.21.15.7:0/4179404604' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:05.892 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:59:06.641 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":8,"num_osds":3,"num_up_osds":0,"osd_up_since":0,"num_in_osds":3,"osd_in_since":1707551945,"num_remapped_pgs":0} 2024-02-10T07:59:06.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:06 smithi007 bash[14094]: cluster 2024-02-10T07:59:05.482954+0000 mgr.smithi007.lzuqsb (mgr.14180) 86 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:06.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:06 smithi007 bash[14094]: audit 2024-02-10T07:59:05.891334+0000 mon.smithi007 (mon.0) 278 : audit [DBG] from='client.? 172.21.15.7:0/342328906' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:06.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:06 smithi123 bash[18776]: cluster 2024-02-10T07:59:05.482954+0000 mgr.smithi007.lzuqsb (mgr.14180) 86 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:06.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:06 smithi123 bash[18776]: audit 2024-02-10T07:59:05.891334+0000 mon.smithi007 (mon.0) 278 : audit [DBG] from='client.? 172.21.15.7:0/342328906' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:07.642 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:59:07.836 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:07 smithi007 bash[14094]: audit 2024-02-10T07:59:06.665002+0000 mon.smithi123 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.123:0/129951330' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:07.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:07 smithi123 bash[18776]: audit 2024-02-10T07:59:06.665002+0000 mon.smithi123 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.123:0/129951330' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:08.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:08 smithi007 bash[14094]: cluster 2024-02-10T07:59:07.483377+0000 mgr.smithi007.lzuqsb (mgr.14180) 87 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:08.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:08 smithi007 bash[14094]: audit 2024-02-10T07:59:08.051623+0000 mon.smithi007 (mon.0) 279 : audit [INF] from='client.? 172.21.15.7:0/3526818637' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c0b5d851-850d-4f76-9aab-6a6bc47b903b"}]: dispatch 2024-02-10T07:59:08.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:08 smithi007 bash[14094]: audit 2024-02-10T07:59:08.056043+0000 mon.smithi007 (mon.0) 280 : audit [INF] from='client.? 172.21.15.7:0/3526818637' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c0b5d851-850d-4f76-9aab-6a6bc47b903b"}]': finished 2024-02-10T07:59:08.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:08 smithi007 bash[14094]: cluster 2024-02-10T07:59:08.056102+0000 mon.smithi007 (mon.0) 281 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-10T07:59:08.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:08 smithi007 bash[14094]: audit 2024-02-10T07:59:08.056291+0000 mon.smithi007 (mon.0) 282 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:08.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:08 smithi007 bash[14094]: audit 2024-02-10T07:59:08.056923+0000 mon.smithi007 (mon.0) 283 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:08.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:08 smithi007 bash[14094]: audit 2024-02-10T07:59:08.057250+0000 mon.smithi007 (mon.0) 284 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:08.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:08 smithi007 bash[14094]: audit 2024-02-10T07:59:08.057566+0000 mon.smithi007 (mon.0) 285 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:08.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:08 smithi123 bash[18776]: cluster 2024-02-10T07:59:07.483377+0000 mgr.smithi007.lzuqsb (mgr.14180) 87 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:08.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:08 smithi123 bash[18776]: audit 2024-02-10T07:59:08.051623+0000 mon.smithi007 (mon.0) 279 : audit [INF] from='client.? 172.21.15.7:0/3526818637' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c0b5d851-850d-4f76-9aab-6a6bc47b903b"}]: dispatch 2024-02-10T07:59:08.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:08 smithi123 bash[18776]: audit 2024-02-10T07:59:08.056043+0000 mon.smithi007 (mon.0) 280 : audit [INF] from='client.? 172.21.15.7:0/3526818637' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c0b5d851-850d-4f76-9aab-6a6bc47b903b"}]': finished 2024-02-10T07:59:08.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:08 smithi123 bash[18776]: cluster 2024-02-10T07:59:08.056102+0000 mon.smithi007 (mon.0) 281 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-10T07:59:08.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:08 smithi123 bash[18776]: audit 2024-02-10T07:59:08.056291+0000 mon.smithi007 (mon.0) 282 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:08.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:08 smithi123 bash[18776]: audit 2024-02-10T07:59:08.056923+0000 mon.smithi007 (mon.0) 283 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:08.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:08 smithi123 bash[18776]: audit 2024-02-10T07:59:08.057250+0000 mon.smithi007 (mon.0) 284 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:08.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:08 smithi123 bash[18776]: audit 2024-02-10T07:59:08.057566+0000 mon.smithi007 (mon.0) 285 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:09.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:09 smithi007 bash[14094]: audit 2024-02-10T07:59:09.492034+0000 mon.smithi007 (mon.0) 286 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a5c06eb9-eb73-453f-a244-f428877ced69"}]: dispatch 2024-02-10T07:59:09.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:09 smithi007 bash[14094]: audit 2024-02-10T07:59:09.492515+0000 mon.smithi123 (mon.1) 6 : audit [INF] from='client.? 172.21.15.123:0/1048160209' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a5c06eb9-eb73-453f-a244-f428877ced69"}]: dispatch 2024-02-10T07:59:09.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:09 smithi007 bash[14094]: audit 2024-02-10T07:59:09.497001+0000 mon.smithi007 (mon.0) 287 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a5c06eb9-eb73-453f-a244-f428877ced69"}]': finished 2024-02-10T07:59:09.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:09 smithi007 bash[14094]: cluster 2024-02-10T07:59:09.497083+0000 mon.smithi007 (mon.0) 288 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-10T07:59:09.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:09 smithi007 bash[14094]: audit 2024-02-10T07:59:09.497201+0000 mon.smithi007 (mon.0) 289 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:09.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:09 smithi007 bash[14094]: audit 2024-02-10T07:59:09.497471+0000 mon.smithi007 (mon.0) 290 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:09.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:09 smithi007 bash[14094]: audit 2024-02-10T07:59:09.497639+0000 mon.smithi007 (mon.0) 291 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:09.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:09 smithi007 bash[14094]: audit 2024-02-10T07:59:09.497824+0000 mon.smithi007 (mon.0) 292 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:09.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:09 smithi007 bash[14094]: audit 2024-02-10T07:59:09.498011+0000 mon.smithi007 (mon.0) 293 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:09.801 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:09 smithi123 bash[18776]: audit 2024-02-10T07:59:09.492034+0000 mon.smithi007 (mon.0) 286 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a5c06eb9-eb73-453f-a244-f428877ced69"}]: dispatch 2024-02-10T07:59:09.801 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:09 smithi123 bash[18776]: audit 2024-02-10T07:59:09.492515+0000 mon.smithi123 (mon.1) 6 : audit [INF] from='client.? 172.21.15.123:0/1048160209' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a5c06eb9-eb73-453f-a244-f428877ced69"}]: dispatch 2024-02-10T07:59:09.801 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:09 smithi123 bash[18776]: audit 2024-02-10T07:59:09.497001+0000 mon.smithi007 (mon.0) 287 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a5c06eb9-eb73-453f-a244-f428877ced69"}]': finished 2024-02-10T07:59:09.801 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:09 smithi123 bash[18776]: cluster 2024-02-10T07:59:09.497083+0000 mon.smithi007 (mon.0) 288 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-10T07:59:09.801 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:09 smithi123 bash[18776]: audit 2024-02-10T07:59:09.497201+0000 mon.smithi007 (mon.0) 289 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:09.801 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:09 smithi123 bash[18776]: audit 2024-02-10T07:59:09.497471+0000 mon.smithi007 (mon.0) 290 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:09.801 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:09 smithi123 bash[18776]: audit 2024-02-10T07:59:09.497639+0000 mon.smithi007 (mon.0) 291 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:09.801 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:09 smithi123 bash[18776]: audit 2024-02-10T07:59:09.497824+0000 mon.smithi007 (mon.0) 292 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:09.801 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:09 smithi123 bash[18776]: audit 2024-02-10T07:59:09.498011+0000 mon.smithi007 (mon.0) 293 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:10.871 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:10 smithi007 bash[14094]: cluster 2024-02-10T07:59:09.483881+0000 mgr.smithi007.lzuqsb (mgr.14180) 88 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:10.871 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:10 smithi007 bash[14094]: audit 2024-02-10T07:59:10.359376+0000 mon.smithi007 (mon.0) 294 : audit [DBG] from='client.? 172.21.15.7:0/477311865' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:10 smithi123 bash[18776]: cluster 2024-02-10T07:59:09.483881+0000 mgr.smithi007.lzuqsb (mgr.14180) 88 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:10 smithi123 bash[18776]: audit 2024-02-10T07:59:10.359376+0000 mon.smithi007 (mon.0) 294 : audit [DBG] from='client.? 172.21.15.7:0/477311865' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:11.286 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:59:11.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:11 smithi007 bash[14094]: audit 2024-02-10T07:59:11.066900+0000 mon.smithi123 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.123:0/2616116559' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:11.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:11 smithi007 bash[14094]: audit 2024-02-10T07:59:11.285668+0000 mon.smithi007 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.7:0/742829473' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:11.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:11 smithi123 bash[18776]: audit 2024-02-10T07:59:11.066900+0000 mon.smithi123 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.123:0/2616116559' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:11.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:11 smithi123 bash[18776]: audit 2024-02-10T07:59:11.285668+0000 mon.smithi007 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.7:0/742829473' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:12.002 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":10,"num_osds":5,"num_up_osds":0,"osd_up_since":0,"num_in_osds":5,"osd_in_since":1707551949,"num_remapped_pgs":0} 2024-02-10T07:59:12.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:12 smithi123 bash[18776]: cluster 2024-02-10T07:59:11.484222+0000 mgr.smithi007.lzuqsb (mgr.14180) 89 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:12.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:12 smithi007 bash[14094]: cluster 2024-02-10T07:59:11.484222+0000 mgr.smithi007.lzuqsb (mgr.14180) 89 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:13.003 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:59:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:13 smithi007 bash[14094]: audit 2024-02-10T07:59:13.179473+0000 mon.smithi007 (mon.0) 296 : audit [INF] from='client.? 172.21.15.7:0/981568745' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d18c4aaa-bad0-4cc4-bc70-911813451a99"}]: dispatch 2024-02-10T07:59:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:13 smithi007 bash[14094]: audit 2024-02-10T07:59:13.184918+0000 mon.smithi007 (mon.0) 297 : audit [INF] from='client.? 172.21.15.7:0/981568745' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d18c4aaa-bad0-4cc4-bc70-911813451a99"}]': finished 2024-02-10T07:59:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:13 smithi007 bash[14094]: cluster 2024-02-10T07:59:13.184976+0000 mon.smithi007 (mon.0) 298 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-10T07:59:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:13 smithi007 bash[14094]: audit 2024-02-10T07:59:13.185444+0000 mon.smithi007 (mon.0) 299 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:13 smithi007 bash[14094]: audit 2024-02-10T07:59:13.186143+0000 mon.smithi007 (mon.0) 300 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:13 smithi007 bash[14094]: audit 2024-02-10T07:59:13.186566+0000 mon.smithi007 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:13 smithi007 bash[14094]: audit 2024-02-10T07:59:13.186889+0000 mon.smithi007 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:13 smithi007 bash[14094]: audit 2024-02-10T07:59:13.187208+0000 mon.smithi007 (mon.0) 303 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:13 smithi007 bash[14094]: audit 2024-02-10T07:59:13.187549+0000 mon.smithi007 (mon.0) 304 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:13.873 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:13 smithi123 bash[18776]: audit 2024-02-10T07:59:13.179473+0000 mon.smithi007 (mon.0) 296 : audit [INF] from='client.? 172.21.15.7:0/981568745' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d18c4aaa-bad0-4cc4-bc70-911813451a99"}]: dispatch 2024-02-10T07:59:13.873 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:13 smithi123 bash[18776]: audit 2024-02-10T07:59:13.184918+0000 mon.smithi007 (mon.0) 297 : audit [INF] from='client.? 172.21.15.7:0/981568745' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d18c4aaa-bad0-4cc4-bc70-911813451a99"}]': finished 2024-02-10T07:59:13.873 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:13 smithi123 bash[18776]: cluster 2024-02-10T07:59:13.184976+0000 mon.smithi007 (mon.0) 298 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-10T07:59:13.873 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:13 smithi123 bash[18776]: audit 2024-02-10T07:59:13.185444+0000 mon.smithi007 (mon.0) 299 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:13.873 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:13 smithi123 bash[18776]: audit 2024-02-10T07:59:13.186143+0000 mon.smithi007 (mon.0) 300 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:13.873 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:13 smithi123 bash[18776]: audit 2024-02-10T07:59:13.186566+0000 mon.smithi007 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:13.873 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:13 smithi123 bash[18776]: audit 2024-02-10T07:59:13.186889+0000 mon.smithi007 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:13.873 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:13 smithi123 bash[18776]: audit 2024-02-10T07:59:13.187208+0000 mon.smithi007 (mon.0) 303 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:13.873 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:13 smithi123 bash[18776]: audit 2024-02-10T07:59:13.187549+0000 mon.smithi007 (mon.0) 304 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: cluster 2024-02-10T07:59:13.484555+0000 mgr.smithi007.lzuqsb (mgr.14180) 90 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: audit 2024-02-10T07:59:13.868544+0000 mon.smithi007 (mon.0) 305 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "32228bb7-3cb2-42fa-9142-c57160cb6643"}]: dispatch 2024-02-10T07:59:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: audit 2024-02-10T07:59:13.868881+0000 mon.smithi123 (mon.1) 8 : audit [INF] from='client.? 172.21.15.123:0/3682274053' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "32228bb7-3cb2-42fa-9142-c57160cb6643"}]: dispatch 2024-02-10T07:59:14.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: audit 2024-02-10T07:59:13.873386+0000 mon.smithi007 (mon.0) 306 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "32228bb7-3cb2-42fa-9142-c57160cb6643"}]': finished 2024-02-10T07:59:14.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: cluster 2024-02-10T07:59:13.873451+0000 mon.smithi007 (mon.0) 307 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-10T07:59:14.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: audit 2024-02-10T07:59:13.873683+0000 mon.smithi007 (mon.0) 308 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:14.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: audit 2024-02-10T07:59:13.874092+0000 mon.smithi007 (mon.0) 309 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:14.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: audit 2024-02-10T07:59:13.874358+0000 mon.smithi007 (mon.0) 310 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:14.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: audit 2024-02-10T07:59:13.874620+0000 mon.smithi007 (mon.0) 311 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:14.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: audit 2024-02-10T07:59:13.874899+0000 mon.smithi007 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:14.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: audit 2024-02-10T07:59:13.875122+0000 mon.smithi007 (mon.0) 313 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:14.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:14 smithi123 bash[18776]: audit 2024-02-10T07:59:13.875371+0000 mon.smithi007 (mon.0) 314 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:14.988 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: cluster 2024-02-10T07:59:13.484555+0000 mgr.smithi007.lzuqsb (mgr.14180) 90 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:14.988 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: audit 2024-02-10T07:59:13.868544+0000 mon.smithi007 (mon.0) 305 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "32228bb7-3cb2-42fa-9142-c57160cb6643"}]: dispatch 2024-02-10T07:59:14.988 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: audit 2024-02-10T07:59:13.868881+0000 mon.smithi123 (mon.1) 8 : audit [INF] from='client.? 172.21.15.123:0/3682274053' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "32228bb7-3cb2-42fa-9142-c57160cb6643"}]: dispatch 2024-02-10T07:59:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: audit 2024-02-10T07:59:13.873386+0000 mon.smithi007 (mon.0) 306 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "32228bb7-3cb2-42fa-9142-c57160cb6643"}]': finished 2024-02-10T07:59:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: cluster 2024-02-10T07:59:13.873451+0000 mon.smithi007 (mon.0) 307 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-10T07:59:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: audit 2024-02-10T07:59:13.873683+0000 mon.smithi007 (mon.0) 308 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: audit 2024-02-10T07:59:13.874092+0000 mon.smithi007 (mon.0) 309 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: audit 2024-02-10T07:59:13.874358+0000 mon.smithi007 (mon.0) 310 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: audit 2024-02-10T07:59:13.874620+0000 mon.smithi007 (mon.0) 311 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: audit 2024-02-10T07:59:13.874899+0000 mon.smithi007 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: audit 2024-02-10T07:59:13.875122+0000 mon.smithi007 (mon.0) 313 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:14 smithi007 bash[14094]: audit 2024-02-10T07:59:13.875371+0000 mon.smithi007 (mon.0) 314 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:15.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:15 smithi123 bash[18776]: audit 2024-02-10T07:59:15.472742+0000 mon.smithi123 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.123:0/289929943' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:15.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:15 smithi007 bash[14094]: audit 2024-02-10T07:59:15.472742+0000 mon.smithi123 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.123:0/289929943' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:16 smithi123 bash[18776]: cluster 2024-02-10T07:59:15.484894+0000 mgr.smithi007.lzuqsb (mgr.14180) 91 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:16 smithi123 bash[18776]: audit 2024-02-10T07:59:15.656470+0000 mon.smithi007 (mon.0) 315 : audit [DBG] from='client.? 172.21.15.7:0/692762221' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:16.957 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:59:16.988 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:16 smithi007 bash[14094]: cluster 2024-02-10T07:59:15.484894+0000 mgr.smithi007.lzuqsb (mgr.14180) 91 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:16.991 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:16 smithi007 bash[14094]: audit 2024-02-10T07:59:15.656470+0000 mon.smithi007 (mon.0) 315 : audit [DBG] from='client.? 172.21.15.7:0/692762221' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:17.684 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":12,"num_osds":7,"num_up_osds":0,"osd_up_since":0,"num_in_osds":7,"osd_in_since":1707551953,"num_remapped_pgs":0} 2024-02-10T07:59:17.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:17 smithi123 bash[18776]: audit 2024-02-10T07:59:16.956699+0000 mon.smithi007 (mon.0) 316 : audit [DBG] from='client.? 172.21.15.7:0/2288361148' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:17.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:17 smithi007 bash[14094]: audit 2024-02-10T07:59:16.956699+0000 mon.smithi007 (mon.0) 316 : audit [DBG] from='client.? 172.21.15.7:0/2288361148' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:18.686 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:59:18.885 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: cluster 2024-02-10T07:59:17.485202+0000 mgr.smithi007.lzuqsb (mgr.14180) 92 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:18.885 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: audit 2024-02-10T07:59:18.474151+0000 mon.smithi007 (mon.0) 317 : audit [INF] from='client.? 172.21.15.7:0/1413448328' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b135a7a2-bdac-4f3a-b1c5-7a18a0e15d72"}]: dispatch 2024-02-10T07:59:18.885 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: audit 2024-02-10T07:59:18.478776+0000 mon.smithi007 (mon.0) 318 : audit [INF] from='client.? 172.21.15.7:0/1413448328' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b135a7a2-bdac-4f3a-b1c5-7a18a0e15d72"}]': finished 2024-02-10T07:59:18.885 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: cluster 2024-02-10T07:59:18.478830+0000 mon.smithi007 (mon.0) 319 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-10T07:59:18.885 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: audit 2024-02-10T07:59:18.479077+0000 mon.smithi007 (mon.0) 320 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:18.885 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: audit 2024-02-10T07:59:18.479674+0000 mon.smithi007 (mon.0) 321 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:18.886 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: audit 2024-02-10T07:59:18.480023+0000 mon.smithi007 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:18.886 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: audit 2024-02-10T07:59:18.480354+0000 mon.smithi007 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:18.886 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: audit 2024-02-10T07:59:18.480697+0000 mon.smithi007 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:18.886 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: audit 2024-02-10T07:59:18.481023+0000 mon.smithi007 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:18.886 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: audit 2024-02-10T07:59:18.481353+0000 mon.smithi007 (mon.0) 326 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:18.886 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:18 smithi007 bash[14094]: audit 2024-02-10T07:59:18.481677+0000 mon.smithi007 (mon.0) 327 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: cluster 2024-02-10T07:59:17.485202+0000 mgr.smithi007.lzuqsb (mgr.14180) 92 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: audit 2024-02-10T07:59:18.474151+0000 mon.smithi007 (mon.0) 317 : audit [INF] from='client.? 172.21.15.7:0/1413448328' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b135a7a2-bdac-4f3a-b1c5-7a18a0e15d72"}]: dispatch 2024-02-10T07:59:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: audit 2024-02-10T07:59:18.478776+0000 mon.smithi007 (mon.0) 318 : audit [INF] from='client.? 172.21.15.7:0/1413448328' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b135a7a2-bdac-4f3a-b1c5-7a18a0e15d72"}]': finished 2024-02-10T07:59:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: cluster 2024-02-10T07:59:18.478830+0000 mon.smithi007 (mon.0) 319 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-10T07:59:18.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: audit 2024-02-10T07:59:18.479077+0000 mon.smithi007 (mon.0) 320 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:18.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: audit 2024-02-10T07:59:18.479674+0000 mon.smithi007 (mon.0) 321 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:18.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: audit 2024-02-10T07:59:18.480023+0000 mon.smithi007 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:18.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: audit 2024-02-10T07:59:18.480354+0000 mon.smithi007 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:18.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: audit 2024-02-10T07:59:18.480697+0000 mon.smithi007 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:18.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: audit 2024-02-10T07:59:18.481023+0000 mon.smithi007 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:18.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: audit 2024-02-10T07:59:18.481353+0000 mon.smithi007 (mon.0) 326 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:18.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:18 smithi123 bash[18776]: audit 2024-02-10T07:59:18.481677+0000 mon.smithi007 (mon.0) 327 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:20.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:20 smithi123 bash[18776]: cluster 2024-02-10T07:59:19.485633+0000 mgr.smithi007.lzuqsb (mgr.14180) 93 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:20.957 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:20 smithi007 bash[14094]: cluster 2024-02-10T07:59:19.485633+0000 mgr.smithi007.lzuqsb (mgr.14180) 93 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:21.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:21 smithi007 bash[14094]: audit 2024-02-10T07:59:20.694341+0000 mon.smithi007 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.7:0/348730441' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:21.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:21 smithi123 bash[18776]: audit 2024-02-10T07:59:20.694341+0000 mon.smithi007 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.7:0/348730441' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-10T07:59:22.151 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:59:22.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:22 smithi007 bash[14094]: cluster 2024-02-10T07:59:21.486120+0000 mgr.smithi007.lzuqsb (mgr.14180) 94 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:22.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:22 smithi007 bash[14094]: audit 2024-02-10T07:59:22.150406+0000 mon.smithi007 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.7:0/307199578' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:22.901 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1707551958,"num_remapped_pgs":0} 2024-02-10T07:59:22.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:22 smithi123 bash[18776]: cluster 2024-02-10T07:59:21.486120+0000 mgr.smithi007.lzuqsb (mgr.14180) 94 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:22.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:22 smithi123 bash[18776]: audit 2024-02-10T07:59:22.150406+0000 mon.smithi007 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.7:0/307199578' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:23.903 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:59:24.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:24 smithi123 bash[18776]: cluster 2024-02-10T07:59:23.486646+0000 mgr.smithi007.lzuqsb (mgr.14180) 95 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:24.951 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:24 smithi007 bash[14094]: cluster 2024-02-10T07:59:23.486646+0000 mgr.smithi007.lzuqsb (mgr.14180) 95 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:26.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:26 smithi123 bash[18776]: cluster 2024-02-10T07:59:25.487142+0000 mgr.smithi007.lzuqsb (mgr.14180) 96 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:26.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:26 smithi007 bash[14094]: cluster 2024-02-10T07:59:25.487142+0000 mgr.smithi007.lzuqsb (mgr.14180) 96 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:27.093 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:59:27.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:27 smithi123 bash[18776]: audit 2024-02-10T07:59:27.063103+0000 mon.smithi007 (mon.0) 330 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-10T07:59:27.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:27 smithi123 bash[18776]: audit 2024-02-10T07:59:27.064712+0000 mon.smithi007 (mon.0) 331 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:27.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:27 smithi123 bash[18776]: audit 2024-02-10T07:59:27.092665+0000 mon.smithi007 (mon.0) 332 : audit [DBG] from='client.? 172.21.15.7:0/3565712195' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:27.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:27 smithi007 bash[14094]: audit 2024-02-10T07:59:27.063103+0000 mon.smithi007 (mon.0) 330 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-10T07:59:27.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:27 smithi007 bash[14094]: audit 2024-02-10T07:59:27.064712+0000 mon.smithi007 (mon.0) 331 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:27.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:27 smithi007 bash[14094]: audit 2024-02-10T07:59:27.092665+0000 mon.smithi007 (mon.0) 332 : audit [DBG] from='client.? 172.21.15.7:0/3565712195' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:27.806 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1707551958,"num_remapped_pgs":0} 2024-02-10T07:59:28.807 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:59:28.820 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:28 smithi007 bash[14094]: cephadm 2024-02-10T07:59:27.066119+0000 mgr.smithi007.lzuqsb (mgr.14180) 97 : cephadm [INF] Deploying daemon osd.0 on smithi123 2024-02-10T07:59:28.820 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:28 smithi007 bash[14094]: cluster 2024-02-10T07:59:27.487650+0000 mgr.smithi007.lzuqsb (mgr.14180) 98 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:28.911 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:28 smithi123 bash[18776]: cephadm 2024-02-10T07:59:27.066119+0000 mgr.smithi007.lzuqsb (mgr.14180) 97 : cephadm [INF] Deploying daemon osd.0 on smithi123 2024-02-10T07:59:28.911 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:28 smithi123 bash[18776]: cluster 2024-02-10T07:59:27.487650+0000 mgr.smithi007.lzuqsb (mgr.14180) 98 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:30.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:30 smithi007 bash[14094]: cluster 2024-02-10T07:59:29.488134+0000 mgr.smithi007.lzuqsb (mgr.14180) 99 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:30.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:30 smithi123 bash[18776]: cluster 2024-02-10T07:59:29.488134+0000 mgr.smithi007.lzuqsb (mgr.14180) 99 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:32.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:32 smithi007 bash[14094]: audit 2024-02-10T07:59:31.209077+0000 mon.smithi007 (mon.0) 333 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:32.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:32 smithi007 bash[14094]: audit 2024-02-10T07:59:31.210129+0000 mon.smithi007 (mon.0) 334 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-10T07:59:32.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:32 smithi007 bash[14094]: audit 2024-02-10T07:59:31.211262+0000 mon.smithi007 (mon.0) 335 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:32.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:32 smithi007 bash[14094]: cephadm 2024-02-10T07:59:31.212356+0000 mgr.smithi007.lzuqsb (mgr.14180) 100 : cephadm [INF] Deploying daemon osd.2 on smithi123 2024-02-10T07:59:32.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:32 smithi007 bash[14094]: cluster 2024-02-10T07:59:31.488530+0000 mgr.smithi007.lzuqsb (mgr.14180) 101 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:32.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:32 smithi123 bash[18776]: audit 2024-02-10T07:59:31.209077+0000 mon.smithi007 (mon.0) 333 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:32.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:32 smithi123 bash[18776]: audit 2024-02-10T07:59:31.210129+0000 mon.smithi007 (mon.0) 334 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-10T07:59:32.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:32 smithi123 bash[18776]: audit 2024-02-10T07:59:31.211262+0000 mon.smithi007 (mon.0) 335 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:32.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:32 smithi123 bash[18776]: cephadm 2024-02-10T07:59:31.212356+0000 mgr.smithi007.lzuqsb (mgr.14180) 100 : cephadm [INF] Deploying daemon osd.2 on smithi123 2024-02-10T07:59:32.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:32 smithi123 bash[18776]: cluster 2024-02-10T07:59:31.488530+0000 mgr.smithi007.lzuqsb (mgr.14180) 101 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:33.734 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:59:34.876 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:34 smithi007 bash[14094]: cluster 2024-02-10T07:59:33.488798+0000 mgr.smithi007.lzuqsb (mgr.14180) 102 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:34.876 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:34 smithi007 bash[14094]: audit 2024-02-10T07:59:33.733742+0000 mon.smithi007 (mon.0) 336 : audit [DBG] from='client.? 172.21.15.7:0/3302944149' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:34.877 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1707551958,"num_remapped_pgs":0} 2024-02-10T07:59:34.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:34 smithi123 bash[18776]: cluster 2024-02-10T07:59:33.488798+0000 mgr.smithi007.lzuqsb (mgr.14180) 102 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:34.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:34 smithi123 bash[18776]: audit 2024-02-10T07:59:33.733742+0000 mon.smithi007 (mon.0) 336 : audit [DBG] from='client.? 172.21.15.7:0/3302944149' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:35.635 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:35 smithi123 bash[18776]: audit 2024-02-10T07:59:35.032969+0000 mon.smithi007 (mon.0) 337 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-10T07:59:35.635 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:35 smithi123 bash[18776]: audit 2024-02-10T07:59:35.034217+0000 mon.smithi007 (mon.0) 338 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:35.878 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:59:35.889 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:35 smithi007 bash[14094]: audit 2024-02-10T07:59:35.032969+0000 mon.smithi007 (mon.0) 337 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-10T07:59:35.890 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:35 smithi007 bash[14094]: audit 2024-02-10T07:59:35.034217+0000 mon.smithi007 (mon.0) 338 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:36.604 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:36 smithi123 bash[18776]: cephadm 2024-02-10T07:59:35.035216+0000 mgr.smithi007.lzuqsb (mgr.14180) 103 : cephadm [INF] Deploying daemon osd.1 on smithi007 2024-02-10T07:59:36.604 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:36 smithi123 bash[18776]: cluster 2024-02-10T07:59:35.489168+0000 mgr.smithi007.lzuqsb (mgr.14180) 104 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:36.870 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:36 smithi007 bash[14094]: cephadm 2024-02-10T07:59:35.035216+0000 mgr.smithi007.lzuqsb (mgr.14180) 103 : cephadm [INF] Deploying daemon osd.1 on smithi007 2024-02-10T07:59:36.870 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:36 smithi007 bash[14094]: cluster 2024-02-10T07:59:35.489168+0000 mgr.smithi007.lzuqsb (mgr.14180) 104 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:37.876 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:37 smithi007 bash[14094]: audit 2024-02-10T07:59:36.580114+0000 mon.smithi007 (mon.0) 339 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:37.876 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:37 smithi007 bash[14094]: audit 2024-02-10T07:59:36.581176+0000 mon.smithi007 (mon.0) 340 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-10T07:59:37.876 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:37 smithi007 bash[14094]: audit 2024-02-10T07:59:36.582690+0000 mon.smithi007 (mon.0) 341 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:37.876 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:37 smithi007 bash[14094]: cephadm 2024-02-10T07:59:36.583584+0000 mgr.smithi007.lzuqsb (mgr.14180) 105 : cephadm [INF] Deploying daemon osd.4 on smithi123 2024-02-10T07:59:37.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:37 smithi123 bash[18776]: audit 2024-02-10T07:59:36.580114+0000 mon.smithi007 (mon.0) 339 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:37.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:37 smithi123 bash[18776]: audit 2024-02-10T07:59:36.581176+0000 mon.smithi007 (mon.0) 340 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-10T07:59:37.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:37 smithi123 bash[18776]: audit 2024-02-10T07:59:36.582690+0000 mon.smithi007 (mon.0) 341 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:37.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:37 smithi123 bash[18776]: cephadm 2024-02-10T07:59:36.583584+0000 mgr.smithi007.lzuqsb (mgr.14180) 105 : cephadm [INF] Deploying daemon osd.4 on smithi123 2024-02-10T07:59:38.872 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:38 smithi123 bash[18776]: cluster 2024-02-10T07:59:37.489546+0000 mgr.smithi007.lzuqsb (mgr.14180) 106 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:38.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:38 smithi007 bash[14094]: cluster 2024-02-10T07:59:37.489546+0000 mgr.smithi007.lzuqsb (mgr.14180) 106 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:39.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:39 smithi123 bash[18776]: audit 2024-02-10T07:59:38.998332+0000 mon.smithi007 (mon.0) 342 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-10T07:59:39.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:39 smithi123 bash[18776]: audit 2024-02-10T07:59:38.998628+0000 mon.smithi123 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.123:6800/1781266214,v1:172.21.15.123:6801/1781266214]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-10T07:59:39.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:39 smithi007 bash[14094]: audit 2024-02-10T07:59:38.998332+0000 mon.smithi007 (mon.0) 342 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-10T07:59:39.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:39 smithi007 bash[14094]: audit 2024-02-10T07:59:38.998628+0000 mon.smithi123 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.123:6800/1781266214,v1:172.21.15.123:6801/1781266214]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-10T07:59:40.476 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: cluster 2024-02-10T07:59:39.489933+0000 mgr.smithi007.lzuqsb (mgr.14180) 107 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.593618+0000 mon.smithi007 (mon.0) 343 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: cluster 2024-02-10T07:59:39.593736+0000 mon.smithi007 (mon.0) 344 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.593904+0000 mon.smithi007 (mon.0) 345 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.594361+0000 mon.smithi007 (mon.0) 346 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.594641+0000 mon.smithi007 (mon.0) 347 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.594911+0000 mon.smithi007 (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.595172+0000 mon.smithi007 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.595395+0000 mon.smithi007 (mon.0) 350 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.595653+0000 mon.smithi007 (mon.0) 351 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.595875+0000 mon.smithi007 (mon.0) 352 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.598353+0000 mon.smithi007 (mon.0) 353 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:40.716 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:39.598857+0000 mon.smithi123 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.123:6800/1781266214,v1:172.21.15.123:6801/1781266214]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:40.717 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:40 smithi123 bash[18776]: audit 2024-02-10T07:59:40.475133+0000 mon.smithi007 (mon.0) 354 : audit [DBG] from='client.? 172.21.15.7:0/876874257' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:40.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: cluster 2024-02-10T07:59:39.489933+0000 mgr.smithi007.lzuqsb (mgr.14180) 107 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.593618+0000 mon.smithi007 (mon.0) 343 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: cluster 2024-02-10T07:59:39.593736+0000 mon.smithi007 (mon.0) 344 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.593904+0000 mon.smithi007 (mon.0) 345 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.594361+0000 mon.smithi007 (mon.0) 346 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.594641+0000 mon.smithi007 (mon.0) 347 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.594911+0000 mon.smithi007 (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.595172+0000 mon.smithi007 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.595395+0000 mon.smithi007 (mon.0) 350 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.595653+0000 mon.smithi007 (mon.0) 351 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.595875+0000 mon.smithi007 (mon.0) 352 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.598353+0000 mon.smithi007 (mon.0) 353 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:39.598857+0000 mon.smithi123 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.123:6800/1781266214,v1:172.21.15.123:6801/1781266214]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:40 smithi007 bash[14094]: audit 2024-02-10T07:59:40.475133+0000 mon.smithi007 (mon.0) 354 : audit [DBG] from='client.? 172.21.15.7:0/876874257' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:41.573 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":14,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1707551958,"num_remapped_pgs":0} 2024-02-10T07:59:41.657 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: audit 2024-02-10T07:59:40.596216+0000 mon.smithi007 (mon.0) 355 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-02-10T07:59:41.657 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: cluster 2024-02-10T07:59:40.596417+0000 mon.smithi007 (mon.0) 356 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-10T07:59:41.657 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: audit 2024-02-10T07:59:40.597006+0000 mon.smithi007 (mon.0) 357 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:41.657 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: audit 2024-02-10T07:59:40.597283+0000 mon.smithi007 (mon.0) 358 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:41.657 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: audit 2024-02-10T07:59:40.597477+0000 mon.smithi007 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:41.657 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: audit 2024-02-10T07:59:40.597709+0000 mon.smithi007 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:41.657 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: audit 2024-02-10T07:59:40.597902+0000 mon.smithi007 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:41.657 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: audit 2024-02-10T07:59:40.603718+0000 mon.smithi007 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:41.657 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: audit 2024-02-10T07:59:40.604290+0000 mon.smithi007 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:41.657 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: audit 2024-02-10T07:59:40.604618+0000 mon.smithi007 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:41.658 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:41 smithi007 bash[14094]: audit 2024-02-10T07:59:40.604974+0000 mon.smithi007 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:41.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: audit 2024-02-10T07:59:40.596216+0000 mon.smithi007 (mon.0) 355 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-02-10T07:59:41.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: cluster 2024-02-10T07:59:40.596417+0000 mon.smithi007 (mon.0) 356 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-10T07:59:41.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: audit 2024-02-10T07:59:40.597006+0000 mon.smithi007 (mon.0) 357 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:41.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: audit 2024-02-10T07:59:40.597283+0000 mon.smithi007 (mon.0) 358 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:41.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: audit 2024-02-10T07:59:40.597477+0000 mon.smithi007 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:41.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: audit 2024-02-10T07:59:40.597709+0000 mon.smithi007 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:41.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: audit 2024-02-10T07:59:40.597902+0000 mon.smithi007 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:41.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: audit 2024-02-10T07:59:40.603718+0000 mon.smithi007 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:41.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: audit 2024-02-10T07:59:40.604290+0000 mon.smithi007 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:41.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: audit 2024-02-10T07:59:40.604618+0000 mon.smithi007 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:41.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:41 smithi123 bash[18776]: audit 2024-02-10T07:59:40.604974+0000 mon.smithi007 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:42.574 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:59:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: cluster 2024-02-10T07:59:40.009944+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T07:59:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: cluster 2024-02-10T07:59:40.010011+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T07:59:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: cluster 2024-02-10T07:59:41.490320+0000 mgr.smithi007.lzuqsb (mgr.14180) 108 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.604594+0000 mon.smithi007 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: cluster 2024-02-10T07:59:41.609383+0000 mon.smithi007 (mon.0) 367 : cluster [INF] osd.0 [v2:172.21.15.123:6800/1781266214,v1:172.21.15.123:6801/1781266214] boot 2024-02-10T07:59:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: cluster 2024-02-10T07:59:41.609414+0000 mon.smithi007 (mon.0) 368 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.609558+0000 mon.smithi007 (mon.0) 369 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.610342+0000 mon.smithi007 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.610749+0000 mon.smithi007 (mon.0) 371 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.611120+0000 mon.smithi007 (mon.0) 372 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.611534+0000 mon.smithi007 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.611908+0000 mon.smithi007 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.612277+0000 mon.smithi007 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.612649+0000 mon.smithi007 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.693413+0000 mon.smithi007 (mon.0) 377 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.694543+0000 mon.smithi007 (mon.0) 378 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:41.695448+0000 mon.smithi007 (mon.0) 379 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: cephadm 2024-02-10T07:59:41.696339+0000 mgr.smithi007.lzuqsb (mgr.14180) 109 : cephadm [INF] Deploying daemon osd.3 on smithi007 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:42.025827+0000 mon.smithi007 (mon.0) 380 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:42.027195+0000 mon.smithi007 (mon.0) 381 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-10T07:59:42.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: audit 2024-02-10T07:59:42.028471+0000 mon.smithi007 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:42.917 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:42 smithi123 bash[18776]: cephadm 2024-02-10T07:59:42.029423+0000 mgr.smithi007.lzuqsb (mgr.14180) 110 : cephadm [INF] Deploying daemon osd.6 on smithi123 2024-02-10T07:59:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: cluster 2024-02-10T07:59:40.009944+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T07:59:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: cluster 2024-02-10T07:59:40.010011+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T07:59:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: cluster 2024-02-10T07:59:41.490320+0000 mgr.smithi007.lzuqsb (mgr.14180) 108 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-10T07:59:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.604594+0000 mon.smithi007 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: cluster 2024-02-10T07:59:41.609383+0000 mon.smithi007 (mon.0) 367 : cluster [INF] osd.0 [v2:172.21.15.123:6800/1781266214,v1:172.21.15.123:6801/1781266214] boot 2024-02-10T07:59:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: cluster 2024-02-10T07:59:41.609414+0000 mon.smithi007 (mon.0) 368 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-10T07:59:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.609558+0000 mon.smithi007 (mon.0) 369 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-10T07:59:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.610342+0000 mon.smithi007 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.610749+0000 mon.smithi007 (mon.0) 371 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.611120+0000 mon.smithi007 (mon.0) 372 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.611534+0000 mon.smithi007 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.611908+0000 mon.smithi007 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.612277+0000 mon.smithi007 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.612649+0000 mon.smithi007 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.693413+0000 mon.smithi007 (mon.0) 377 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.694543+0000 mon.smithi007 (mon.0) 378 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:41.695448+0000 mon.smithi007 (mon.0) 379 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: cephadm 2024-02-10T07:59:41.696339+0000 mgr.smithi007.lzuqsb (mgr.14180) 109 : cephadm [INF] Deploying daemon osd.3 on smithi007 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:42.025827+0000 mon.smithi007 (mon.0) 380 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:42.027195+0000 mon.smithi007 (mon.0) 381 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: audit 2024-02-10T07:59:42.028471+0000 mon.smithi007 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:42 smithi007 bash[14094]: cephadm 2024-02-10T07:59:42.029423+0000 mgr.smithi007.lzuqsb (mgr.14180) 110 : cephadm [INF] Deploying daemon osd.6 on smithi123 2024-02-10T07:59:43.922 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:43 smithi007 bash[14094]: cluster 2024-02-10T07:59:42.696661+0000 mon.smithi007 (mon.0) 383 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-10T07:59:43.922 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:43 smithi007 bash[14094]: audit 2024-02-10T07:59:42.696922+0000 mon.smithi007 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:43.923 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:43 smithi007 bash[14094]: audit 2024-02-10T07:59:42.697477+0000 mon.smithi007 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:43.923 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:43 smithi007 bash[14094]: audit 2024-02-10T07:59:42.697837+0000 mon.smithi007 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:43.923 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:43 smithi007 bash[14094]: audit 2024-02-10T07:59:42.698182+0000 mon.smithi007 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:43.923 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:43 smithi007 bash[14094]: audit 2024-02-10T07:59:42.698574+0000 mon.smithi007 (mon.0) 388 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:43.923 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:43 smithi007 bash[14094]: audit 2024-02-10T07:59:42.699029+0000 mon.smithi007 (mon.0) 389 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:43.923 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:43 smithi007 bash[14094]: audit 2024-02-10T07:59:42.699542+0000 mon.smithi007 (mon.0) 390 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:43.923 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:43 smithi007 bash[14094]: cluster 2024-02-10T07:59:43.490698+0000 mgr.smithi007.lzuqsb (mgr.14180) 111 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-10T07:59:44.009 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:43 smithi123 bash[18776]: cluster 2024-02-10T07:59:42.696661+0000 mon.smithi007 (mon.0) 383 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-10T07:59:44.009 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:43 smithi123 bash[18776]: audit 2024-02-10T07:59:42.696922+0000 mon.smithi007 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:44.009 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:43 smithi123 bash[18776]: audit 2024-02-10T07:59:42.697477+0000 mon.smithi007 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:44.010 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:43 smithi123 bash[18776]: audit 2024-02-10T07:59:42.697837+0000 mon.smithi007 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:44.010 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:43 smithi123 bash[18776]: audit 2024-02-10T07:59:42.698182+0000 mon.smithi007 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:44.010 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:43 smithi123 bash[18776]: audit 2024-02-10T07:59:42.698574+0000 mon.smithi007 (mon.0) 388 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:44.010 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:43 smithi123 bash[18776]: audit 2024-02-10T07:59:42.699029+0000 mon.smithi007 (mon.0) 389 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:44.010 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:43 smithi123 bash[18776]: audit 2024-02-10T07:59:42.699542+0000 mon.smithi007 (mon.0) 390 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:44.010 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:43 smithi123 bash[18776]: cluster 2024-02-10T07:59:43.490698+0000 mgr.smithi007.lzuqsb (mgr.14180) 111 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-10T07:59:44.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:44 smithi007 bash[14094]: audit 2024-02-10T07:59:44.396468+0000 mon.smithi007 (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-10T07:59:44.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:44 smithi007 bash[14094]: audit 2024-02-10T07:59:44.396843+0000 mon.smithi123 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.123:6808/3777426558,v1:172.21.15.123:6809/3777426558]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-10T07:59:45.097 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:44 smithi123 bash[18776]: audit 2024-02-10T07:59:44.396468+0000 mon.smithi007 (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-10T07:59:45.098 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:44 smithi123 bash[18776]: audit 2024-02-10T07:59:44.396843+0000 mon.smithi123 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.123:6808/3777426558,v1:172.21.15.123:6809/3777426558]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-10T07:59:46.076 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: audit 2024-02-10T07:59:44.709114+0000 mon.smithi007 (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-10T07:59:46.076 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: cluster 2024-02-10T07:59:44.709202+0000 mon.smithi007 (mon.0) 393 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-10T07:59:46.076 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: audit 2024-02-10T07:59:44.709372+0000 mon.smithi007 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:46.076 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: audit 2024-02-10T07:59:44.709715+0000 mon.smithi007 (mon.0) 395 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:46.077 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: audit 2024-02-10T07:59:44.710013+0000 mon.smithi007 (mon.0) 396 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:46.077 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: audit 2024-02-10T07:59:44.710230+0000 mon.smithi007 (mon.0) 397 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:46.077 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: audit 2024-02-10T07:59:44.710513+0000 mon.smithi007 (mon.0) 398 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:46.077 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: audit 2024-02-10T07:59:44.710728+0000 mon.smithi007 (mon.0) 399 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:46.077 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: audit 2024-02-10T07:59:44.711043+0000 mon.smithi007 (mon.0) 400 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:46.077 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: audit 2024-02-10T07:59:44.711317+0000 mon.smithi007 (mon.0) 401 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:46.077 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: audit 2024-02-10T07:59:44.711536+0000 mon.smithi123 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.123:6808/3777426558,v1:172.21.15.123:6809/3777426558]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:46.077 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:45 smithi123 bash[18776]: cluster 2024-02-10T07:59:45.491146+0000 mgr.smithi007.lzuqsb (mgr.14180) 112 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: audit 2024-02-10T07:59:44.709114+0000 mon.smithi007 (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-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: cluster 2024-02-10T07:59:44.709202+0000 mon.smithi007 (mon.0) 393 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: audit 2024-02-10T07:59:44.709372+0000 mon.smithi007 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: audit 2024-02-10T07:59:44.709715+0000 mon.smithi007 (mon.0) 395 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: audit 2024-02-10T07:59:44.710013+0000 mon.smithi007 (mon.0) 396 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: audit 2024-02-10T07:59:44.710230+0000 mon.smithi007 (mon.0) 397 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: audit 2024-02-10T07:59:44.710513+0000 mon.smithi007 (mon.0) 398 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: audit 2024-02-10T07:59:44.710728+0000 mon.smithi007 (mon.0) 399 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: audit 2024-02-10T07:59:44.711043+0000 mon.smithi007 (mon.0) 400 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: audit 2024-02-10T07:59:44.711317+0000 mon.smithi007 (mon.0) 401 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: audit 2024-02-10T07:59:44.711536+0000 mon.smithi123 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.123:6808/3777426558,v1:172.21.15.123:6809/3777426558]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:46.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:45 smithi007 bash[14094]: cluster 2024-02-10T07:59:45.491146+0000 mgr.smithi007.lzuqsb (mgr.14180) 112 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-10T07:59:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:46 smithi007 bash[14094]: audit 2024-02-10T07:59:45.804323+0000 mon.smithi007 (mon.0) 402 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-02-10T07:59:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:46 smithi007 bash[14094]: cluster 2024-02-10T07:59:45.804435+0000 mon.smithi007 (mon.0) 403 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-10T07:59:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:46 smithi007 bash[14094]: audit 2024-02-10T07:59:45.804911+0000 mon.smithi007 (mon.0) 404 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:46 smithi007 bash[14094]: audit 2024-02-10T07:59:45.805391+0000 mon.smithi007 (mon.0) 405 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:46 smithi007 bash[14094]: audit 2024-02-10T07:59:45.805579+0000 mon.smithi007 (mon.0) 406 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:46 smithi007 bash[14094]: audit 2024-02-10T07:59:45.805759+0000 mon.smithi007 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:46 smithi007 bash[14094]: audit 2024-02-10T07:59:45.805966+0000 mon.smithi007 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:46 smithi007 bash[14094]: audit 2024-02-10T07:59:45.806144+0000 mon.smithi007 (mon.0) 409 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:46.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:46 smithi007 bash[14094]: audit 2024-02-10T07:59:45.806361+0000 mon.smithi007 (mon.0) 410 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:46.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:46 smithi007 bash[14094]: audit 2024-02-10T07:59:45.810964+0000 mon.smithi007 (mon.0) 411 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:47.151 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:46 smithi123 bash[18776]: audit 2024-02-10T07:59:45.804323+0000 mon.smithi007 (mon.0) 402 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-02-10T07:59:47.152 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:46 smithi123 bash[18776]: cluster 2024-02-10T07:59:45.804435+0000 mon.smithi007 (mon.0) 403 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-10T07:59:47.152 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:46 smithi123 bash[18776]: audit 2024-02-10T07:59:45.804911+0000 mon.smithi007 (mon.0) 404 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:47.152 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:46 smithi123 bash[18776]: audit 2024-02-10T07:59:45.805391+0000 mon.smithi007 (mon.0) 405 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:47.152 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:46 smithi123 bash[18776]: audit 2024-02-10T07:59:45.805579+0000 mon.smithi007 (mon.0) 406 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:47.152 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:46 smithi123 bash[18776]: audit 2024-02-10T07:59:45.805759+0000 mon.smithi007 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:47.152 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:46 smithi123 bash[18776]: audit 2024-02-10T07:59:45.805966+0000 mon.smithi007 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:47.152 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:46 smithi123 bash[18776]: audit 2024-02-10T07:59:45.806144+0000 mon.smithi007 (mon.0) 409 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:47.152 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:46 smithi123 bash[18776]: audit 2024-02-10T07:59:45.806361+0000 mon.smithi007 (mon.0) 410 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:47.152 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:46 smithi123 bash[18776]: audit 2024-02-10T07:59:45.810964+0000 mon.smithi007 (mon.0) 411 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:47.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: cluster 2024-02-10T07:59:45.439602+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: cluster 2024-02-10T07:59:45.439711+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: cluster 2024-02-10T07:59:46.725114+0000 mon.smithi007 (mon.0) 412 : cluster [INF] osd.2 [v2:172.21.15.123:6808/3777426558,v1:172.21.15.123:6809/3777426558] boot 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: cluster 2024-02-10T07:59:46.725164+0000 mon.smithi007 (mon.0) 413 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: audit 2024-02-10T07:59:46.725367+0000 mon.smithi007 (mon.0) 414 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: audit 2024-02-10T07:59:46.725903+0000 mon.smithi007 (mon.0) 415 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: audit 2024-02-10T07:59:46.726336+0000 mon.smithi007 (mon.0) 416 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: audit 2024-02-10T07:59:46.726711+0000 mon.smithi007 (mon.0) 417 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: audit 2024-02-10T07:59:46.727008+0000 mon.smithi007 (mon.0) 418 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: audit 2024-02-10T07:59:46.727326+0000 mon.smithi007 (mon.0) 419 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: audit 2024-02-10T07:59:46.727629+0000 mon.smithi007 (mon.0) 420 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: audit 2024-02-10T07:59:47.419512+0000 mon.smithi007 (mon.0) 421 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:47.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:47 smithi007 bash[14094]: cluster 2024-02-10T07:59:47.491566+0000 mgr.smithi007.lzuqsb (mgr.14180) 113 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-10T07:59:48.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: cluster 2024-02-10T07:59:45.439602+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T07:59:48.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: cluster 2024-02-10T07:59:45.439711+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T07:59:48.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: cluster 2024-02-10T07:59:46.725114+0000 mon.smithi007 (mon.0) 412 : cluster [INF] osd.2 [v2:172.21.15.123:6808/3777426558,v1:172.21.15.123:6809/3777426558] boot 2024-02-10T07:59:48.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: cluster 2024-02-10T07:59:46.725164+0000 mon.smithi007 (mon.0) 413 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-10T07:59:48.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: audit 2024-02-10T07:59:46.725367+0000 mon.smithi007 (mon.0) 414 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:48.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: audit 2024-02-10T07:59:46.725903+0000 mon.smithi007 (mon.0) 415 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-10T07:59:48.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: audit 2024-02-10T07:59:46.726336+0000 mon.smithi007 (mon.0) 416 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:48.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: audit 2024-02-10T07:59:46.726711+0000 mon.smithi007 (mon.0) 417 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:48.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: audit 2024-02-10T07:59:46.727008+0000 mon.smithi007 (mon.0) 418 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:48.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: audit 2024-02-10T07:59:46.727326+0000 mon.smithi007 (mon.0) 419 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:48.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: audit 2024-02-10T07:59:46.727629+0000 mon.smithi007 (mon.0) 420 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:48.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: audit 2024-02-10T07:59:47.419512+0000 mon.smithi007 (mon.0) 421 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:48.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:47 smithi123 bash[18776]: cluster 2024-02-10T07:59:47.491566+0000 mgr.smithi007.lzuqsb (mgr.14180) 113 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-10T07:59:48.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:48 smithi007 bash[14094]: cluster 2024-02-10T07:59:47.736849+0000 mon.smithi007 (mon.0) 422 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-02-10T07:59:48.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:48 smithi007 bash[14094]: audit 2024-02-10T07:59:47.737019+0000 mon.smithi007 (mon.0) 423 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:48.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:48 smithi007 bash[14094]: audit 2024-02-10T07:59:47.737273+0000 mon.smithi007 (mon.0) 424 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:48.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:48 smithi007 bash[14094]: audit 2024-02-10T07:59:47.737478+0000 mon.smithi007 (mon.0) 425 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:48.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:48 smithi007 bash[14094]: audit 2024-02-10T07:59:47.737651+0000 mon.smithi007 (mon.0) 426 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:48.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:48 smithi007 bash[14094]: audit 2024-02-10T07:59:47.738129+0000 mon.smithi007 (mon.0) 427 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:48.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:48 smithi007 bash[14094]: audit 2024-02-10T07:59:47.738324+0000 mon.smithi007 (mon.0) 428 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:49.039 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:48 smithi123 bash[18776]: cluster 2024-02-10T07:59:47.736849+0000 mon.smithi007 (mon.0) 422 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-02-10T07:59:49.040 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:48 smithi123 bash[18776]: audit 2024-02-10T07:59:47.737019+0000 mon.smithi007 (mon.0) 423 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:49.040 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:48 smithi123 bash[18776]: audit 2024-02-10T07:59:47.737273+0000 mon.smithi007 (mon.0) 424 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:49.040 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:48 smithi123 bash[18776]: audit 2024-02-10T07:59:47.737478+0000 mon.smithi007 (mon.0) 425 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:49.040 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:48 smithi123 bash[18776]: audit 2024-02-10T07:59:47.737651+0000 mon.smithi007 (mon.0) 426 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:49.041 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:48 smithi123 bash[18776]: audit 2024-02-10T07:59:47.738129+0000 mon.smithi007 (mon.0) 427 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:49.041 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:48 smithi123 bash[18776]: audit 2024-02-10T07:59:47.738324+0000 mon.smithi007 (mon.0) 428 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:49.285 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:59:49.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:49 smithi007 bash[14094]: audit 2024-02-10T07:59:49.284130+0000 mon.smithi007 (mon.0) 429 : audit [DBG] from='client.? 172.21.15.7:0/2338953656' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:49.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:49 smithi007 bash[14094]: cluster 2024-02-10T07:59:49.491843+0000 mgr.smithi007.lzuqsb (mgr.14180) 114 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-10T07:59:50.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:49 smithi123 bash[18776]: audit 2024-02-10T07:59:49.284130+0000 mon.smithi007 (mon.0) 429 : audit [DBG] from='client.? 172.21.15.7:0/2338953656' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:50.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:49 smithi123 bash[18776]: cluster 2024-02-10T07:59:49.491843+0000 mgr.smithi007.lzuqsb (mgr.14180) 114 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-10T07:59:50.324 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":21,"num_osds":8,"num_up_osds":2,"osd_up_since":1707551986,"num_in_osds":8,"osd_in_since":1707551958,"num_remapped_pgs":0} 2024-02-10T07:59:50.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:50 smithi123 bash[18776]: audit 2024-02-10T07:59:49.743530+0000 mon.smithi007 (mon.0) 430 : audit [INF] from='osd.4 [v2:172.21.15.123:6816/1159079074,v1:172.21.15.123:6817/1159079074]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-10T07:59:50.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:50 smithi123 bash[18776]: audit 2024-02-10T07:59:50.098518+0000 mon.smithi007 (mon.0) 431 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:50.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:50 smithi123 bash[18776]: audit 2024-02-10T07:59:50.099696+0000 mon.smithi007 (mon.0) 432 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-10T07:59:50.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:50 smithi123 bash[18776]: audit 2024-02-10T07:59:50.100624+0000 mon.smithi007 (mon.0) 433 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:50.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:50 smithi123 bash[18776]: cephadm 2024-02-10T07:59:50.101345+0000 mgr.smithi007.lzuqsb (mgr.14180) 115 : cephadm [INF] Deploying daemon osd.5 on smithi007 2024-02-10T07:59:50.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:50 smithi007 bash[14094]: audit 2024-02-10T07:59:49.743530+0000 mon.smithi007 (mon.0) 430 : audit [INF] from='osd.4 [v2:172.21.15.123:6816/1159079074,v1:172.21.15.123:6817/1159079074]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-10T07:59:50.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:50 smithi007 bash[14094]: audit 2024-02-10T07:59:50.098518+0000 mon.smithi007 (mon.0) 431 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:50.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:50 smithi007 bash[14094]: audit 2024-02-10T07:59:50.099696+0000 mon.smithi007 (mon.0) 432 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-10T07:59:50.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:50 smithi007 bash[14094]: audit 2024-02-10T07:59:50.100624+0000 mon.smithi007 (mon.0) 433 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:50.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:50 smithi007 bash[14094]: cephadm 2024-02-10T07:59:50.101345+0000 mgr.smithi007.lzuqsb (mgr.14180) 115 : cephadm [INF] Deploying daemon osd.5 on smithi007 2024-02-10T07:59:51.326 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:59:52.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:51 smithi123 bash[18776]: audit 2024-02-10T07:59:50.751089+0000 mon.smithi007 (mon.0) 434 : audit [INF] from='osd.4 [v2:172.21.15.123:6816/1159079074,v1:172.21.15.123:6817/1159079074]' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-10T07:59:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:51 smithi123 bash[18776]: cluster 2024-02-10T07:59:50.751140+0000 mon.smithi007 (mon.0) 435 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2024-02-10T07:59:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:51 smithi123 bash[18776]: audit 2024-02-10T07:59:50.751299+0000 mon.smithi007 (mon.0) 436 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:51 smithi123 bash[18776]: audit 2024-02-10T07:59:50.751611+0000 mon.smithi007 (mon.0) 437 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:51 smithi123 bash[18776]: audit 2024-02-10T07:59:50.751832+0000 mon.smithi007 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:51 smithi123 bash[18776]: audit 2024-02-10T07:59:50.752060+0000 mon.smithi007 (mon.0) 439 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:51 smithi123 bash[18776]: audit 2024-02-10T07:59:50.752403+0000 mon.smithi007 (mon.0) 440 : audit [INF] from='osd.4 [v2:172.21.15.123:6816/1159079074,v1:172.21.15.123:6817/1159079074]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:51 smithi123 bash[18776]: audit 2024-02-10T07:59:50.752671+0000 mon.smithi007 (mon.0) 441 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:51 smithi123 bash[18776]: audit 2024-02-10T07:59:50.752886+0000 mon.smithi007 (mon.0) 442 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:51 smithi123 bash[18776]: cluster 2024-02-10T07:59:51.492105+0000 mgr.smithi007.lzuqsb (mgr.14180) 116 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-10T07:59:52.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:51 smithi007 bash[14094]: audit 2024-02-10T07:59:50.751089+0000 mon.smithi007 (mon.0) 434 : audit [INF] from='osd.4 [v2:172.21.15.123:6816/1159079074,v1:172.21.15.123:6817/1159079074]' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-10T07:59:52.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:51 smithi007 bash[14094]: cluster 2024-02-10T07:59:50.751140+0000 mon.smithi007 (mon.0) 435 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2024-02-10T07:59:52.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:51 smithi007 bash[14094]: audit 2024-02-10T07:59:50.751299+0000 mon.smithi007 (mon.0) 436 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:52.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:51 smithi007 bash[14094]: audit 2024-02-10T07:59:50.751611+0000 mon.smithi007 (mon.0) 437 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:52.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:51 smithi007 bash[14094]: audit 2024-02-10T07:59:50.751832+0000 mon.smithi007 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:52.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:51 smithi007 bash[14094]: audit 2024-02-10T07:59:50.752060+0000 mon.smithi007 (mon.0) 439 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:52.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:51 smithi007 bash[14094]: audit 2024-02-10T07:59:50.752403+0000 mon.smithi007 (mon.0) 440 : audit [INF] from='osd.4 [v2:172.21.15.123:6816/1159079074,v1:172.21.15.123:6817/1159079074]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:52.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:51 smithi007 bash[14094]: audit 2024-02-10T07:59:50.752671+0000 mon.smithi007 (mon.0) 441 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:52.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:51 smithi007 bash[14094]: audit 2024-02-10T07:59:50.752886+0000 mon.smithi007 (mon.0) 442 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:52.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:51 smithi007 bash[14094]: cluster 2024-02-10T07:59:51.492105+0000 mgr.smithi007.lzuqsb (mgr.14180) 116 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-10T07:59:53.508 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: cluster 2024-02-10T07:59:50.712041+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T07:59:53.508 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: cluster 2024-02-10T07:59:50.712168+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T07:59:53.508 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: audit 2024-02-10T07:59:51.754330+0000 mon.smithi007 (mon.0) 443 : audit [INF] from='osd.4 [v2:172.21.15.123:6816/1159079074,v1:172.21.15.123:6817/1159079074]' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-02-10T07:59:53.508 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: cluster 2024-02-10T07:59:51.754396+0000 mon.smithi007 (mon.0) 444 : cluster [DBG] osdmap e23: 8 total, 2 up, 8 in 2024-02-10T07:59:53.508 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: audit 2024-02-10T07:59:51.754807+0000 mon.smithi007 (mon.0) 445 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:53.508 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: audit 2024-02-10T07:59:51.755184+0000 mon.smithi007 (mon.0) 446 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:53.508 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: audit 2024-02-10T07:59:51.755807+0000 mon.smithi007 (mon.0) 447 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:53.509 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: audit 2024-02-10T07:59:51.759603+0000 mon.smithi007 (mon.0) 448 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:53.509 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: audit 2024-02-10T07:59:51.759983+0000 mon.smithi007 (mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:53.509 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: audit 2024-02-10T07:59:51.760228+0000 mon.smithi007 (mon.0) 450 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:53.509 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:53 smithi123 bash[18776]: audit 2024-02-10T07:59:51.760844+0000 mon.smithi007 (mon.0) 451 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:53.681 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: cluster 2024-02-10T07:59:50.712041+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T07:59:53.681 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: cluster 2024-02-10T07:59:50.712168+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T07:59:53.681 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: audit 2024-02-10T07:59:51.754330+0000 mon.smithi007 (mon.0) 443 : audit [INF] from='osd.4 [v2:172.21.15.123:6816/1159079074,v1:172.21.15.123:6817/1159079074]' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-02-10T07:59:53.681 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: cluster 2024-02-10T07:59:51.754396+0000 mon.smithi007 (mon.0) 444 : cluster [DBG] osdmap e23: 8 total, 2 up, 8 in 2024-02-10T07:59:53.681 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: audit 2024-02-10T07:59:51.754807+0000 mon.smithi007 (mon.0) 445 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:53.681 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: audit 2024-02-10T07:59:51.755184+0000 mon.smithi007 (mon.0) 446 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:53.681 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: audit 2024-02-10T07:59:51.755807+0000 mon.smithi007 (mon.0) 447 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:53.681 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: audit 2024-02-10T07:59:51.759603+0000 mon.smithi007 (mon.0) 448 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:53.681 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: audit 2024-02-10T07:59:51.759983+0000 mon.smithi007 (mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:53.681 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: audit 2024-02-10T07:59:51.760228+0000 mon.smithi007 (mon.0) 450 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:53.682 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:53 smithi007 bash[14094]: audit 2024-02-10T07:59:51.760844+0000 mon.smithi007 (mon.0) 451 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:54.366 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: cluster 2024-02-10T07:59:52.762538+0000 mon.smithi007 (mon.0) 452 : cluster [INF] osd.4 [v2:172.21.15.123:6816/1159079074,v1:172.21.15.123:6817/1159079074] boot 2024-02-10T07:59:54.366 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: cluster 2024-02-10T07:59:52.762612+0000 mon.smithi007 (mon.0) 453 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-10T07:59:54.366 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:52.763212+0000 mon.smithi007 (mon.0) 454 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:54.366 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:52.763400+0000 mon.smithi007 (mon.0) 455 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:54.366 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:52.763548+0000 mon.smithi007 (mon.0) 456 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:54.366 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:52.763728+0000 mon.smithi007 (mon.0) 457 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:54.366 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:52.763861+0000 mon.smithi007 (mon.0) 458 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:54.366 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:52.764008+0000 mon.smithi007 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:54.366 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:52.764209+0000 mon.smithi007 (mon.0) 460 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 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-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.270959+0000 mon.smithi007 (mon.0) 461 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.271570+0000 mon.smithi123 (mon.1) 14 : audit [INF] from='osd.1 [v2:172.21.15.7:6802/2289443502,v1:172.21.15.7:6803/2289443502]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: cluster 2024-02-10T07:59:53.492508+0000 mgr.smithi007.lzuqsb (mgr.14180) 117 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.763359+0000 mon.smithi007 (mon.0) 462 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 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-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.763436+0000 mon.smithi007 (mon.0) 463 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: cluster 2024-02-10T07:59:53.763487+0000 mon.smithi007 (mon.0) 464 : cluster [DBG] osdmap e25: 8 total, 3 up, 8 in 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.763671+0000 mon.smithi007 (mon.0) 465 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.764031+0000 mon.smithi007 (mon.0) 466 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.764212+0000 mon.smithi007 (mon.0) 467 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.764406+0000 mon.smithi007 (mon.0) 468 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.764579+0000 mon.smithi007 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.765468+0000 mon.smithi007 (mon.0) 470 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-10T07:59:54.367 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.769610+0000 mon.smithi007 (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=smithi007", "root=default"]}]: dispatch 2024-02-10T07:59:54.368 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:53.770033+0000 mon.smithi123 (mon.1) 15 : audit [INF] from='osd.1 [v2:172.21.15.7:6802/2289443502,v1:172.21.15.7:6803/2289443502]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]: dispatch 2024-02-10T07:59:54.368 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:54.173907+0000 mon.smithi007 (mon.0) 472 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-10T07:59:54.368 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:54 smithi007 bash[14094]: audit 2024-02-10T07:59:54.174376+0000 mon.smithi123 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.123:6824/2960060540,v1:172.21.15.123:6825/2960060540]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: cluster 2024-02-10T07:59:52.762538+0000 mon.smithi007 (mon.0) 452 : cluster [INF] osd.4 [v2:172.21.15.123:6816/1159079074,v1:172.21.15.123:6817/1159079074] boot 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: cluster 2024-02-10T07:59:52.762612+0000 mon.smithi007 (mon.0) 453 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:52.763212+0000 mon.smithi007 (mon.0) 454 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:52.763400+0000 mon.smithi007 (mon.0) 455 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:52.763548+0000 mon.smithi007 (mon.0) 456 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:52.763728+0000 mon.smithi007 (mon.0) 457 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:52.763861+0000 mon.smithi007 (mon.0) 458 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:52.764008+0000 mon.smithi007 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:52.764209+0000 mon.smithi007 (mon.0) 460 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 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-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.270959+0000 mon.smithi007 (mon.0) 461 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.271570+0000 mon.smithi123 (mon.1) 14 : audit [INF] from='osd.1 [v2:172.21.15.7:6802/2289443502,v1:172.21.15.7:6803/2289443502]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-10T07:59:54.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: cluster 2024-02-10T07:59:53.492508+0000 mgr.smithi007.lzuqsb (mgr.14180) 117 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.763359+0000 mon.smithi007 (mon.0) 462 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 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-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.763436+0000 mon.smithi007 (mon.0) 463 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: cluster 2024-02-10T07:59:53.763487+0000 mon.smithi007 (mon.0) 464 : cluster [DBG] osdmap e25: 8 total, 3 up, 8 in 2024-02-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.763671+0000 mon.smithi007 (mon.0) 465 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.764031+0000 mon.smithi007 (mon.0) 466 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.764212+0000 mon.smithi007 (mon.0) 467 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.764406+0000 mon.smithi007 (mon.0) 468 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.764579+0000 mon.smithi007 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.765468+0000 mon.smithi007 (mon.0) 470 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.769610+0000 mon.smithi007 (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=smithi007", "root=default"]}]: dispatch 2024-02-10T07:59:54.667 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:53.770033+0000 mon.smithi123 (mon.1) 15 : audit [INF] from='osd.1 [v2:172.21.15.7:6802/2289443502,v1:172.21.15.7:6803/2289443502]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]: dispatch 2024-02-10T07:59:54.668 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:54.173907+0000 mon.smithi007 (mon.0) 472 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-10T07:59:54.668 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:54 smithi123 bash[18776]: audit 2024-02-10T07:59:54.174376+0000 mon.smithi123 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.123:6824/2960060540,v1:172.21.15.123:6825/2960060540]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-10T07:59:56.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.765949+0000 mon.smithi007 (mon.0) 473 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.766080+0000 mon.smithi007 (mon.0) 474 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.766180+0000 mon.smithi007 (mon.0) 475 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: cluster 2024-02-10T07:59:54.766246+0000 mon.smithi007 (mon.0) 476 : cluster [DBG] osdmap e26: 8 total, 3 up, 8 in 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.766530+0000 mon.smithi007 (mon.0) 477 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.767385+0000 mon.smithi007 (mon.0) 478 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.767802+0000 mon.smithi007 (mon.0) 479 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.768243+0000 mon.smithi007 (mon.0) 480 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.768722+0000 mon.smithi007 (mon.0) 481 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.770073+0000 mon.smithi007 (mon.0) 482 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.770212+0000 mon.smithi123 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.123:6824/2960060540,v1:172.21.15.123:6825/2960060540]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: audit 2024-02-10T07:59:54.773689+0000 mon.smithi007 (mon.0) 483 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:56.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:55 smithi123 bash[18776]: cluster 2024-02-10T07:59:55.493019+0000 mgr.smithi007.lzuqsb (mgr.14180) 118 : cluster [DBG] pgmap v91: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-10T07:59:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.765949+0000 mon.smithi007 (mon.0) 473 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-10T07:59:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.766080+0000 mon.smithi007 (mon.0) 474 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-02-10T07:59:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.766180+0000 mon.smithi007 (mon.0) 475 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-10T07:59:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: cluster 2024-02-10T07:59:54.766246+0000 mon.smithi007 (mon.0) 476 : cluster [DBG] osdmap e26: 8 total, 3 up, 8 in 2024-02-10T07:59:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.766530+0000 mon.smithi007 (mon.0) 477 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.767385+0000 mon.smithi007 (mon.0) 478 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.767802+0000 mon.smithi007 (mon.0) 479 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.768243+0000 mon.smithi007 (mon.0) 480 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.768722+0000 mon.smithi007 (mon.0) 481 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:56.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.770073+0000 mon.smithi007 (mon.0) 482 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:56.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.770212+0000 mon.smithi123 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.123:6824/2960060540,v1:172.21.15.123:6825/2960060540]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-02-10T07:59:56.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: audit 2024-02-10T07:59:54.773689+0000 mon.smithi007 (mon.0) 483 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:56.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:55 smithi007 bash[14094]: cluster 2024-02-10T07:59:55.493019+0000 mgr.smithi007.lzuqsb (mgr.14180) 118 : cluster [DBG] pgmap v91: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-10T07:59:57.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: cluster 2024-02-10T07:59:53.809794+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T07:59:57.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: cluster 2024-02-10T07:59:53.809880+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T07:59:57.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: audit 2024-02-10T07:59:55.779254+0000 mon.smithi007 (mon.0) 484 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-02-10T07:59:57.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: cluster 2024-02-10T07:59:55.779363+0000 mon.smithi007 (mon.0) 485 : cluster [INF] osd.1 [v2:172.21.15.7:6802/2289443502,v1:172.21.15.7:6803/2289443502] boot 2024-02-10T07:59:57.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: cluster 2024-02-10T07:59:55.779402+0000 mon.smithi007 (mon.0) 486 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-02-10T07:59:57.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: audit 2024-02-10T07:59:55.779569+0000 mon.smithi007 (mon.0) 487 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:57.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: audit 2024-02-10T07:59:55.780107+0000 mon.smithi007 (mon.0) 488 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:57.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: audit 2024-02-10T07:59:55.780392+0000 mon.smithi007 (mon.0) 489 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:57.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: audit 2024-02-10T07:59:55.780607+0000 mon.smithi007 (mon.0) 490 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:57.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: audit 2024-02-10T07:59:55.780815+0000 mon.smithi007 (mon.0) 491 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:57.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: audit 2024-02-10T07:59:55.783798+0000 mon.smithi007 (mon.0) 492 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:57.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:56 smithi123 bash[18776]: audit 2024-02-10T07:59:56.214859+0000 mon.smithi007 (mon.0) 493 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:57.208 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: cluster 2024-02-10T07:59:53.809794+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T07:59:57.208 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: cluster 2024-02-10T07:59:53.809880+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T07:59:57.208 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: audit 2024-02-10T07:59:55.779254+0000 mon.smithi007 (mon.0) 484 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-02-10T07:59:57.208 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: cluster 2024-02-10T07:59:55.779363+0000 mon.smithi007 (mon.0) 485 : cluster [INF] osd.1 [v2:172.21.15.7:6802/2289443502,v1:172.21.15.7:6803/2289443502] boot 2024-02-10T07:59:57.208 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: cluster 2024-02-10T07:59:55.779402+0000 mon.smithi007 (mon.0) 486 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-02-10T07:59:57.208 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: audit 2024-02-10T07:59:55.779569+0000 mon.smithi007 (mon.0) 487 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-10T07:59:57.208 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: audit 2024-02-10T07:59:55.780107+0000 mon.smithi007 (mon.0) 488 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:57.208 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: audit 2024-02-10T07:59:55.780392+0000 mon.smithi007 (mon.0) 489 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:57.209 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: audit 2024-02-10T07:59:55.780607+0000 mon.smithi007 (mon.0) 490 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:57.209 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: audit 2024-02-10T07:59:55.780815+0000 mon.smithi007 (mon.0) 491 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:57.209 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: audit 2024-02-10T07:59:55.783798+0000 mon.smithi007 (mon.0) 492 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:57.209 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:56 smithi007 bash[14094]: audit 2024-02-10T07:59:56.214859+0000 mon.smithi007 (mon.0) 493 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:57.579 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T07:59:57.856 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: cluster 2024-02-10T07:59:55.155331+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T07:59:57.856 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: cluster 2024-02-10T07:59:55.155418+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T07:59:57.856 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: cluster 2024-02-10T07:59:56.778216+0000 mon.smithi007 (mon.0) 494 : cluster [INF] osd.6 [v2:172.21.15.123:6824/2960060540,v1:172.21.15.123:6825/2960060540] boot 2024-02-10T07:59:57.856 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: cluster 2024-02-10T07:59:56.778332+0000 mon.smithi007 (mon.0) 495 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-02-10T07:59:57.856 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: audit 2024-02-10T07:59:56.778962+0000 mon.smithi007 (mon.0) 496 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:57.856 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: audit 2024-02-10T07:59:56.779451+0000 mon.smithi007 (mon.0) 497 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:57.857 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: audit 2024-02-10T07:59:56.779683+0000 mon.smithi007 (mon.0) 498 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:57.857 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: audit 2024-02-10T07:59:56.780002+0000 mon.smithi007 (mon.0) 499 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:57.857 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: cluster 2024-02-10T07:59:57.475855+0000 mon.smithi007 (mon.0) 500 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-02-10T07:59:57.857 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: audit 2024-02-10T07:59:57.476207+0000 mon.smithi007 (mon.0) 501 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:57.857 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: audit 2024-02-10T07:59:57.476557+0000 mon.smithi007 (mon.0) 502 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:57.857 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: audit 2024-02-10T07:59:57.476826+0000 mon.smithi007 (mon.0) 503 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:57.857 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: cluster 2024-02-10T07:59:57.493425+0000 mgr.smithi007.lzuqsb (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-10T07:59:57.857 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:57 smithi007 bash[14094]: audit 2024-02-10T07:59:57.579006+0000 mon.smithi007 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.7:0/2757545442' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:58.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: cluster 2024-02-10T07:59:55.155331+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T07:59:58.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: cluster 2024-02-10T07:59:55.155418+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: cluster 2024-02-10T07:59:56.778216+0000 mon.smithi007 (mon.0) 494 : cluster [INF] osd.6 [v2:172.21.15.123:6824/2960060540,v1:172.21.15.123:6825/2960060540] boot 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: cluster 2024-02-10T07:59:56.778332+0000 mon.smithi007 (mon.0) 495 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: audit 2024-02-10T07:59:56.778962+0000 mon.smithi007 (mon.0) 496 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: audit 2024-02-10T07:59:56.779451+0000 mon.smithi007 (mon.0) 497 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: audit 2024-02-10T07:59:56.779683+0000 mon.smithi007 (mon.0) 498 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: audit 2024-02-10T07:59:56.780002+0000 mon.smithi007 (mon.0) 499 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: cluster 2024-02-10T07:59:57.475855+0000 mon.smithi007 (mon.0) 500 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: audit 2024-02-10T07:59:57.476207+0000 mon.smithi007 (mon.0) 501 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: audit 2024-02-10T07:59:57.476557+0000 mon.smithi007 (mon.0) 502 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: audit 2024-02-10T07:59:57.476826+0000 mon.smithi007 (mon.0) 503 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: cluster 2024-02-10T07:59:57.493425+0000 mgr.smithi007.lzuqsb (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-10T07:59:58.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:57 smithi123 bash[18776]: audit 2024-02-10T07:59:57.579006+0000 mon.smithi007 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.7:0/2757545442' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T07:59:58.880 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":29,"num_osds":8,"num_up_osds":5,"osd_up_since":1707551996,"num_in_osds":8,"osd_in_since":1707551958,"num_remapped_pgs":0} 2024-02-10T07:59:59.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:59 smithi007 bash[14094]: cluster 2024-02-10T07:59:58.489686+0000 mon.smithi007 (mon.0) 505 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-02-10T07:59:59.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:59 smithi007 bash[14094]: audit 2024-02-10T07:59:58.489866+0000 mon.smithi007 (mon.0) 506 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:59.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:59 smithi007 bash[14094]: audit 2024-02-10T07:59:58.490117+0000 mon.smithi007 (mon.0) 507 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:59.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:59 smithi007 bash[14094]: audit 2024-02-10T07:59:58.490330+0000 mon.smithi007 (mon.0) 508 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:59.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:59 smithi007 bash[14094]: audit 2024-02-10T07:59:59.178749+0000 mon.smithi007 (mon.0) 509 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:59.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:59 smithi007 bash[14094]: audit 2024-02-10T07:59:59.180178+0000 mon.smithi007 (mon.0) 510 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-10T07:59:59.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 07:59:59 smithi007 bash[14094]: audit 2024-02-10T07:59:59.181206+0000 mon.smithi007 (mon.0) 511 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T07:59:59.881 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T07:59:59.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:59 smithi123 bash[18776]: cluster 2024-02-10T07:59:58.489686+0000 mon.smithi007 (mon.0) 505 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-02-10T07:59:59.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:59 smithi123 bash[18776]: audit 2024-02-10T07:59:58.489866+0000 mon.smithi007 (mon.0) 506 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T07:59:59.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:59 smithi123 bash[18776]: audit 2024-02-10T07:59:58.490117+0000 mon.smithi007 (mon.0) 507 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T07:59:59.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:59 smithi123 bash[18776]: audit 2024-02-10T07:59:58.490330+0000 mon.smithi007 (mon.0) 508 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T07:59:59.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:59 smithi123 bash[18776]: audit 2024-02-10T07:59:59.178749+0000 mon.smithi007 (mon.0) 509 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T07:59:59.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:59 smithi123 bash[18776]: audit 2024-02-10T07:59:59.180178+0000 mon.smithi007 (mon.0) 510 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-10T07:59:59.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 07:59:59 smithi123 bash[18776]: audit 2024-02-10T07:59:59.181206+0000 mon.smithi007 (mon.0) 511 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:00:00.822 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:00 smithi007 bash[14094]: cephadm 2024-02-10T07:59:59.182052+0000 mgr.smithi007.lzuqsb (mgr.14180) 120 : cephadm [INF] Deploying daemon osd.7 on smithi007 2024-02-10T08:00:00.823 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:00 smithi007 bash[14094]: cluster 2024-02-10T07:59:59.493772+0000 mgr.smithi007.lzuqsb (mgr.14180) 121 : cluster [DBG] pgmap v97: 1 pgs: 1 unknown; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-10T08:00:00.823 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:00 smithi007 bash[14094]: cluster 2024-02-10T07:59:59.499716+0000 mon.smithi007 (mon.0) 512 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2024-02-10T08:00:00.823 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:00 smithi007 bash[14094]: audit 2024-02-10T07:59:59.499919+0000 mon.smithi007 (mon.0) 513 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:00.823 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:00 smithi007 bash[14094]: audit 2024-02-10T07:59:59.500456+0000 mon.smithi007 (mon.0) 514 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:00.823 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:00 smithi007 bash[14094]: audit 2024-02-10T07:59:59.500944+0000 mon.smithi007 (mon.0) 515 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:00.823 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:00 smithi007 bash[14094]: cluster 2024-02-10T08:00:00.000135+0000 mon.smithi007 (mon.0) 516 : cluster [INF] overall HEALTH_OK 2024-02-10T08:00:00.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:00 smithi123 bash[18776]: cephadm 2024-02-10T07:59:59.182052+0000 mgr.smithi007.lzuqsb (mgr.14180) 120 : cephadm [INF] Deploying daemon osd.7 on smithi007 2024-02-10T08:00:00.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:00 smithi123 bash[18776]: cluster 2024-02-10T07:59:59.493772+0000 mgr.smithi007.lzuqsb (mgr.14180) 121 : cluster [DBG] pgmap v97: 1 pgs: 1 unknown; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-10T08:00:00.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:00 smithi123 bash[18776]: cluster 2024-02-10T07:59:59.499716+0000 mon.smithi007 (mon.0) 512 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2024-02-10T08:00:00.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:00 smithi123 bash[18776]: audit 2024-02-10T07:59:59.499919+0000 mon.smithi007 (mon.0) 513 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:00.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:00 smithi123 bash[18776]: audit 2024-02-10T07:59:59.500456+0000 mon.smithi007 (mon.0) 514 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:00.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:00 smithi123 bash[18776]: audit 2024-02-10T07:59:59.500944+0000 mon.smithi007 (mon.0) 515 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:00.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:00 smithi123 bash[18776]: cluster 2024-02-10T08:00:00.000135+0000 mon.smithi007 (mon.0) 516 : cluster [INF] overall HEALTH_OK 2024-02-10T08:00:01.679 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:01 smithi007 bash[14094]: audit 2024-02-10T08:00:00.826037+0000 mon.smithi007 (mon.0) 517 : audit [INF] from='osd.3 [v2:172.21.15.7:6810/2325228614,v1:172.21.15.7:6811/2325228614]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-10T08:00:01.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:01 smithi123 bash[18776]: audit 2024-02-10T08:00:00.826037+0000 mon.smithi007 (mon.0) 517 : audit [INF] from='osd.3 [v2:172.21.15.7:6810/2325228614,v1:172.21.15.7:6811/2325228614]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-10T08:00:02.684 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:02 smithi007 bash[14094]: cluster 2024-02-10T08:00:01.494092+0000 mgr.smithi007.lzuqsb (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-10T08:00:02.684 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:02 smithi007 bash[14094]: audit 2024-02-10T08:00:01.509497+0000 mon.smithi007 (mon.0) 518 : audit [INF] from='osd.3 [v2:172.21.15.7:6810/2325228614,v1:172.21.15.7:6811/2325228614]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-10T08:00:02.684 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:02 smithi007 bash[14094]: cluster 2024-02-10T08:00:01.509551+0000 mon.smithi007 (mon.0) 519 : cluster [DBG] osdmap e32: 8 total, 5 up, 8 in 2024-02-10T08:00:02.685 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:02 smithi007 bash[14094]: audit 2024-02-10T08:00:01.509769+0000 mon.smithi007 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:02.685 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:02 smithi007 bash[14094]: audit 2024-02-10T08:00:01.510588+0000 mon.smithi007 (mon.0) 521 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:02.685 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:02 smithi007 bash[14094]: audit 2024-02-10T08:00:01.510912+0000 mon.smithi007 (mon.0) 522 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:02.685 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:02 smithi007 bash[14094]: audit 2024-02-10T08:00:01.511266+0000 mon.smithi007 (mon.0) 523 : audit [INF] from='osd.3 [v2:172.21.15.7:6810/2325228614,v1:172.21.15.7:6811/2325228614]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]: dispatch 2024-02-10T08:00:02.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:02 smithi123 bash[18776]: cluster 2024-02-10T08:00:01.494092+0000 mgr.smithi007.lzuqsb (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-10T08:00:02.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:02 smithi123 bash[18776]: audit 2024-02-10T08:00:01.509497+0000 mon.smithi007 (mon.0) 518 : audit [INF] from='osd.3 [v2:172.21.15.7:6810/2325228614,v1:172.21.15.7:6811/2325228614]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-10T08:00:02.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:02 smithi123 bash[18776]: cluster 2024-02-10T08:00:01.509551+0000 mon.smithi007 (mon.0) 519 : cluster [DBG] osdmap e32: 8 total, 5 up, 8 in 2024-02-10T08:00:02.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:02 smithi123 bash[18776]: audit 2024-02-10T08:00:01.509769+0000 mon.smithi007 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:02.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:02 smithi123 bash[18776]: audit 2024-02-10T08:00:01.510588+0000 mon.smithi007 (mon.0) 521 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:02.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:02 smithi123 bash[18776]: audit 2024-02-10T08:00:01.510912+0000 mon.smithi007 (mon.0) 522 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:02.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:02 smithi123 bash[18776]: audit 2024-02-10T08:00:01.511266+0000 mon.smithi007 (mon.0) 523 : audit [INF] from='osd.3 [v2:172.21.15.7:6810/2325228614,v1:172.21.15.7:6811/2325228614]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]: dispatch 2024-02-10T08:00:03.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:03 smithi007 bash[14094]: audit 2024-02-10T08:00:02.511310+0000 mon.smithi007 (mon.0) 524 : audit [INF] from='osd.3 [v2:172.21.15.7:6810/2325228614,v1:172.21.15.7:6811/2325228614]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-02-10T08:00:03.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:03 smithi007 bash[14094]: cluster 2024-02-10T08:00:02.511365+0000 mon.smithi007 (mon.0) 525 : cluster [DBG] osdmap e33: 8 total, 5 up, 8 in 2024-02-10T08:00:03.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:03 smithi007 bash[14094]: audit 2024-02-10T08:00:02.511777+0000 mon.smithi007 (mon.0) 526 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:03.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:03 smithi007 bash[14094]: audit 2024-02-10T08:00:02.512624+0000 mon.smithi007 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:03.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:03 smithi007 bash[14094]: audit 2024-02-10T08:00:02.513942+0000 mon.smithi007 (mon.0) 528 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:03.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:03 smithi007 bash[14094]: audit 2024-02-10T08:00:02.518743+0000 mon.smithi007 (mon.0) 529 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:03.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:03 smithi123 bash[18776]: audit 2024-02-10T08:00:02.511310+0000 mon.smithi007 (mon.0) 524 : audit [INF] from='osd.3 [v2:172.21.15.7:6810/2325228614,v1:172.21.15.7:6811/2325228614]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-02-10T08:00:03.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:03 smithi123 bash[18776]: cluster 2024-02-10T08:00:02.511365+0000 mon.smithi007 (mon.0) 525 : cluster [DBG] osdmap e33: 8 total, 5 up, 8 in 2024-02-10T08:00:03.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:03 smithi123 bash[18776]: audit 2024-02-10T08:00:02.511777+0000 mon.smithi007 (mon.0) 526 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:03.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:03 smithi123 bash[18776]: audit 2024-02-10T08:00:02.512624+0000 mon.smithi007 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:03.874 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:03 smithi123 bash[18776]: audit 2024-02-10T08:00:02.513942+0000 mon.smithi007 (mon.0) 528 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:03.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:03 smithi123 bash[18776]: audit 2024-02-10T08:00:02.518743+0000 mon.smithi007 (mon.0) 529 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:04.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:04 smithi123 bash[18776]: cluster 2024-02-10T08:00:01.800979+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T08:00:04.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:04 smithi123 bash[18776]: cluster 2024-02-10T08:00:01.801056+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T08:00:04.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:04 smithi123 bash[18776]: cluster 2024-02-10T08:00:03.494772+0000 mgr.smithi007.lzuqsb (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-10T08:00:04.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:04 smithi123 bash[18776]: audit 2024-02-10T08:00:03.522553+0000 mon.smithi007 (mon.0) 530 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:04.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:04 smithi123 bash[18776]: cluster 2024-02-10T08:00:03.527615+0000 mon.smithi007 (mon.0) 531 : cluster [INF] osd.3 [v2:172.21.15.7:6810/2325228614,v1:172.21.15.7:6811/2325228614] boot 2024-02-10T08:00:04.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:04 smithi123 bash[18776]: cluster 2024-02-10T08:00:03.527649+0000 mon.smithi007 (mon.0) 532 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2024-02-10T08:00:04.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:04 smithi123 bash[18776]: audit 2024-02-10T08:00:03.528000+0000 mon.smithi007 (mon.0) 533 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:04.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:04 smithi123 bash[18776]: audit 2024-02-10T08:00:03.528349+0000 mon.smithi007 (mon.0) 534 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:04.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:04 smithi123 bash[18776]: audit 2024-02-10T08:00:03.528545+0000 mon.smithi007 (mon.0) 535 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:04.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:04 smithi007 bash[14094]: cluster 2024-02-10T08:00:01.800979+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T08:00:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:04 smithi007 bash[14094]: cluster 2024-02-10T08:00:01.801056+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T08:00:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:04 smithi007 bash[14094]: cluster 2024-02-10T08:00:03.494772+0000 mgr.smithi007.lzuqsb (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-10T08:00:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:04 smithi007 bash[14094]: audit 2024-02-10T08:00:03.522553+0000 mon.smithi007 (mon.0) 530 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:04 smithi007 bash[14094]: cluster 2024-02-10T08:00:03.527615+0000 mon.smithi007 (mon.0) 531 : cluster [INF] osd.3 [v2:172.21.15.7:6810/2325228614,v1:172.21.15.7:6811/2325228614] boot 2024-02-10T08:00:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:04 smithi007 bash[14094]: cluster 2024-02-10T08:00:03.527649+0000 mon.smithi007 (mon.0) 532 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2024-02-10T08:00:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:04 smithi007 bash[14094]: audit 2024-02-10T08:00:03.528000+0000 mon.smithi007 (mon.0) 533 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-10T08:00:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:04 smithi007 bash[14094]: audit 2024-02-10T08:00:03.528349+0000 mon.smithi007 (mon.0) 534 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:04 smithi007 bash[14094]: audit 2024-02-10T08:00:03.528545+0000 mon.smithi007 (mon.0) 535 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:05.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:05 smithi123 bash[18776]: cluster 2024-02-10T08:00:04.529179+0000 mon.smithi007 (mon.0) 536 : cluster [DBG] osdmap e35: 8 total, 6 up, 8 in 2024-02-10T08:00:05.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:05 smithi123 bash[18776]: audit 2024-02-10T08:00:04.529317+0000 mon.smithi007 (mon.0) 537 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:05.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:05 smithi123 bash[18776]: audit 2024-02-10T08:00:04.529692+0000 mon.smithi007 (mon.0) 538 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:05.961 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:05 smithi007 bash[14094]: cluster 2024-02-10T08:00:04.529179+0000 mon.smithi007 (mon.0) 536 : cluster [DBG] osdmap e35: 8 total, 6 up, 8 in 2024-02-10T08:00:05.961 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:05 smithi007 bash[14094]: audit 2024-02-10T08:00:04.529317+0000 mon.smithi007 (mon.0) 537 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:05.961 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:05 smithi007 bash[14094]: audit 2024-02-10T08:00:04.529692+0000 mon.smithi007 (mon.0) 538 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:06.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:06 smithi007 bash[14094]: cluster 2024-02-10T08:00:05.495220+0000 mgr.smithi007.lzuqsb (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-10T08:00:06.752 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:00:06.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:06 smithi123 bash[18776]: cluster 2024-02-10T08:00:05.495220+0000 mgr.smithi007.lzuqsb (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-10T08:00:07.720 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:07 smithi007 bash[14094]: audit 2024-02-10T08:00:06.751996+0000 mon.smithi007 (mon.0) 539 : audit [DBG] from='client.? 172.21.15.7:0/3765644887' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T08:00:07.839 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":35,"num_osds":8,"num_up_osds":6,"osd_up_since":1707552003,"num_in_osds":8,"osd_in_since":1707551958,"num_remapped_pgs":0} 2024-02-10T08:00:07.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:07 smithi123 bash[18776]: audit 2024-02-10T08:00:06.751996+0000 mon.smithi007 (mon.0) 539 : audit [DBG] from='client.? 172.21.15.7:0/3765644887' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T08:00:08.840 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T08:00:08.854 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:08 smithi007 bash[14094]: cluster 2024-02-10T08:00:07.495771+0000 mgr.smithi007.lzuqsb (mgr.14180) 125 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-10T08:00:08.854 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:08 smithi007 bash[14094]: audit 2024-02-10T08:00:08.029194+0000 mon.smithi007 (mon.0) 540 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:08.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:08 smithi123 bash[18776]: cluster 2024-02-10T08:00:07.495771+0000 mgr.smithi007.lzuqsb (mgr.14180) 125 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-10T08:00:08.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:08 smithi123 bash[18776]: audit 2024-02-10T08:00:08.029194+0000 mon.smithi007 (mon.0) 540 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:10.839 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:10 smithi007 bash[14094]: cluster 2024-02-10T08:00:09.496338+0000 mgr.smithi007.lzuqsb (mgr.14180) 126 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-10T08:00:10.839 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:10 smithi007 bash[14094]: audit 2024-02-10T08:00:09.935194+0000 mon.smithi007 (mon.0) 541 : audit [INF] from='osd.5 [v2:172.21.15.7:6818/4032629071,v1:172.21.15.7:6819/4032629071]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-10T08:00:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:10 smithi123 bash[18776]: cluster 2024-02-10T08:00:09.496338+0000 mgr.smithi007.lzuqsb (mgr.14180) 126 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-10T08:00:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:10 smithi123 bash[18776]: audit 2024-02-10T08:00:09.935194+0000 mon.smithi007 (mon.0) 541 : audit [INF] from='osd.5 [v2:172.21.15.7:6818/4032629071,v1:172.21.15.7:6819/4032629071]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-10T08:00:11.888 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:11 smithi007 bash[14094]: audit 2024-02-10T08:00:10.550137+0000 mon.smithi007 (mon.0) 542 : audit [INF] from='osd.5 [v2:172.21.15.7:6818/4032629071,v1:172.21.15.7:6819/4032629071]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-10T08:00:11.888 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:11 smithi007 bash[14094]: cluster 2024-02-10T08:00:10.550262+0000 mon.smithi007 (mon.0) 543 : cluster [DBG] osdmap e36: 8 total, 6 up, 8 in 2024-02-10T08:00:11.889 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:11 smithi007 bash[14094]: audit 2024-02-10T08:00:10.550945+0000 mon.smithi007 (mon.0) 544 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:11.889 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:11 smithi007 bash[14094]: audit 2024-02-10T08:00:10.551255+0000 mon.smithi007 (mon.0) 545 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:11.889 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:11 smithi007 bash[14094]: audit 2024-02-10T08:00:10.551500+0000 mon.smithi007 (mon.0) 546 : audit [INF] from='osd.5 [v2:172.21.15.7:6818/4032629071,v1:172.21.15.7:6819/4032629071]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]: dispatch 2024-02-10T08:00:11.889 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:11 smithi007 bash[14094]: audit 2024-02-10T08:00:11.550022+0000 mon.smithi007 (mon.0) 547 : audit [INF] from='osd.5 [v2:172.21.15.7:6818/4032629071,v1:172.21.15.7:6819/4032629071]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-02-10T08:00:11.889 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:11 smithi007 bash[14094]: cluster 2024-02-10T08:00:11.550081+0000 mon.smithi007 (mon.0) 548 : cluster [DBG] osdmap e37: 8 total, 6 up, 8 in 2024-02-10T08:00:11.889 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:11 smithi007 bash[14094]: audit 2024-02-10T08:00:11.550231+0000 mon.smithi007 (mon.0) 549 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:11.889 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:11 smithi007 bash[14094]: audit 2024-02-10T08:00:11.550601+0000 mon.smithi007 (mon.0) 550 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:11.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:11 smithi123 bash[18776]: audit 2024-02-10T08:00:10.550137+0000 mon.smithi007 (mon.0) 542 : audit [INF] from='osd.5 [v2:172.21.15.7:6818/4032629071,v1:172.21.15.7:6819/4032629071]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-10T08:00:11.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:11 smithi123 bash[18776]: cluster 2024-02-10T08:00:10.550262+0000 mon.smithi007 (mon.0) 543 : cluster [DBG] osdmap e36: 8 total, 6 up, 8 in 2024-02-10T08:00:11.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:11 smithi123 bash[18776]: audit 2024-02-10T08:00:10.550945+0000 mon.smithi007 (mon.0) 544 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:11.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:11 smithi123 bash[18776]: audit 2024-02-10T08:00:10.551255+0000 mon.smithi007 (mon.0) 545 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:11.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:11 smithi123 bash[18776]: audit 2024-02-10T08:00:10.551500+0000 mon.smithi007 (mon.0) 546 : audit [INF] from='osd.5 [v2:172.21.15.7:6818/4032629071,v1:172.21.15.7:6819/4032629071]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]: dispatch 2024-02-10T08:00:11.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:11 smithi123 bash[18776]: audit 2024-02-10T08:00:11.550022+0000 mon.smithi007 (mon.0) 547 : audit [INF] from='osd.5 [v2:172.21.15.7:6818/4032629071,v1:172.21.15.7:6819/4032629071]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-02-10T08:00:11.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:11 smithi123 bash[18776]: cluster 2024-02-10T08:00:11.550081+0000 mon.smithi007 (mon.0) 548 : cluster [DBG] osdmap e37: 8 total, 6 up, 8 in 2024-02-10T08:00:11.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:11 smithi123 bash[18776]: audit 2024-02-10T08:00:11.550231+0000 mon.smithi007 (mon.0) 549 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:11.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:11 smithi123 bash[18776]: audit 2024-02-10T08:00:11.550601+0000 mon.smithi007 (mon.0) 550 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:12.847 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:12 smithi007 bash[14094]: cluster 2024-02-10T08:00:11.496717+0000 mgr.smithi007.lzuqsb (mgr.14180) 127 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-10T08:00:12.847 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:12 smithi007 bash[14094]: audit 2024-02-10T08:00:11.557083+0000 mon.smithi007 (mon.0) 551 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:12.847 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:12 smithi007 bash[14094]: audit 2024-02-10T08:00:12.555597+0000 mon.smithi007 (mon.0) 552 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:12.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:12 smithi123 bash[18776]: cluster 2024-02-10T08:00:11.496717+0000 mgr.smithi007.lzuqsb (mgr.14180) 127 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-10T08:00:12.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:12 smithi123 bash[18776]: audit 2024-02-10T08:00:11.557083+0000 mon.smithi007 (mon.0) 551 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:12.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:12 smithi123 bash[18776]: audit 2024-02-10T08:00:12.555597+0000 mon.smithi007 (mon.0) 552 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:13.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:13 smithi007 bash[14094]: cluster 2024-02-10T08:00:10.979004+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T08:00:13.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:13 smithi007 bash[14094]: cluster 2024-02-10T08:00:10.979131+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T08:00:13.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:13 smithi007 bash[14094]: cluster 2024-02-10T08:00:12.565317+0000 mon.smithi007 (mon.0) 553 : cluster [INF] osd.5 [v2:172.21.15.7:6818/4032629071,v1:172.21.15.7:6819/4032629071] boot 2024-02-10T08:00:13.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:13 smithi007 bash[14094]: cluster 2024-02-10T08:00:12.565381+0000 mon.smithi007 (mon.0) 554 : cluster [DBG] osdmap e38: 8 total, 7 up, 8 in 2024-02-10T08:00:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:13 smithi007 bash[14094]: audit 2024-02-10T08:00:12.566136+0000 mon.smithi007 (mon.0) 555 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:13.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:13 smithi007 bash[14094]: audit 2024-02-10T08:00:12.566421+0000 mon.smithi007 (mon.0) 556 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:13.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:13 smithi123 bash[18776]: cluster 2024-02-10T08:00:10.979004+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T08:00:13.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:13 smithi123 bash[18776]: cluster 2024-02-10T08:00:10.979131+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T08:00:13.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:13 smithi123 bash[18776]: cluster 2024-02-10T08:00:12.565317+0000 mon.smithi007 (mon.0) 553 : cluster [INF] osd.5 [v2:172.21.15.7:6818/4032629071,v1:172.21.15.7:6819/4032629071] boot 2024-02-10T08:00:13.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:13 smithi123 bash[18776]: cluster 2024-02-10T08:00:12.565381+0000 mon.smithi007 (mon.0) 554 : cluster [DBG] osdmap e38: 8 total, 7 up, 8 in 2024-02-10T08:00:13.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:13 smithi123 bash[18776]: audit 2024-02-10T08:00:12.566136+0000 mon.smithi007 (mon.0) 555 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-10T08:00:13.875 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:13 smithi123 bash[18776]: audit 2024-02-10T08:00:12.566421+0000 mon.smithi007 (mon.0) 556 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:14.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:14 smithi007 bash[14094]: cluster 2024-02-10T08:00:13.497096+0000 mgr.smithi007.lzuqsb (mgr.14180) 128 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-10T08:00:14.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:14 smithi007 bash[14094]: cluster 2024-02-10T08:00:13.579405+0000 mon.smithi007 (mon.0) 557 : cluster [DBG] osdmap e39: 8 total, 7 up, 8 in 2024-02-10T08:00:14.756 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:14 smithi007 bash[14094]: audit 2024-02-10T08:00:13.579604+0000 mon.smithi007 (mon.0) 558 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:14 smithi123 bash[18776]: cluster 2024-02-10T08:00:13.497096+0000 mgr.smithi007.lzuqsb (mgr.14180) 128 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-10T08:00:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:14 smithi123 bash[18776]: cluster 2024-02-10T08:00:13.579405+0000 mon.smithi007 (mon.0) 557 : cluster [DBG] osdmap e39: 8 total, 7 up, 8 in 2024-02-10T08:00:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:14 smithi123 bash[18776]: audit 2024-02-10T08:00:13.579604+0000 mon.smithi007 (mon.0) 558 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:14.916 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:00:15.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:15 smithi123 bash[18776]: audit 2024-02-10T08:00:14.915549+0000 mon.smithi007 (mon.0) 559 : audit [DBG] from='client.? 172.21.15.7:0/100908044' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T08:00:15.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:15 smithi007 bash[14094]: audit 2024-02-10T08:00:14.915549+0000 mon.smithi007 (mon.0) 559 : audit [DBG] from='client.? 172.21.15.7:0/100908044' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T08:00:16.336 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":39,"num_osds":8,"num_up_osds":7,"osd_up_since":1707552012,"num_in_osds":8,"osd_in_since":1707551958,"num_remapped_pgs":0} 2024-02-10T08:00:16.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:16 smithi007 bash[14094]: cluster 2024-02-10T08:00:15.497589+0000 mgr.smithi007.lzuqsb (mgr.14180) 129 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-10T08:00:16.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:16 smithi007 bash[14094]: audit 2024-02-10T08:00:16.463129+0000 mon.smithi007 (mon.0) 560 : audit [INF] from='osd.7 [v2:172.21.15.7:6826/311657023,v1:172.21.15.7:6827/311657023]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-10T08:00:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:16 smithi123 bash[18776]: cluster 2024-02-10T08:00:15.497589+0000 mgr.smithi007.lzuqsb (mgr.14180) 129 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-10T08:00:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:16 smithi123 bash[18776]: audit 2024-02-10T08:00:16.463129+0000 mon.smithi007 (mon.0) 560 : audit [INF] from='osd.7 [v2:172.21.15.7:6826/311657023,v1:172.21.15.7:6827/311657023]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-10T08:00:17.338 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd stat -f json 2024-02-10T08:00:17.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:17 smithi123 bash[18776]: audit 2024-02-10T08:00:16.594118+0000 mon.smithi007 (mon.0) 561 : audit [INF] from='osd.7 [v2:172.21.15.7:6826/311657023,v1:172.21.15.7:6827/311657023]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-10T08:00:17.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:17 smithi123 bash[18776]: cluster 2024-02-10T08:00:16.594169+0000 mon.smithi007 (mon.0) 562 : cluster [DBG] osdmap e40: 8 total, 7 up, 8 in 2024-02-10T08:00:17.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:17 smithi123 bash[18776]: audit 2024-02-10T08:00:16.594348+0000 mon.smithi007 (mon.0) 563 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:17.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:17 smithi123 bash[18776]: audit 2024-02-10T08:00:16.595107+0000 mon.smithi007 (mon.0) 564 : audit [INF] from='osd.7 [v2:172.21.15.7:6826/311657023,v1:172.21.15.7:6827/311657023]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]: dispatch 2024-02-10T08:00:17.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:17 smithi007 bash[14094]: audit 2024-02-10T08:00:16.594118+0000 mon.smithi007 (mon.0) 561 : audit [INF] from='osd.7 [v2:172.21.15.7:6826/311657023,v1:172.21.15.7:6827/311657023]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-10T08:00:17.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:17 smithi007 bash[14094]: cluster 2024-02-10T08:00:16.594169+0000 mon.smithi007 (mon.0) 562 : cluster [DBG] osdmap e40: 8 total, 7 up, 8 in 2024-02-10T08:00:17.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:17 smithi007 bash[14094]: audit 2024-02-10T08:00:16.594348+0000 mon.smithi007 (mon.0) 563 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:17.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:17 smithi007 bash[14094]: audit 2024-02-10T08:00:16.595107+0000 mon.smithi007 (mon.0) 564 : audit [INF] from='osd.7 [v2:172.21.15.7:6826/311657023,v1:172.21.15.7:6827/311657023]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]: dispatch 2024-02-10T08:00:18.611 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:18 smithi007 bash[14094]: cluster 2024-02-10T08:00:17.497943+0000 mgr.smithi007.lzuqsb (mgr.14180) 130 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-10T08:00:18.611 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:18 smithi007 bash[14094]: audit 2024-02-10T08:00:17.599055+0000 mon.smithi007 (mon.0) 565 : audit [INF] from='osd.7 [v2:172.21.15.7:6826/311657023,v1:172.21.15.7:6827/311657023]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-02-10T08:00:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:18 smithi123 bash[18776]: cluster 2024-02-10T08:00:17.497943+0000 mgr.smithi007.lzuqsb (mgr.14180) 130 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-10T08:00:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:18 smithi123 bash[18776]: audit 2024-02-10T08:00:17.599055+0000 mon.smithi007 (mon.0) 565 : audit [INF] from='osd.7 [v2:172.21.15.7:6826/311657023,v1:172.21.15.7:6827/311657023]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-02-10T08:00:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:18 smithi123 bash[18776]: cluster 2024-02-10T08:00:17.599208+0000 mon.smithi007 (mon.0) 566 : cluster [DBG] osdmap e41: 8 total, 7 up, 8 in 2024-02-10T08:00:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:18 smithi123 bash[18776]: audit 2024-02-10T08:00:17.599840+0000 mon.smithi007 (mon.0) 567 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:18 smithi123 bash[18776]: audit 2024-02-10T08:00:17.604826+0000 mon.smithi007 (mon.0) 568 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:18.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:18 smithi007 bash[14094]: cluster 2024-02-10T08:00:17.599208+0000 mon.smithi007 (mon.0) 566 : cluster [DBG] osdmap e41: 8 total, 7 up, 8 in 2024-02-10T08:00:18.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:18 smithi007 bash[14094]: audit 2024-02-10T08:00:17.599840+0000 mon.smithi007 (mon.0) 567 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:18.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:18 smithi007 bash[14094]: audit 2024-02-10T08:00:17.604826+0000 mon.smithi007 (mon.0) 568 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:19.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:19 smithi007 bash[14094]: cluster 2024-02-10T08:00:17.436812+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T08:00:19.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:19 smithi007 bash[14094]: cluster 2024-02-10T08:00:17.436901+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T08:00:19.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:19 smithi007 bash[14094]: cluster 2024-02-10T08:00:18.607545+0000 mon.smithi007 (mon.0) 569 : cluster [INF] osd.7 [v2:172.21.15.7:6826/311657023,v1:172.21.15.7:6827/311657023] boot 2024-02-10T08:00:19.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:19 smithi007 bash[14094]: cluster 2024-02-10T08:00:18.607610+0000 mon.smithi007 (mon.0) 570 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-02-10T08:00:19.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:19 smithi007 bash[14094]: audit 2024-02-10T08:00:18.608379+0000 mon.smithi007 (mon.0) 571 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:19.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:19 smithi007 bash[14094]: audit 2024-02-10T08:00:18.868081+0000 mon.smithi007 (mon.0) 572 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:19.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:19 smithi007 bash[14094]: audit 2024-02-10T08:00:18.871908+0000 mon.smithi007 (mon.0) 573 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:00:19.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:19 smithi123 bash[18776]: cluster 2024-02-10T08:00:17.436812+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-10T08:00:19.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:19 smithi123 bash[18776]: cluster 2024-02-10T08:00:17.436901+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-10T08:00:19.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:19 smithi123 bash[18776]: cluster 2024-02-10T08:00:18.607545+0000 mon.smithi007 (mon.0) 569 : cluster [INF] osd.7 [v2:172.21.15.7:6826/311657023,v1:172.21.15.7:6827/311657023] boot 2024-02-10T08:00:19.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:19 smithi123 bash[18776]: cluster 2024-02-10T08:00:18.607610+0000 mon.smithi007 (mon.0) 570 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-02-10T08:00:19.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:19 smithi123 bash[18776]: audit 2024-02-10T08:00:18.608379+0000 mon.smithi007 (mon.0) 571 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-10T08:00:19.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:19 smithi123 bash[18776]: audit 2024-02-10T08:00:18.868081+0000 mon.smithi007 (mon.0) 572 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:19.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:19 smithi123 bash[18776]: audit 2024-02-10T08:00:18.871908+0000 mon.smithi007 (mon.0) 573 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:00:20.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:20 smithi123 bash[18776]: cluster 2024-02-10T08:00:19.498612+0000 mgr.smithi007.lzuqsb (mgr.14180) 131 : cluster [DBG] pgmap v119: 1 pgs: 1 peering; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-10T08:00:20.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:20 smithi123 bash[18776]: cluster 2024-02-10T08:00:19.614385+0000 mon.smithi007 (mon.0) 574 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-10T08:00:20.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:20 smithi007 bash[14094]: cluster 2024-02-10T08:00:19.498612+0000 mgr.smithi007.lzuqsb (mgr.14180) 131 : cluster [DBG] pgmap v119: 1 pgs: 1 peering; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-10T08:00:20.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:20 smithi007 bash[14094]: cluster 2024-02-10T08:00:19.614385+0000 mon.smithi007 (mon.0) 574 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-10T08:00:21.189 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:00:21.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:21 smithi007 bash[14094]: cluster 2024-02-10T08:00:20.619026+0000 mon.smithi007 (mon.0) 575 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-10T08:00:21.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:21 smithi007 bash[14094]: audit 2024-02-10T08:00:21.188911+0000 mon.smithi007 (mon.0) 576 : audit [DBG] from='client.? 172.21.15.7:0/122934963' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T08:00:21.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:21 smithi007 bash[14094]: cluster 2024-02-10T08:00:21.499164+0000 mgr.smithi007.lzuqsb (mgr.14180) 132 : cluster [DBG] pgmap v122: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:21.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:21 smithi123 bash[18776]: cluster 2024-02-10T08:00:20.619026+0000 mon.smithi007 (mon.0) 575 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-10T08:00:21.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:21 smithi123 bash[18776]: audit 2024-02-10T08:00:21.188911+0000 mon.smithi007 (mon.0) 576 : audit [DBG] from='client.? 172.21.15.7:0/122934963' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-10T08:00:21.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:21 smithi123 bash[18776]: cluster 2024-02-10T08:00:21.499164+0000 mgr.smithi007.lzuqsb (mgr.14180) 132 : cluster [DBG] pgmap v122: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:21.954 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":44,"num_osds":8,"num_up_osds":8,"osd_up_since":1707552018,"num_in_osds":8,"osd_in_since":1707551958,"num_remapped_pgs":0} 2024-02-10T08:00:21.955 INFO:tasks.cephadm:Setting up client nodes... 2024-02-10T08:00:21.955 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-10T08:00:24.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:24 smithi123 bash[18776]: cluster 2024-02-10T08:00:23.499676+0000 mgr.smithi007.lzuqsb (mgr.14180) 133 : cluster [DBG] pgmap v123: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:24.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:24 smithi123 bash[18776]: audit 2024-02-10T08:00:24.337319+0000 mon.smithi007 (mon.0) 577 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:24.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:24 smithi007 bash[14094]: cluster 2024-02-10T08:00:23.499676+0000 mgr.smithi007.lzuqsb (mgr.14180) 133 : cluster [DBG] pgmap v123: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:24.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:24 smithi007 bash[14094]: audit 2024-02-10T08:00:24.337319+0000 mon.smithi007 (mon.0) 577 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:25.106 INFO:teuthology.orchestra.run.smithi007.stdout:[client.0] 2024-02-10T08:00:25.106 INFO:teuthology.orchestra.run.smithi007.stdout: key = AQAZLcdl4NPjBRAABSDni1TMwBodPHXDhMbsWw== 2024-02-10T08:00:25.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:25 smithi007 bash[14094]: audit 2024-02-10T08:00:25.098474+0000 mon.smithi007 (mon.0) 578 : audit [INF] from='client.? 172.21.15.7:0/1470584011' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-10T08:00:25.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:25 smithi007 bash[14094]: audit 2024-02-10T08:00:25.105132+0000 mon.smithi007 (mon.0) 579 : audit [INF] from='client.? 172.21.15.7:0/1470584011' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-10T08:00:25.851 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T08:00:25.851 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-02-10T08:00:25.851 DEBUG:teuthology.orchestra.run.smithi007:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-02-10T08:00:25.868 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-10T08:00:25.880 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:25 smithi123 bash[18776]: audit 2024-02-10T08:00:25.098474+0000 mon.smithi007 (mon.0) 578 : audit [INF] from='client.? 172.21.15.7:0/1470584011' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-10T08:00:25.881 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:25 smithi123 bash[18776]: audit 2024-02-10T08:00:25.105132+0000 mon.smithi007 (mon.0) 579 : audit [INF] from='client.? 172.21.15.7:0/1470584011' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-10T08:00:26.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:26 smithi123 bash[18776]: cluster 2024-02-10T08:00:25.500053+0000 mgr.smithi007.lzuqsb (mgr.14180) 134 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:26.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:26 smithi123 bash[18776]: audit 2024-02-10T08:00:26.014004+0000 mon.smithi007 (mon.0) 580 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:26.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:26 smithi007 bash[14094]: cluster 2024-02-10T08:00:25.500053+0000 mgr.smithi007.lzuqsb (mgr.14180) 134 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:26.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:26 smithi007 bash[14094]: audit 2024-02-10T08:00:26.014004+0000 mon.smithi007 (mon.0) 580 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:28.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:28 smithi007 bash[14094]: cluster 2024-02-10T08:00:27.500565+0000 mgr.smithi007.lzuqsb (mgr.14180) 135 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:28.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:28 smithi123 bash[18776]: cluster 2024-02-10T08:00:27.500565+0000 mgr.smithi007.lzuqsb (mgr.14180) 135 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:29.069 INFO:teuthology.orchestra.run.smithi123.stdout:[client.1] 2024-02-10T08:00:29.069 INFO:teuthology.orchestra.run.smithi123.stdout: key = AQAdLcdlTTqpAxAAe6l0TSYFpv0wRLyTY1w5iQ== 2024-02-10T08:00:29.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:29 smithi007 bash[14094]: audit 2024-02-10T08:00:29.061090+0000 mon.smithi007 (mon.0) 581 : 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-10T08:00:29.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:29 smithi007 bash[14094]: audit 2024-02-10T08:00:29.061152+0000 mon.smithi123 (mon.1) 18 : audit [INF] from='client.? 172.21.15.123:0/1242418533' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-10T08:00:29.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:29 smithi007 bash[14094]: audit 2024-02-10T08:00:29.068077+0000 mon.smithi007 (mon.0) 582 : 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-10T08:00:29.762 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:29 smithi123 bash[18776]: audit 2024-02-10T08:00:29.061090+0000 mon.smithi007 (mon.0) 581 : 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-10T08:00:29.762 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:29 smithi123 bash[18776]: audit 2024-02-10T08:00:29.061152+0000 mon.smithi123 (mon.1) 18 : audit [INF] from='client.? 172.21.15.123:0/1242418533' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-10T08:00:29.762 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:29 smithi123 bash[18776]: audit 2024-02-10T08:00:29.068077+0000 mon.smithi007 (mon.0) 582 : 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-10T08:00:30.351 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T08:00:30.352 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-02-10T08:00:30.352 DEBUG:teuthology.orchestra.run.smithi123:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-02-10T08:00:30.418 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd dump --format=json 2024-02-10T08:00:30.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:30 smithi123 bash[18776]: cluster 2024-02-10T08:00:29.501084+0000 mgr.smithi007.lzuqsb (mgr.14180) 136 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:30.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:30 smithi007 bash[14094]: cluster 2024-02-10T08:00:29.501084+0000 mgr.smithi007.lzuqsb (mgr.14180) 136 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:32.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:32 smithi123 bash[18776]: cluster 2024-02-10T08:00:31.501633+0000 mgr.smithi007.lzuqsb (mgr.14180) 137 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:32.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:32 smithi007 bash[14094]: cluster 2024-02-10T08:00:31.501633+0000 mgr.smithi007.lzuqsb (mgr.14180) 137 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:34.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:34 smithi123 bash[18776]: cluster 2024-02-10T08:00:33.502187+0000 mgr.smithi007.lzuqsb (mgr.14180) 138 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:34.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:34 smithi007 bash[14094]: cluster 2024-02-10T08:00:33.502187+0000 mgr.smithi007.lzuqsb (mgr.14180) 138 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:35.887 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:00:36.245 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:36 smithi007 bash[14094]: cephadm 2024-02-10T08:00:35.035005+0000 mgr.smithi007.lzuqsb (mgr.14180) 139 : cephadm [INF] Detected new or changed devices on smithi123 2024-02-10T08:00:36.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:36 smithi007 bash[14094]: audit 2024-02-10T08:00:35.045132+0000 mon.smithi007 (mon.0) 583 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:36.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:36 smithi007 bash[14094]: audit 2024-02-10T08:00:35.343126+0000 mon.smithi007 (mon.0) 584 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:36.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:36 smithi007 bash[14094]: audit 2024-02-10T08:00:35.344538+0000 mon.smithi007 (mon.0) 585 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:36.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:36 smithi007 bash[14094]: audit 2024-02-10T08:00:35.345823+0000 mon.smithi007 (mon.0) 586 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:36.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:36 smithi007 bash[14094]: audit 2024-02-10T08:00:35.347148+0000 mon.smithi007 (mon.0) 587 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:36.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:36 smithi007 bash[14094]: cephadm 2024-02-10T08:00:35.348121+0000 mgr.smithi007.lzuqsb (mgr.14180) 140 : cephadm [INF] Adjusting osd_memory_target on smithi123 to 4028M 2024-02-10T08:00:36.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:36 smithi007 bash[14094]: audit 2024-02-10T08:00:35.354886+0000 mon.smithi007 (mon.0) 588 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:36.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:36 smithi007 bash[14094]: cluster 2024-02-10T08:00:35.502833+0000 mgr.smithi007.lzuqsb (mgr.14180) 141 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:36.415 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:36 smithi123 bash[18776]: cephadm 2024-02-10T08:00:35.035005+0000 mgr.smithi007.lzuqsb (mgr.14180) 139 : cephadm [INF] Detected new or changed devices on smithi123 2024-02-10T08:00:36.415 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:36 smithi123 bash[18776]: audit 2024-02-10T08:00:35.045132+0000 mon.smithi007 (mon.0) 583 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:36.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:36 smithi123 bash[18776]: audit 2024-02-10T08:00:35.343126+0000 mon.smithi007 (mon.0) 584 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:36.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:36 smithi123 bash[18776]: audit 2024-02-10T08:00:35.344538+0000 mon.smithi007 (mon.0) 585 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:36.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:36 smithi123 bash[18776]: audit 2024-02-10T08:00:35.345823+0000 mon.smithi007 (mon.0) 586 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:36.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:36 smithi123 bash[18776]: audit 2024-02-10T08:00:35.347148+0000 mon.smithi007 (mon.0) 587 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:36.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:36 smithi123 bash[18776]: cephadm 2024-02-10T08:00:35.348121+0000 mgr.smithi007.lzuqsb (mgr.14180) 140 : cephadm [INF] Adjusting osd_memory_target on smithi123 to 4028M 2024-02-10T08:00:36.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:36 smithi123 bash[18776]: audit 2024-02-10T08:00:35.354886+0000 mon.smithi007 (mon.0) 588 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:36.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:36 smithi123 bash[18776]: cluster 2024-02-10T08:00:35.502833+0000 mgr.smithi007.lzuqsb (mgr.14180) 141 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:38.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: cephadm 2024-02-10T08:00:37.010046+0000 mgr.smithi007.lzuqsb (mgr.14180) 142 : cephadm [INF] Detected new or changed devices on smithi007 2024-02-10T08:00:38.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.022777+0000 mon.smithi007 (mon.0) 589 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:38.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.330783+0000 mon.smithi007 (mon.0) 590 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:38.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.332691+0000 mon.smithi007 (mon.0) 591 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:38.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.334355+0000 mon.smithi007 (mon.0) 592 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:38.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.335506+0000 mon.smithi007 (mon.0) 593 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:38.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: cephadm 2024-02-10T08:00:37.336370+0000 mgr.smithi007.lzuqsb (mgr.14180) 143 : cephadm [INF] Adjusting osd_memory_target on smithi007 to 3261M 2024-02-10T08:00:38.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.342143+0000 mon.smithi007 (mon.0) 594 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:38.417 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.343608+0000 mon.smithi007 (mon.0) 595 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:00:38.417 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.344677+0000 mon.smithi007 (mon.0) 596 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:00:38.417 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.350162+0000 mon.smithi007 (mon.0) 597 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:38.417 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.356185+0000 mon.smithi007 (mon.0) 598 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:00:38.417 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.361068+0000 mon.smithi007 (mon.0) 599 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-10T08:00:38.417 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.364299+0000 mon.smithi007 (mon.0) 600 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-10T08:00:38.417 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.364771+0000 mon.smithi007 (mon.0) 601 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:00:38.417 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: audit 2024-02-10T08:00:37.367522+0000 mon.smithi007 (mon.0) 602 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:00:38.417 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:38 smithi123 bash[18776]: cluster 2024-02-10T08:00:37.503356+0000 mgr.smithi007.lzuqsb (mgr.14180) 144 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:38.495 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: cephadm 2024-02-10T08:00:37.010046+0000 mgr.smithi007.lzuqsb (mgr.14180) 142 : cephadm [INF] Detected new or changed devices on smithi007 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.022777+0000 mon.smithi007 (mon.0) 589 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.330783+0000 mon.smithi007 (mon.0) 590 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.332691+0000 mon.smithi007 (mon.0) 591 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.334355+0000 mon.smithi007 (mon.0) 592 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.335506+0000 mon.smithi007 (mon.0) 593 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: cephadm 2024-02-10T08:00:37.336370+0000 mgr.smithi007.lzuqsb (mgr.14180) 143 : cephadm [INF] Adjusting osd_memory_target on smithi007 to 3261M 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.342143+0000 mon.smithi007 (mon.0) 594 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.343608+0000 mon.smithi007 (mon.0) 595 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.344677+0000 mon.smithi007 (mon.0) 596 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.350162+0000 mon.smithi007 (mon.0) 597 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.356185+0000 mon.smithi007 (mon.0) 598 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:00:38.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.361068+0000 mon.smithi007 (mon.0) 599 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-10T08:00:38.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.364299+0000 mon.smithi007 (mon.0) 600 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-10T08:00:38.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.364771+0000 mon.smithi007 (mon.0) 601 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:00:38.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: audit 2024-02-10T08:00:37.367522+0000 mon.smithi007 (mon.0) 602 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:00:38.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:38 smithi007 bash[14094]: cluster 2024-02-10T08:00:37.503356+0000 mgr.smithi007.lzuqsb (mgr.14180) 144 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:39.504 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:00:39.504 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":44,"fsid":"96f67ea2-c7e9-11ee-95b8-87774f69a715","created":"2024-02-10T07:55:11.171012+0000","modified":"2024-02-10T08:00:20.611740+0000","last_up_change":"2024-02-10T08:00:18.601405+0000","last_in_change":"2024-02-10T07:59:18.475348+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-10T07:59:53.261496+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":"74e798bd-74f0-488a-add6-d80ca855dc11","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6800","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6801","nonce":1781266214}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6802","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6803","nonce":1781266214}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6806","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6807","nonce":1781266214}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6804","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6805","nonce":1781266214}]},"public_addr":"172.21.15.123:6801/1781266214","cluster_addr":"172.21.15.123:6803/1781266214","heartbeat_back_addr":"172.21.15.123:6807/1781266214","heartbeat_front_addr":"172.21.15.123:6805/1781266214","state":["exists","up"]},{"osd":1,"uuid":"375d6fd4-1f83-4525-beb1-bcdd03b060c8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6802","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6803","nonce":2289443502}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6804","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6805","nonce":2289443502}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6808","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6809","nonce":2289443502}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6806","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6807","nonce":2289443502}]},"public_addr":"172.21.15.7:6803/2289443502","cluster_addr":"172.21.15.7:6805/2289443502","heartbeat_back_addr":"172.21.15.7:6809/2289443502","heartbeat_front_addr":"172.21.15.7:6807/2289443502","state":["exists","up"]},{"osd":2,"uuid":"1319a656-c3da-4f5a-8d58-b4b2e7ce2139","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.123:6808","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6809","nonce":3777426558}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6810","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6811","nonce":3777426558}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6814","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6815","nonce":3777426558}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6812","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6813","nonce":3777426558}]},"public_addr":"172.21.15.123:6809/3777426558","cluster_addr":"172.21.15.123:6811/3777426558","heartbeat_back_addr":"172.21.15.123:6815/3777426558","heartbeat_front_addr":"172.21.15.123:6813/3777426558","state":["exists","up"]},{"osd":3,"uuid":"c0b5d851-850d-4f76-9aab-6a6bc47b903b","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.7:6810","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6811","nonce":2325228614}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6812","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6813","nonce":2325228614}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6816","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6817","nonce":2325228614}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6814","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6815","nonce":2325228614}]},"public_addr":"172.21.15.7:6811/2325228614","cluster_addr":"172.21.15.7:6813/2325228614","heartbeat_back_addr":"172.21.15.7:6817/2325228614","heartbeat_front_addr":"172.21.15.7:6815/2325228614","state":["exists","up"]},{"osd":4,"uuid":"a5c06eb9-eb73-453f-a244-f428877ced69","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.123:6816","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6817","nonce":1159079074}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6818","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6819","nonce":1159079074}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6822","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6823","nonce":1159079074}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6820","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6821","nonce":1159079074}]},"public_addr":"172.21.15.123:6817/1159079074","cluster_addr":"172.21.15.123:6819/1159079074","heartbeat_back_addr":"172.21.15.123:6823/1159079074","heartbeat_front_addr":"172.21.15.123:6821/1159079074","state":["exists","up"]},{"osd":5,"uuid":"d18c4aaa-bad0-4cc4-bc70-911813451a99","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6818","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6819","nonce":4032629071}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6820","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6821","nonce":4032629071}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6824","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6825","nonce":4032629071}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6822","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6823","nonce":4032629071}]},"public_addr":"172.21.15.7:6819/4032629071","cluster_addr":"172.21.15.7:6821/4032629071","heartbeat_back_addr":"172.21.15.7:6825/4032629071","heartbeat_front_addr":"172.21.15.7:6823/4032629071","state":["exists","up"]},{"osd":6,"uuid":"32228bb7-3cb2-42fa-9142-c57160cb6643","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.123:6824","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6825","nonce":2960060540}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6826","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6827","nonce":2960060540}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6830","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6831","nonce":2960060540}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6828","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6829","nonce":2960060540}]},"public_addr":"172.21.15.123:6825/2960060540","cluster_addr":"172.21.15.123:6827/2960060540","heartbeat_back_addr":"172.21.15.123:6831/2960060540","heartbeat_front_addr":"172.21.15.123:6829/2960060540","state":["exists","up"]},{"osd":7,"uuid":"b135a7a2-bdac-4f3a-b1c5-7a18a0e15d72","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6826","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6827","nonce":311657023}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6828","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6829","nonce":311657023}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6832","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6833","nonce":311657023}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6830","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6831","nonce":311657023}]},"public_addr":"172.21.15.7:6827/311657023","cluster_addr":"172.21.15.7:6829/311657023","heartbeat_back_addr":"172.21.15.7:6833/311657023","heartbeat_front_addr":"172.21.15.7:6831/311657023","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-10T07:59:40.010014+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-10T07:59:53.809885+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-10T07:59:45.439717+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-10T08:00:01.801061+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-10T07:59:50.712199+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-10T08:00:10.979139+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-10T07:59:55.155423+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-10T08:00:17.436906+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.7:0/3875535561":"2024-02-11T07:57:23.452624+0000","172.21.15.7:0/1845497008":"2024-02-11T07:57:23.452624+0000","172.21.15.7:6801/3857487244":"2024-02-11T07:57:23.452624+0000","172.21.15.7:6800/3857487244":"2024-02-11T07:57:23.452624+0000","172.21.15.7:0/1259832302":"2024-02-11T07:56:20.301319+0000","172.21.15.7:6801/416505317":"2024-02-11T07:56:20.301319+0000","172.21.15.7:6800/416505317":"2024-02-11T07:56:20.301319+0000","172.21.15.7:0/4290432293":"2024-02-11T07:56:20.301319+0000","172.21.15.7:0/1058682959":"2024-02-11T07:55:39.164772+0000","172.21.15.7:6800/1032840612":"2024-02-11T07:55:39.164772+0000","172.21.15.7:6801/1032840612":"2024-02-11T07:55:39.164772+0000","172.21.15.7:0/3642930601":"2024-02-11T07:55:39.164772+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-10T08:00:39.816 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:39 smithi007 bash[14094]: audit 2024-02-10T08:00:39.501482+0000 mon.smithi007 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.7:0/2871813338' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-10T08:00:39.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:39 smithi123 bash[18776]: audit 2024-02-10T08:00:39.501482+0000 mon.smithi007 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.7:0/2871813338' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-10T08:00:40.317 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2024-02-10T07:59:53.261496+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-10T08:00:40.317 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2024-02-10T08:00:40.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:40 smithi007 bash[14094]: cluster 2024-02-10T08:00:39.503763+0000 mgr.smithi007.lzuqsb (mgr.14180) 145 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:40.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:40 smithi123 bash[18776]: cluster 2024-02-10T08:00:39.503763+0000 mgr.smithi007.lzuqsb (mgr.14180) 145 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:42.868 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:42 smithi007 bash[14094]: cluster 2024-02-10T08:00:41.504310+0000 mgr.smithi007.lzuqsb (mgr.14180) 146 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:42 smithi123 bash[18776]: cluster 2024-02-10T08:00:41.504310+0000 mgr.smithi007.lzuqsb (mgr.14180) 146 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:44.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:44 smithi123 bash[18776]: cluster 2024-02-10T08:00:43.504887+0000 mgr.smithi007.lzuqsb (mgr.14180) 147 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:44.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:44 smithi007 bash[14094]: cluster 2024-02-10T08:00:43.504887+0000 mgr.smithi007.lzuqsb (mgr.14180) 147 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:45.108 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:00:46.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:46 smithi123 bash[18776]: cluster 2024-02-10T08:00:45.505507+0000 mgr.smithi007.lzuqsb (mgr.14180) 148 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:46.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:46 smithi007 bash[14094]: cluster 2024-02-10T08:00:45.505507+0000 mgr.smithi007.lzuqsb (mgr.14180) 148 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:48.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:48 smithi007 bash[14094]: cluster 2024-02-10T08:00:47.506141+0000 mgr.smithi007.lzuqsb (mgr.14180) 149 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:48.902 INFO:teuthology.orchestra.run.smithi007.stdout:pg_num: 1 2024-02-10T08:00:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:48 smithi123 bash[18776]: cluster 2024-02-10T08:00:47.506141+0000 mgr.smithi007.lzuqsb (mgr.14180) 149 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:49.634 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-02-10T08:00:49.634 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-02-10T08:00:49.634 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph mgr dump --format=json 2024-02-10T08:00:49.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:49 smithi123 bash[18776]: audit 2024-02-10T08:00:48.901775+0000 mon.smithi007 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.7:0/557388233' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-10T08:00:49.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:49 smithi007 bash[14094]: audit 2024-02-10T08:00:48.901775+0000 mon.smithi007 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.7:0/557388233' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-10T08:00:50.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:50 smithi123 bash[18776]: cluster 2024-02-10T08:00:49.506589+0000 mgr.smithi007.lzuqsb (mgr.14180) 150 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:50.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:50 smithi007 bash[14094]: cluster 2024-02-10T08:00:49.506589+0000 mgr.smithi007.lzuqsb (mgr.14180) 150 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:52.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:52 smithi123 bash[18776]: cluster 2024-02-10T08:00:51.507204+0000 mgr.smithi007.lzuqsb (mgr.14180) 151 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:52.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:52 smithi007 bash[14094]: cluster 2024-02-10T08:00:51.507204+0000 mgr.smithi007.lzuqsb (mgr.14180) 151 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:53.624 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:00:54.851 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:54 smithi007 bash[14094]: cluster 2024-02-10T08:00:53.507813+0000 mgr.smithi007.lzuqsb (mgr.14180) 152 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:54.865 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:54 smithi123 bash[18776]: cluster 2024-02-10T08:00:53.507813+0000 mgr.smithi007.lzuqsb (mgr.14180) 152 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:56.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:56 smithi007 bash[14094]: cluster 2024-02-10T08:00:55.508469+0000 mgr.smithi007.lzuqsb (mgr.14180) 153 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:56.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:56 smithi123 bash[18776]: cluster 2024-02-10T08:00:55.508469+0000 mgr.smithi007.lzuqsb (mgr.14180) 153 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:58.277 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:00:58.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:58 smithi007 bash[14094]: cluster 2024-02-10T08:00:57.509123+0000 mgr.smithi007.lzuqsb (mgr.14180) 154 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:58.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:00:58 smithi007 bash[14094]: audit 2024-02-10T08:00:58.266821+0000 mon.smithi007 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.7:0/118360148' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-10T08:00:58.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:58 smithi123 bash[18776]: cluster 2024-02-10T08:00:57.509123+0000 mgr.smithi007.lzuqsb (mgr.14180) 154 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:00:58.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:00:58 smithi123 bash[18776]: audit 2024-02-10T08:00:58.266821+0000 mon.smithi007 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.7:0/118360148' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-10T08:00:59.622 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":18,"active_gid":14180,"active_name":"smithi007.lzuqsb","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6800","nonce":2617653887},{"type":"v1","addr":"172.21.15.7:6801","nonce":2617653887}]},"active_addr":"172.21.15.7:6801/2617653887","active_change":"2024-02-10T07:57:23.452794+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14200,"name":"smithi123.qhmycm","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.7:8443/","prometheus":"http://172.21.15.7: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.7:0","nonce":1669737067}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.7:0","nonce":3439279690}]}]} 2024-02-10T08:00:59.625 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-02-10T08:00:59.625 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-02-10T08:00:59.625 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd dump --format=json 2024-02-10T08:01:00.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:00 smithi123 bash[18776]: cluster 2024-02-10T08:00:59.509596+0000 mgr.smithi007.lzuqsb (mgr.14180) 155 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:00.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:00 smithi007 bash[14094]: cluster 2024-02-10T08:00:59.509596+0000 mgr.smithi007.lzuqsb (mgr.14180) 155 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:02.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:02 smithi123 bash[18776]: cluster 2024-02-10T08:01:01.510138+0000 mgr.smithi007.lzuqsb (mgr.14180) 156 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:02.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:02 smithi007 bash[14094]: cluster 2024-02-10T08:01:01.510138+0000 mgr.smithi007.lzuqsb (mgr.14180) 156 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:04.424 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:01:04.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:04 smithi007 bash[14094]: cluster 2024-02-10T08:01:03.510723+0000 mgr.smithi007.lzuqsb (mgr.14180) 157 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:04.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:04 smithi007 bash[14094]: audit 2024-02-10T08:01:03.931100+0000 mon.smithi007 (mon.0) 606 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:01:04.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:04 smithi123 bash[18776]: cluster 2024-02-10T08:01:03.510723+0000 mgr.smithi007.lzuqsb (mgr.14180) 157 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:04.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:04 smithi123 bash[18776]: audit 2024-02-10T08:01:03.931100+0000 mon.smithi007 (mon.0) 606 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:01:06.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:06 smithi007 bash[14094]: cluster 2024-02-10T08:01:05.511326+0000 mgr.smithi007.lzuqsb (mgr.14180) 158 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:06.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:06 smithi123 bash[18776]: cluster 2024-02-10T08:01:05.511326+0000 mgr.smithi007.lzuqsb (mgr.14180) 158 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:08.866 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:08 smithi007 bash[14094]: cluster 2024-02-10T08:01:07.511753+0000 mgr.smithi007.lzuqsb (mgr.14180) 159 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:08.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:08 smithi123 bash[18776]: cluster 2024-02-10T08:01:07.511753+0000 mgr.smithi007.lzuqsb (mgr.14180) 159 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:09.268 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:01:09.268 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":44,"fsid":"96f67ea2-c7e9-11ee-95b8-87774f69a715","created":"2024-02-10T07:55:11.171012+0000","modified":"2024-02-10T08:00:20.611740+0000","last_up_change":"2024-02-10T08:00:18.601405+0000","last_in_change":"2024-02-10T07:59:18.475348+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-10T07:59:53.261496+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":"74e798bd-74f0-488a-add6-d80ca855dc11","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6800","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6801","nonce":1781266214}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6802","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6803","nonce":1781266214}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6806","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6807","nonce":1781266214}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6804","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6805","nonce":1781266214}]},"public_addr":"172.21.15.123:6801/1781266214","cluster_addr":"172.21.15.123:6803/1781266214","heartbeat_back_addr":"172.21.15.123:6807/1781266214","heartbeat_front_addr":"172.21.15.123:6805/1781266214","state":["exists","up"]},{"osd":1,"uuid":"375d6fd4-1f83-4525-beb1-bcdd03b060c8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6802","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6803","nonce":2289443502}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6804","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6805","nonce":2289443502}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6808","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6809","nonce":2289443502}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6806","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6807","nonce":2289443502}]},"public_addr":"172.21.15.7:6803/2289443502","cluster_addr":"172.21.15.7:6805/2289443502","heartbeat_back_addr":"172.21.15.7:6809/2289443502","heartbeat_front_addr":"172.21.15.7:6807/2289443502","state":["exists","up"]},{"osd":2,"uuid":"1319a656-c3da-4f5a-8d58-b4b2e7ce2139","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.123:6808","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6809","nonce":3777426558}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6810","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6811","nonce":3777426558}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6814","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6815","nonce":3777426558}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6812","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6813","nonce":3777426558}]},"public_addr":"172.21.15.123:6809/3777426558","cluster_addr":"172.21.15.123:6811/3777426558","heartbeat_back_addr":"172.21.15.123:6815/3777426558","heartbeat_front_addr":"172.21.15.123:6813/3777426558","state":["exists","up"]},{"osd":3,"uuid":"c0b5d851-850d-4f76-9aab-6a6bc47b903b","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.7:6810","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6811","nonce":2325228614}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6812","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6813","nonce":2325228614}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6816","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6817","nonce":2325228614}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6814","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6815","nonce":2325228614}]},"public_addr":"172.21.15.7:6811/2325228614","cluster_addr":"172.21.15.7:6813/2325228614","heartbeat_back_addr":"172.21.15.7:6817/2325228614","heartbeat_front_addr":"172.21.15.7:6815/2325228614","state":["exists","up"]},{"osd":4,"uuid":"a5c06eb9-eb73-453f-a244-f428877ced69","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.123:6816","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6817","nonce":1159079074}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6818","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6819","nonce":1159079074}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6822","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6823","nonce":1159079074}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6820","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6821","nonce":1159079074}]},"public_addr":"172.21.15.123:6817/1159079074","cluster_addr":"172.21.15.123:6819/1159079074","heartbeat_back_addr":"172.21.15.123:6823/1159079074","heartbeat_front_addr":"172.21.15.123:6821/1159079074","state":["exists","up"]},{"osd":5,"uuid":"d18c4aaa-bad0-4cc4-bc70-911813451a99","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6818","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6819","nonce":4032629071}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6820","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6821","nonce":4032629071}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6824","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6825","nonce":4032629071}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6822","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6823","nonce":4032629071}]},"public_addr":"172.21.15.7:6819/4032629071","cluster_addr":"172.21.15.7:6821/4032629071","heartbeat_back_addr":"172.21.15.7:6825/4032629071","heartbeat_front_addr":"172.21.15.7:6823/4032629071","state":["exists","up"]},{"osd":6,"uuid":"32228bb7-3cb2-42fa-9142-c57160cb6643","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.123:6824","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6825","nonce":2960060540}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6826","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6827","nonce":2960060540}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6830","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6831","nonce":2960060540}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6828","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6829","nonce":2960060540}]},"public_addr":"172.21.15.123:6825/2960060540","cluster_addr":"172.21.15.123:6827/2960060540","heartbeat_back_addr":"172.21.15.123:6831/2960060540","heartbeat_front_addr":"172.21.15.123:6829/2960060540","state":["exists","up"]},{"osd":7,"uuid":"b135a7a2-bdac-4f3a-b1c5-7a18a0e15d72","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6826","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6827","nonce":311657023}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6828","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6829","nonce":311657023}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6832","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6833","nonce":311657023}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6830","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6831","nonce":311657023}]},"public_addr":"172.21.15.7:6827/311657023","cluster_addr":"172.21.15.7:6829/311657023","heartbeat_back_addr":"172.21.15.7:6833/311657023","heartbeat_front_addr":"172.21.15.7:6831/311657023","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-10T07:59:40.010014+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-10T07:59:53.809885+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-10T07:59:45.439717+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-10T08:00:01.801061+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-10T07:59:50.712199+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-10T08:00:10.979139+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-10T07:59:55.155423+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-10T08:00:17.436906+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.7:0/3875535561":"2024-02-11T07:57:23.452624+0000","172.21.15.7:0/1845497008":"2024-02-11T07:57:23.452624+0000","172.21.15.7:6801/3857487244":"2024-02-11T07:57:23.452624+0000","172.21.15.7:6800/3857487244":"2024-02-11T07:57:23.452624+0000","172.21.15.7:0/1259832302":"2024-02-11T07:56:20.301319+0000","172.21.15.7:6801/416505317":"2024-02-11T07:56:20.301319+0000","172.21.15.7:6800/416505317":"2024-02-11T07:56:20.301319+0000","172.21.15.7:0/4290432293":"2024-02-11T07:56:20.301319+0000","172.21.15.7:0/1058682959":"2024-02-11T07:55:39.164772+0000","172.21.15.7:6800/1032840612":"2024-02-11T07:55:39.164772+0000","172.21.15.7:6801/1032840612":"2024-02-11T07:55:39.164772+0000","172.21.15.7:0/3642930601":"2024-02-11T07:55:39.164772+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-10T08:01:09.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:09 smithi007 bash[14094]: audit 2024-02-10T08:01:09.266160+0000 mon.smithi007 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.7:0/541188259' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-10T08:01:09.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:09 smithi123 bash[18776]: audit 2024-02-10T08:01:09.266160+0000 mon.smithi007 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.7:0/541188259' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-10T08:01:10.567 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-02-10T08:01:10.567 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd dump --format=json 2024-02-10T08:01:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:10 smithi123 bash[18776]: cluster 2024-02-10T08:01:09.512219+0000 mgr.smithi007.lzuqsb (mgr.14180) 160 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:10.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:10 smithi007 bash[14094]: cluster 2024-02-10T08:01:09.512219+0000 mgr.smithi007.lzuqsb (mgr.14180) 160 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:11.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:11 smithi123 bash[18776]: audit 2024-02-10T08:01:10.638544+0000 mon.smithi007 (mon.0) 608 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:01:11.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:11 smithi123 bash[18776]: cluster 2024-02-10T08:01:11.512808+0000 mgr.smithi007.lzuqsb (mgr.14180) 161 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:11.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:11 smithi007 bash[14094]: audit 2024-02-10T08:01:10.638544+0000 mon.smithi007 (mon.0) 608 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:01:11.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:11 smithi007 bash[14094]: cluster 2024-02-10T08:01:11.512808+0000 mgr.smithi007.lzuqsb (mgr.14180) 161 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:14 smithi123 bash[18776]: cluster 2024-02-10T08:01:13.513382+0000 mgr.smithi007.lzuqsb (mgr.14180) 162 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:14.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:14 smithi007 bash[14094]: cluster 2024-02-10T08:01:13.513382+0000 mgr.smithi007.lzuqsb (mgr.14180) 162 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:15.366 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:01:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:16 smithi123 bash[18776]: cluster 2024-02-10T08:01:15.514036+0000 mgr.smithi007.lzuqsb (mgr.14180) 163 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:16.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:16 smithi007 bash[14094]: cluster 2024-02-10T08:01:15.514036+0000 mgr.smithi007.lzuqsb (mgr.14180) 163 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:18.364 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:01:18.364 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":44,"fsid":"96f67ea2-c7e9-11ee-95b8-87774f69a715","created":"2024-02-10T07:55:11.171012+0000","modified":"2024-02-10T08:00:20.611740+0000","last_up_change":"2024-02-10T08:00:18.601405+0000","last_in_change":"2024-02-10T07:59:18.475348+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-10T07:59:53.261496+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":"74e798bd-74f0-488a-add6-d80ca855dc11","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6800","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6801","nonce":1781266214}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6802","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6803","nonce":1781266214}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6806","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6807","nonce":1781266214}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6804","nonce":1781266214},{"type":"v1","addr":"172.21.15.123:6805","nonce":1781266214}]},"public_addr":"172.21.15.123:6801/1781266214","cluster_addr":"172.21.15.123:6803/1781266214","heartbeat_back_addr":"172.21.15.123:6807/1781266214","heartbeat_front_addr":"172.21.15.123:6805/1781266214","state":["exists","up"]},{"osd":1,"uuid":"375d6fd4-1f83-4525-beb1-bcdd03b060c8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6802","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6803","nonce":2289443502}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6804","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6805","nonce":2289443502}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6808","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6809","nonce":2289443502}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6806","nonce":2289443502},{"type":"v1","addr":"172.21.15.7:6807","nonce":2289443502}]},"public_addr":"172.21.15.7:6803/2289443502","cluster_addr":"172.21.15.7:6805/2289443502","heartbeat_back_addr":"172.21.15.7:6809/2289443502","heartbeat_front_addr":"172.21.15.7:6807/2289443502","state":["exists","up"]},{"osd":2,"uuid":"1319a656-c3da-4f5a-8d58-b4b2e7ce2139","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.123:6808","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6809","nonce":3777426558}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6810","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6811","nonce":3777426558}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6814","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6815","nonce":3777426558}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6812","nonce":3777426558},{"type":"v1","addr":"172.21.15.123:6813","nonce":3777426558}]},"public_addr":"172.21.15.123:6809/3777426558","cluster_addr":"172.21.15.123:6811/3777426558","heartbeat_back_addr":"172.21.15.123:6815/3777426558","heartbeat_front_addr":"172.21.15.123:6813/3777426558","state":["exists","up"]},{"osd":3,"uuid":"c0b5d851-850d-4f76-9aab-6a6bc47b903b","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.7:6810","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6811","nonce":2325228614}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6812","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6813","nonce":2325228614}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6816","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6817","nonce":2325228614}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6814","nonce":2325228614},{"type":"v1","addr":"172.21.15.7:6815","nonce":2325228614}]},"public_addr":"172.21.15.7:6811/2325228614","cluster_addr":"172.21.15.7:6813/2325228614","heartbeat_back_addr":"172.21.15.7:6817/2325228614","heartbeat_front_addr":"172.21.15.7:6815/2325228614","state":["exists","up"]},{"osd":4,"uuid":"a5c06eb9-eb73-453f-a244-f428877ced69","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.123:6816","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6817","nonce":1159079074}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6818","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6819","nonce":1159079074}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6822","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6823","nonce":1159079074}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6820","nonce":1159079074},{"type":"v1","addr":"172.21.15.123:6821","nonce":1159079074}]},"public_addr":"172.21.15.123:6817/1159079074","cluster_addr":"172.21.15.123:6819/1159079074","heartbeat_back_addr":"172.21.15.123:6823/1159079074","heartbeat_front_addr":"172.21.15.123:6821/1159079074","state":["exists","up"]},{"osd":5,"uuid":"d18c4aaa-bad0-4cc4-bc70-911813451a99","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6818","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6819","nonce":4032629071}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6820","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6821","nonce":4032629071}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6824","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6825","nonce":4032629071}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6822","nonce":4032629071},{"type":"v1","addr":"172.21.15.7:6823","nonce":4032629071}]},"public_addr":"172.21.15.7:6819/4032629071","cluster_addr":"172.21.15.7:6821/4032629071","heartbeat_back_addr":"172.21.15.7:6825/4032629071","heartbeat_front_addr":"172.21.15.7:6823/4032629071","state":["exists","up"]},{"osd":6,"uuid":"32228bb7-3cb2-42fa-9142-c57160cb6643","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.123:6824","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6825","nonce":2960060540}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6826","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6827","nonce":2960060540}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6830","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6831","nonce":2960060540}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6828","nonce":2960060540},{"type":"v1","addr":"172.21.15.123:6829","nonce":2960060540}]},"public_addr":"172.21.15.123:6825/2960060540","cluster_addr":"172.21.15.123:6827/2960060540","heartbeat_back_addr":"172.21.15.123:6831/2960060540","heartbeat_front_addr":"172.21.15.123:6829/2960060540","state":["exists","up"]},{"osd":7,"uuid":"b135a7a2-bdac-4f3a-b1c5-7a18a0e15d72","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6826","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6827","nonce":311657023}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6828","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6829","nonce":311657023}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6832","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6833","nonce":311657023}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6830","nonce":311657023},{"type":"v1","addr":"172.21.15.7:6831","nonce":311657023}]},"public_addr":"172.21.15.7:6827/311657023","cluster_addr":"172.21.15.7:6829/311657023","heartbeat_back_addr":"172.21.15.7:6833/311657023","heartbeat_front_addr":"172.21.15.7:6831/311657023","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-10T07:59:40.010014+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-10T07:59:53.809885+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-10T07:59:45.439717+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-10T08:00:01.801061+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-10T07:59:50.712199+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-10T08:00:10.979139+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-10T07:59:55.155423+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-10T08:00:17.436906+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.7:0/3875535561":"2024-02-11T07:57:23.452624+0000","172.21.15.7:0/1845497008":"2024-02-11T07:57:23.452624+0000","172.21.15.7:6801/3857487244":"2024-02-11T07:57:23.452624+0000","172.21.15.7:6800/3857487244":"2024-02-11T07:57:23.452624+0000","172.21.15.7:0/1259832302":"2024-02-11T07:56:20.301319+0000","172.21.15.7:6801/416505317":"2024-02-11T07:56:20.301319+0000","172.21.15.7:6800/416505317":"2024-02-11T07:56:20.301319+0000","172.21.15.7:0/4290432293":"2024-02-11T07:56:20.301319+0000","172.21.15.7:0/1058682959":"2024-02-11T07:55:39.164772+0000","172.21.15.7:6800/1032840612":"2024-02-11T07:55:39.164772+0000","172.21.15.7:6801/1032840612":"2024-02-11T07:55:39.164772+0000","172.21.15.7:0/3642930601":"2024-02-11T07:55:39.164772+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-10T08:01:18.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:18 smithi007 bash[14094]: cluster 2024-02-10T08:01:17.514660+0000 mgr.smithi007.lzuqsb (mgr.14180) 164 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:18.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:18 smithi007 bash[14094]: audit 2024-02-10T08:01:18.361938+0000 mon.smithi007 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.7:0/3426752551' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-10T08:01:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:18 smithi123 bash[18776]: cluster 2024-02-10T08:01:17.514660+0000 mgr.smithi007.lzuqsb (mgr.14180) 164 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:18 smithi123 bash[18776]: audit 2024-02-10T08:01:18.361938+0000 mon.smithi007 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.7:0/3426752551' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-10T08:01:19.128 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-02-10T08:01:20.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:20 smithi123 bash[18776]: cluster 2024-02-10T08:01:19.515200+0000 mgr.smithi007.lzuqsb (mgr.14180) 165 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:20.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:20 smithi007 bash[14094]: cluster 2024-02-10T08:01:19.515200+0000 mgr.smithi007.lzuqsb (mgr.14180) 165 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:22.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:22 smithi123 bash[18776]: cluster 2024-02-10T08:01:21.515738+0000 mgr.smithi007.lzuqsb (mgr.14180) 166 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:22.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:22 smithi007 bash[14094]: cluster 2024-02-10T08:01:21.515738+0000 mgr.smithi007.lzuqsb (mgr.14180) 166 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:23.918 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:01:24.853 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:24 smithi007 bash[14094]: cluster 2024-02-10T08:01:23.516298+0000 mgr.smithi007.lzuqsb (mgr.14180) 167 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:24.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:24 smithi123 bash[18776]: cluster 2024-02-10T08:01:23.516298+0000 mgr.smithi007.lzuqsb (mgr.14180) 167 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:26.817 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:26 smithi007 bash[14094]: cluster 2024-02-10T08:01:25.516876+0000 mgr.smithi007.lzuqsb (mgr.14180) 168 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:26.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:26 smithi123 bash[18776]: cluster 2024-02-10T08:01:25.516876+0000 mgr.smithi007.lzuqsb (mgr.14180) 168 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:27.563 INFO:teuthology.orchestra.run.smithi007.stdout:68719476760 2024-02-10T08:01:27.563 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-02-10T08:01:28.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:28 smithi123 bash[18776]: cluster 2024-02-10T08:01:27.517252+0000 mgr.smithi007.lzuqsb (mgr.14180) 169 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:28.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:28 smithi007 bash[14094]: cluster 2024-02-10T08:01:27.517252+0000 mgr.smithi007.lzuqsb (mgr.14180) 169 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:30.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:30 smithi123 bash[18776]: cluster 2024-02-10T08:01:29.517759+0000 mgr.smithi007.lzuqsb (mgr.14180) 170 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:30.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:30 smithi007 bash[14094]: cluster 2024-02-10T08:01:29.517759+0000 mgr.smithi007.lzuqsb (mgr.14180) 170 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:32.358 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:01:32.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:32 smithi007 bash[14094]: cluster 2024-02-10T08:01:31.518314+0000 mgr.smithi007.lzuqsb (mgr.14180) 171 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:32.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:32 smithi123 bash[18776]: cluster 2024-02-10T08:01:31.518314+0000 mgr.smithi007.lzuqsb (mgr.14180) 171 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:34.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:34 smithi123 bash[18776]: cluster 2024-02-10T08:01:33.518900+0000 mgr.smithi007.lzuqsb (mgr.14180) 172 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:34.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:34 smithi007 bash[14094]: cluster 2024-02-10T08:01:33.518900+0000 mgr.smithi007.lzuqsb (mgr.14180) 172 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:36.045 INFO:teuthology.orchestra.run.smithi007.stdout:115964117015 2024-02-10T08:01:36.045 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-02-10T08:01:36.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:36 smithi123 bash[18776]: cluster 2024-02-10T08:01:35.519468+0000 mgr.smithi007.lzuqsb (mgr.14180) 173 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:36.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:36 smithi007 bash[14094]: cluster 2024-02-10T08:01:35.519468+0000 mgr.smithi007.lzuqsb (mgr.14180) 173 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:38.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:38 smithi123 bash[18776]: cluster 2024-02-10T08:01:37.520052+0000 mgr.smithi007.lzuqsb (mgr.14180) 174 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:38.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:38 smithi007 bash[14094]: cluster 2024-02-10T08:01:37.520052+0000 mgr.smithi007.lzuqsb (mgr.14180) 174 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:40.843 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:01:40.872 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:40 smithi007 bash[14094]: cluster 2024-02-10T08:01:39.520596+0000 mgr.smithi007.lzuqsb (mgr.14180) 175 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:40.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:40 smithi123 bash[18776]: cluster 2024-02-10T08:01:39.520596+0000 mgr.smithi007.lzuqsb (mgr.14180) 175 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:42 smithi123 bash[18776]: cluster 2024-02-10T08:01:41.521207+0000 mgr.smithi007.lzuqsb (mgr.14180) 176 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:42.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:42 smithi007 bash[14094]: cluster 2024-02-10T08:01:41.521207+0000 mgr.smithi007.lzuqsb (mgr.14180) 176 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:44.523 INFO:teuthology.orchestra.run.smithi007.stdout:85899345945 2024-02-10T08:01:44.523 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-02-10T08:01:44.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:44 smithi123 bash[18776]: cluster 2024-02-10T08:01:43.521829+0000 mgr.smithi007.lzuqsb (mgr.14180) 177 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:44.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:44 smithi007 bash[14094]: cluster 2024-02-10T08:01:43.521829+0000 mgr.smithi007.lzuqsb (mgr.14180) 177 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:46.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:46 smithi123 bash[18776]: cluster 2024-02-10T08:01:45.522456+0000 mgr.smithi007.lzuqsb (mgr.14180) 178 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:46.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:46 smithi007 bash[14094]: cluster 2024-02-10T08:01:45.522456+0000 mgr.smithi007.lzuqsb (mgr.14180) 178 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:48 smithi123 bash[18776]: cluster 2024-02-10T08:01:47.523020+0000 mgr.smithi007.lzuqsb (mgr.14180) 179 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:48.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:48 smithi007 bash[14094]: cluster 2024-02-10T08:01:47.523020+0000 mgr.smithi007.lzuqsb (mgr.14180) 179 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:49.315 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:01:50.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:50 smithi123 bash[18776]: cluster 2024-02-10T08:01:49.523555+0000 mgr.smithi007.lzuqsb (mgr.14180) 180 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:50.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:50 smithi007 bash[14094]: cluster 2024-02-10T08:01:49.523555+0000 mgr.smithi007.lzuqsb (mgr.14180) 180 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:52.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:52 smithi007 bash[14094]: cluster 2024-02-10T08:01:51.523880+0000 mgr.smithi007.lzuqsb (mgr.14180) 181 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:52.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:52 smithi123 bash[18776]: cluster 2024-02-10T08:01:51.523880+0000 mgr.smithi007.lzuqsb (mgr.14180) 181 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:53.083 INFO:teuthology.orchestra.run.smithi007.stdout:146028888089 2024-02-10T08:01:53.083 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-02-10T08:01:54.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:54 smithi123 bash[18776]: cluster 2024-02-10T08:01:53.524349+0000 mgr.smithi007.lzuqsb (mgr.14180) 182 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:54.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:54 smithi007 bash[14094]: cluster 2024-02-10T08:01:53.524349+0000 mgr.smithi007.lzuqsb (mgr.14180) 182 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:56.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:56 smithi123 bash[18776]: cluster 2024-02-10T08:01:55.524936+0000 mgr.smithi007.lzuqsb (mgr.14180) 183 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:56.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:56 smithi007 bash[14094]: cluster 2024-02-10T08:01:55.524936+0000 mgr.smithi007.lzuqsb (mgr.14180) 183 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:57.874 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:01:58.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:01:58 smithi007 bash[14094]: cluster 2024-02-10T08:01:57.525492+0000 mgr.smithi007.lzuqsb (mgr.14180) 184 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:01:58.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:01:58 smithi123 bash[18776]: cluster 2024-02-10T08:01:57.525492+0000 mgr.smithi007.lzuqsb (mgr.14180) 184 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:00.842 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:00 smithi007 bash[14094]: cluster 2024-02-10T08:01:59.526030+0000 mgr.smithi007.lzuqsb (mgr.14180) 185 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:00.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:00 smithi123 bash[18776]: cluster 2024-02-10T08:01:59.526030+0000 mgr.smithi007.lzuqsb (mgr.14180) 185 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:01.632 INFO:teuthology.orchestra.run.smithi007.stdout:103079215133 2024-02-10T08:02:01.635 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-02-10T08:02:02.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:02 smithi123 bash[18776]: cluster 2024-02-10T08:02:01.526750+0000 mgr.smithi007.lzuqsb (mgr.14180) 186 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:02.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:02 smithi007 bash[14094]: cluster 2024-02-10T08:02:01.526750+0000 mgr.smithi007.lzuqsb (mgr.14180) 186 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:04.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:04 smithi123 bash[18776]: cluster 2024-02-10T08:02:03.527480+0000 mgr.smithi007.lzuqsb (mgr.14180) 187 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:04.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:04 smithi007 bash[14094]: cluster 2024-02-10T08:02:03.527480+0000 mgr.smithi007.lzuqsb (mgr.14180) 187 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:06.426 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:02:06.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:06 smithi007 bash[14094]: cluster 2024-02-10T08:02:05.528216+0000 mgr.smithi007.lzuqsb (mgr.14180) 188 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:06.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:06 smithi123 bash[18776]: cluster 2024-02-10T08:02:05.528216+0000 mgr.smithi007.lzuqsb (mgr.14180) 188 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:08.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:08 smithi007 bash[14094]: cluster 2024-02-10T08:02:07.528798+0000 mgr.smithi007.lzuqsb (mgr.14180) 189 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:08.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:08 smithi123 bash[18776]: cluster 2024-02-10T08:02:07.528798+0000 mgr.smithi007.lzuqsb (mgr.14180) 189 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:10.173 INFO:teuthology.orchestra.run.smithi007.stdout:163208757274 2024-02-10T08:02:10.173 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-02-10T08:02:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:10 smithi123 bash[18776]: cluster 2024-02-10T08:02:09.529370+0000 mgr.smithi007.lzuqsb (mgr.14180) 190 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:10.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:10 smithi007 bash[14094]: cluster 2024-02-10T08:02:09.529370+0000 mgr.smithi007.lzuqsb (mgr.14180) 190 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:11.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:11 smithi123 bash[18776]: audit 2024-02-10T08:02:10.643471+0000 mon.smithi007 (mon.0) 610 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:02:11.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:11 smithi007 bash[14094]: audit 2024-02-10T08:02:10.643471+0000 mon.smithi007 (mon.0) 610 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:02:12.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:12 smithi123 bash[18776]: cluster 2024-02-10T08:02:11.529951+0000 mgr.smithi007.lzuqsb (mgr.14180) 191 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:12.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:12 smithi007 bash[14094]: cluster 2024-02-10T08:02:11.529951+0000 mgr.smithi007.lzuqsb (mgr.14180) 191 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:14 smithi123 bash[18776]: cluster 2024-02-10T08:02:13.530455+0000 mgr.smithi007.lzuqsb (mgr.14180) 192 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:14.968 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:02:14.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:14 smithi007 bash[14094]: cluster 2024-02-10T08:02:13.530455+0000 mgr.smithi007.lzuqsb (mgr.14180) 192 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:16 smithi123 bash[18776]: cluster 2024-02-10T08:02:15.530842+0000 mgr.smithi007.lzuqsb (mgr.14180) 193 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:16 smithi123 bash[18776]: audit 2024-02-10T08:02:16.049613+0000 mon.smithi007 (mon.0) 611 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:02:16.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:16 smithi123 bash[18776]: audit 2024-02-10T08:02:16.143140+0000 mon.smithi007 (mon.0) 612 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:02:16.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:16 smithi123 bash[18776]: audit 2024-02-10T08:02:16.411700+0000 mon.smithi007 (mon.0) 613 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:02:16.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:16 smithi123 bash[18776]: audit 2024-02-10T08:02:16.413172+0000 mon.smithi007 (mon.0) 614 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:02:16.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:16 smithi123 bash[18776]: audit 2024-02-10T08:02:16.420848+0000 mon.smithi007 (mon.0) 615 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:02:16.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:16 smithi123 bash[18776]: audit 2024-02-10T08:02:16.429594+0000 mon.smithi007 (mon.0) 616 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:02:16.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:16 smithi007 bash[14094]: cluster 2024-02-10T08:02:15.530842+0000 mgr.smithi007.lzuqsb (mgr.14180) 193 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:16.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:16 smithi007 bash[14094]: audit 2024-02-10T08:02:16.049613+0000 mon.smithi007 (mon.0) 611 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:02:16.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:16 smithi007 bash[14094]: audit 2024-02-10T08:02:16.143140+0000 mon.smithi007 (mon.0) 612 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:02:16.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:16 smithi007 bash[14094]: audit 2024-02-10T08:02:16.411700+0000 mon.smithi007 (mon.0) 613 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:02:16.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:16 smithi007 bash[14094]: audit 2024-02-10T08:02:16.413172+0000 mon.smithi007 (mon.0) 614 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:02:16.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:16 smithi007 bash[14094]: audit 2024-02-10T08:02:16.420848+0000 mon.smithi007 (mon.0) 615 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:02:16.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:16 smithi007 bash[14094]: audit 2024-02-10T08:02:16.429594+0000 mon.smithi007 (mon.0) 616 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:02:18.703 INFO:teuthology.orchestra.run.smithi007.stdout:120259084319 2024-02-10T08:02:18.704 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-02-10T08:02:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:18 smithi123 bash[18776]: cluster 2024-02-10T08:02:17.531334+0000 mgr.smithi007.lzuqsb (mgr.14180) 194 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:18.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:18 smithi007 bash[14094]: cluster 2024-02-10T08:02:17.531334+0000 mgr.smithi007.lzuqsb (mgr.14180) 194 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:20.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:20 smithi123 bash[18776]: cluster 2024-02-10T08:02:19.531853+0000 mgr.smithi007.lzuqsb (mgr.14180) 195 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:20.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:20 smithi007 bash[14094]: cluster 2024-02-10T08:02:19.531853+0000 mgr.smithi007.lzuqsb (mgr.14180) 195 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:22.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:22 smithi123 bash[18776]: cluster 2024-02-10T08:02:21.532459+0000 mgr.smithi007.lzuqsb (mgr.14180) 196 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:22.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:22 smithi007 bash[14094]: cluster 2024-02-10T08:02:21.532459+0000 mgr.smithi007.lzuqsb (mgr.14180) 196 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:23.495 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:02:24.857 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:24 smithi007 bash[14094]: cluster 2024-02-10T08:02:23.533021+0000 mgr.smithi007.lzuqsb (mgr.14180) 197 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:24.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:24 smithi123 bash[18776]: cluster 2024-02-10T08:02:23.533021+0000 mgr.smithi007.lzuqsb (mgr.14180) 197 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:26.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:26 smithi007 bash[14094]: cluster 2024-02-10T08:02:25.533583+0000 mgr.smithi007.lzuqsb (mgr.14180) 198 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:26.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:26 smithi123 bash[18776]: cluster 2024-02-10T08:02:25.533583+0000 mgr.smithi007.lzuqsb (mgr.14180) 198 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:27.244 INFO:teuthology.orchestra.run.smithi007.stdout:180388626459 2024-02-10T08:02:27.245 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-02-10T08:02:28.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:28 smithi123 bash[18776]: cluster 2024-02-10T08:02:27.534144+0000 mgr.smithi007.lzuqsb (mgr.14180) 199 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:28.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:28 smithi007 bash[14094]: cluster 2024-02-10T08:02:27.534144+0000 mgr.smithi007.lzuqsb (mgr.14180) 199 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:30.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:30 smithi123 bash[18776]: cluster 2024-02-10T08:02:29.534771+0000 mgr.smithi007.lzuqsb (mgr.14180) 200 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:30.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:30 smithi007 bash[14094]: cluster 2024-02-10T08:02:29.534771+0000 mgr.smithi007.lzuqsb (mgr.14180) 200 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:32.036 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:02:32.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:32 smithi123 bash[18776]: cluster 2024-02-10T08:02:31.535232+0000 mgr.smithi007.lzuqsb (mgr.14180) 201 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:32.968 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:32 smithi007 bash[14094]: cluster 2024-02-10T08:02:31.535232+0000 mgr.smithi007.lzuqsb (mgr.14180) 201 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:34.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:34 smithi123 bash[18776]: cluster 2024-02-10T08:02:33.535747+0000 mgr.smithi007.lzuqsb (mgr.14180) 202 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:34.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:34 smithi007 bash[14094]: cluster 2024-02-10T08:02:33.535747+0000 mgr.smithi007.lzuqsb (mgr.14180) 202 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:35.182 INFO:teuthology.orchestra.run.smithi007.stdout:68719476774 2024-02-10T08:02:35.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:35 smithi007 bash[14094]: audit 2024-02-10T08:02:35.181549+0000 mon.smithi007 (mon.0) 617 : audit [DBG] from='client.? 172.21.15.7:0/2079179623' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-10T08:02:35.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:35 smithi123 bash[18776]: audit 2024-02-10T08:02:35.181549+0000 mon.smithi007 (mon.0) 617 : audit [DBG] from='client.? 172.21.15.7:0/2079179623' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-10T08:02:35.967 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476760 got 68719476774 for osd.0 2024-02-10T08:02:35.967 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-02-10T08:02:36.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:36 smithi123 bash[18776]: cluster 2024-02-10T08:02:35.536188+0000 mgr.smithi007.lzuqsb (mgr.14180) 203 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:36.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:36 smithi007 bash[14094]: cluster 2024-02-10T08:02:35.536188+0000 mgr.smithi007.lzuqsb (mgr.14180) 203 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:38.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:38 smithi123 bash[18776]: cluster 2024-02-10T08:02:37.536705+0000 mgr.smithi007.lzuqsb (mgr.14180) 204 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:38.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:38 smithi007 bash[14094]: cluster 2024-02-10T08:02:37.536705+0000 mgr.smithi007.lzuqsb (mgr.14180) 204 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:40.762 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:02:40.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:40 smithi123 bash[18776]: cluster 2024-02-10T08:02:39.537309+0000 mgr.smithi007.lzuqsb (mgr.14180) 205 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:40.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:40 smithi007 bash[14094]: cluster 2024-02-10T08:02:39.537309+0000 mgr.smithi007.lzuqsb (mgr.14180) 205 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:42 smithi123 bash[18776]: cluster 2024-02-10T08:02:41.537876+0000 mgr.smithi007.lzuqsb (mgr.14180) 206 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:42.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:42 smithi007 bash[14094]: cluster 2024-02-10T08:02:41.537876+0000 mgr.smithi007.lzuqsb (mgr.14180) 206 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:43.777 INFO:teuthology.orchestra.run.smithi007.stdout:115964117029 2024-02-10T08:02:44.559 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964117015 got 115964117029 for osd.1 2024-02-10T08:02:44.559 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-02-10T08:02:44.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:44 smithi123 bash[18776]: cluster 2024-02-10T08:02:43.538482+0000 mgr.smithi007.lzuqsb (mgr.14180) 207 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:44.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:44 smithi123 bash[18776]: audit 2024-02-10T08:02:43.776627+0000 mon.smithi007 (mon.0) 618 : audit [DBG] from='client.? 172.21.15.7:0/2866861526' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-10T08:02:44.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:44 smithi007 bash[14094]: cluster 2024-02-10T08:02:43.538482+0000 mgr.smithi007.lzuqsb (mgr.14180) 207 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:44.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:44 smithi007 bash[14094]: audit 2024-02-10T08:02:43.776627+0000 mon.smithi007 (mon.0) 618 : audit [DBG] from='client.? 172.21.15.7:0/2866861526' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-10T08:02:46.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:46 smithi123 bash[18776]: cluster 2024-02-10T08:02:45.539070+0000 mgr.smithi007.lzuqsb (mgr.14180) 208 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:46.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:46 smithi007 bash[14094]: cluster 2024-02-10T08:02:45.539070+0000 mgr.smithi007.lzuqsb (mgr.14180) 208 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:48 smithi123 bash[18776]: cluster 2024-02-10T08:02:47.539579+0000 mgr.smithi007.lzuqsb (mgr.14180) 209 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:48.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:48 smithi007 bash[14094]: cluster 2024-02-10T08:02:47.539579+0000 mgr.smithi007.lzuqsb (mgr.14180) 209 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:49.349 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:02:50.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:50 smithi123 bash[18776]: cluster 2024-02-10T08:02:49.540149+0000 mgr.smithi007.lzuqsb (mgr.14180) 210 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:50.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:50 smithi007 bash[14094]: cluster 2024-02-10T08:02:49.540149+0000 mgr.smithi007.lzuqsb (mgr.14180) 210 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:52.396 INFO:teuthology.orchestra.run.smithi007.stdout:85899345958 2024-02-10T08:02:52.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:52 smithi007 bash[14094]: cluster 2024-02-10T08:02:51.540517+0000 mgr.smithi007.lzuqsb (mgr.14180) 211 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:52.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:52 smithi007 bash[14094]: audit 2024-02-10T08:02:52.395219+0000 mon.smithi007 (mon.0) 619 : audit [DBG] from='client.? 172.21.15.7:0/1446430825' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-10T08:02:52.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:52 smithi123 bash[18776]: cluster 2024-02-10T08:02:51.540517+0000 mgr.smithi007.lzuqsb (mgr.14180) 211 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:52.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:52 smithi123 bash[18776]: audit 2024-02-10T08:02:52.395219+0000 mon.smithi007 (mon.0) 619 : audit [DBG] from='client.? 172.21.15.7:0/1446430825' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-10T08:02:53.141 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345945 got 85899345958 for osd.2 2024-02-10T08:02:53.142 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-02-10T08:02:54.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:54 smithi123 bash[18776]: cluster 2024-02-10T08:02:53.541073+0000 mgr.smithi007.lzuqsb (mgr.14180) 212 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:54.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:54 smithi007 bash[14094]: cluster 2024-02-10T08:02:53.541073+0000 mgr.smithi007.lzuqsb (mgr.14180) 212 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:56.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:56 smithi123 bash[18776]: cluster 2024-02-10T08:02:55.541698+0000 mgr.smithi007.lzuqsb (mgr.14180) 213 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:56.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:56 smithi007 bash[14094]: cluster 2024-02-10T08:02:55.541698+0000 mgr.smithi007.lzuqsb (mgr.14180) 213 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:57.926 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:02:58.889 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:02:58 smithi007 bash[14094]: cluster 2024-02-10T08:02:57.542284+0000 mgr.smithi007.lzuqsb (mgr.14180) 214 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:02:58.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:02:58 smithi123 bash[18776]: cluster 2024-02-10T08:02:57.542284+0000 mgr.smithi007.lzuqsb (mgr.14180) 214 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:00.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:00 smithi123 bash[18776]: cluster 2024-02-10T08:02:59.542960+0000 mgr.smithi007.lzuqsb (mgr.14180) 215 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:00.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:00 smithi007 bash[14094]: cluster 2024-02-10T08:02:59.542960+0000 mgr.smithi007.lzuqsb (mgr.14180) 215 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:01.076 INFO:teuthology.orchestra.run.smithi007.stdout:146028888103 2024-02-10T08:03:01.886 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:01 smithi007 bash[14094]: audit 2024-02-10T08:03:01.075222+0000 mon.smithi007 (mon.0) 620 : audit [DBG] from='client.? 172.21.15.7:0/1186373175' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-10T08:03:01.887 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888089 got 146028888103 for osd.3 2024-02-10T08:03:01.887 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-02-10T08:03:01.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:01 smithi123 bash[18776]: audit 2024-02-10T08:03:01.075222+0000 mon.smithi007 (mon.0) 620 : audit [DBG] from='client.? 172.21.15.7:0/1186373175' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-10T08:03:02.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:02 smithi123 bash[18776]: cluster 2024-02-10T08:03:01.543442+0000 mgr.smithi007.lzuqsb (mgr.14180) 216 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:02.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:02 smithi007 bash[14094]: cluster 2024-02-10T08:03:01.543442+0000 mgr.smithi007.lzuqsb (mgr.14180) 216 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:04.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:04 smithi123 bash[18776]: cluster 2024-02-10T08:03:03.544105+0000 mgr.smithi007.lzuqsb (mgr.14180) 217 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:04.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:04 smithi007 bash[14094]: cluster 2024-02-10T08:03:03.544105+0000 mgr.smithi007.lzuqsb (mgr.14180) 217 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:06.681 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:03:06.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:06 smithi123 bash[18776]: cluster 2024-02-10T08:03:05.544848+0000 mgr.smithi007.lzuqsb (mgr.14180) 218 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:06.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:06 smithi007 bash[14094]: cluster 2024-02-10T08:03:05.544848+0000 mgr.smithi007.lzuqsb (mgr.14180) 218 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:08.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:08 smithi123 bash[18776]: cluster 2024-02-10T08:03:07.545543+0000 mgr.smithi007.lzuqsb (mgr.14180) 219 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:08.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:08 smithi007 bash[14094]: cluster 2024-02-10T08:03:07.545543+0000 mgr.smithi007.lzuqsb (mgr.14180) 219 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:09.956 INFO:teuthology.orchestra.run.smithi007.stdout:103079215147 2024-02-10T08:03:10.808 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215133 got 103079215147 for osd.4 2024-02-10T08:03:10.809 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-02-10T08:03:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:10 smithi123 bash[18776]: cluster 2024-02-10T08:03:09.546012+0000 mgr.smithi007.lzuqsb (mgr.14180) 220 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:10 smithi123 bash[18776]: audit 2024-02-10T08:03:09.955215+0000 mon.smithi007 (mon.0) 621 : audit [DBG] from='client.? 172.21.15.7:0/367668104' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-10T08:03:10.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:10 smithi007 bash[14094]: cluster 2024-02-10T08:03:09.546012+0000 mgr.smithi007.lzuqsb (mgr.14180) 220 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:10.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:10 smithi007 bash[14094]: audit 2024-02-10T08:03:09.955215+0000 mon.smithi007 (mon.0) 621 : audit [DBG] from='client.? 172.21.15.7:0/367668104' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-10T08:03:12.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:12 smithi123 bash[18776]: cluster 2024-02-10T08:03:11.546606+0000 mgr.smithi007.lzuqsb (mgr.14180) 221 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:12.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:12 smithi007 bash[14094]: cluster 2024-02-10T08:03:11.546606+0000 mgr.smithi007.lzuqsb (mgr.14180) 221 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:14 smithi123 bash[18776]: cluster 2024-02-10T08:03:13.547142+0000 mgr.smithi007.lzuqsb (mgr.14180) 222 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:14.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:14 smithi007 bash[14094]: cluster 2024-02-10T08:03:13.547142+0000 mgr.smithi007.lzuqsb (mgr.14180) 222 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:15.602 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:03:16.899 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:16 smithi007 bash[14094]: cluster 2024-02-10T08:03:15.547730+0000 mgr.smithi007.lzuqsb (mgr.14180) 223 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:16.899 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:16 smithi007 bash[14094]: audit 2024-02-10T08:03:16.438018+0000 mon.smithi007 (mon.0) 622 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:03:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:16 smithi123 bash[18776]: cluster 2024-02-10T08:03:15.547730+0000 mgr.smithi007.lzuqsb (mgr.14180) 223 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:16 smithi123 bash[18776]: audit 2024-02-10T08:03:16.438018+0000 mon.smithi007 (mon.0) 622 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:03:18.667 INFO:teuthology.orchestra.run.smithi007.stdout:163208757287 2024-02-10T08:03:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:18 smithi123 bash[18776]: cluster 2024-02-10T08:03:17.548118+0000 mgr.smithi007.lzuqsb (mgr.14180) 224 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:18.930 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:18 smithi007 bash[14094]: cluster 2024-02-10T08:03:17.548118+0000 mgr.smithi007.lzuqsb (mgr.14180) 224 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:19.477 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757274 got 163208757287 for osd.5 2024-02-10T08:03:19.477 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-02-10T08:03:19.745 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:19 smithi007 bash[14094]: audit 2024-02-10T08:03:18.666377+0000 mon.smithi007 (mon.0) 623 : audit [DBG] from='client.? 172.21.15.7:0/1068258525' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-10T08:03:19.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:19 smithi123 bash[18776]: audit 2024-02-10T08:03:18.666377+0000 mon.smithi007 (mon.0) 623 : audit [DBG] from='client.? 172.21.15.7:0/1068258525' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-10T08:03:20.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:20 smithi123 bash[18776]: cluster 2024-02-10T08:03:19.548734+0000 mgr.smithi007.lzuqsb (mgr.14180) 225 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:20.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:20 smithi007 bash[14094]: cluster 2024-02-10T08:03:19.548734+0000 mgr.smithi007.lzuqsb (mgr.14180) 225 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:22.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:22 smithi123 bash[18776]: cluster 2024-02-10T08:03:21.549285+0000 mgr.smithi007.lzuqsb (mgr.14180) 226 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:22.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:22 smithi123 bash[18776]: audit 2024-02-10T08:03:21.846515+0000 mon.smithi007 (mon.0) 624 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:03:22.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:22 smithi007 bash[14094]: cluster 2024-02-10T08:03:21.549285+0000 mgr.smithi007.lzuqsb (mgr.14180) 226 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:22.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:22 smithi007 bash[14094]: audit 2024-02-10T08:03:21.846515+0000 mon.smithi007 (mon.0) 624 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:03:23.283 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:03:24.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:24 smithi007 bash[14094]: audit 2024-02-10T08:03:23.486644+0000 mon.smithi007 (mon.0) 625 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:03:24.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:24 smithi007 bash[14094]: cluster 2024-02-10T08:03:23.549870+0000 mgr.smithi007.lzuqsb (mgr.14180) 227 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:24.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:24 smithi007 bash[14094]: audit 2024-02-10T08:03:23.766208+0000 mon.smithi007 (mon.0) 626 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:03:24.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:24 smithi007 bash[14094]: audit 2024-02-10T08:03:23.767627+0000 mon.smithi007 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:03:24.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:24 smithi007 bash[14094]: audit 2024-02-10T08:03:23.774243+0000 mon.smithi007 (mon.0) 628 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:03:24.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:24 smithi007 bash[14094]: audit 2024-02-10T08:03:23.781159+0000 mon.smithi007 (mon.0) 629 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:03:24.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:24 smithi123 bash[18776]: audit 2024-02-10T08:03:23.486644+0000 mon.smithi007 (mon.0) 625 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:03:24.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:24 smithi123 bash[18776]: cluster 2024-02-10T08:03:23.549870+0000 mgr.smithi007.lzuqsb (mgr.14180) 227 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:24.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:24 smithi123 bash[18776]: audit 2024-02-10T08:03:23.766208+0000 mon.smithi007 (mon.0) 626 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:03:24.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:24 smithi123 bash[18776]: audit 2024-02-10T08:03:23.767627+0000 mon.smithi007 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:03:24.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:24 smithi123 bash[18776]: audit 2024-02-10T08:03:23.774243+0000 mon.smithi007 (mon.0) 628 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:03:24.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:24 smithi123 bash[18776]: audit 2024-02-10T08:03:23.781159+0000 mon.smithi007 (mon.0) 629 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:03:26.296 INFO:teuthology.orchestra.run.smithi007.stdout:120259084332 2024-02-10T08:03:26.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:26 smithi123 bash[18776]: cluster 2024-02-10T08:03:25.550319+0000 mgr.smithi007.lzuqsb (mgr.14180) 228 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:26.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:26 smithi123 bash[18776]: audit 2024-02-10T08:03:26.294987+0000 mon.smithi007 (mon.0) 630 : audit [DBG] from='client.? 172.21.15.7:0/3989667001' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-10T08:03:26.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:26 smithi007 bash[14094]: cluster 2024-02-10T08:03:25.550319+0000 mgr.smithi007.lzuqsb (mgr.14180) 228 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:26.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:26 smithi007 bash[14094]: audit 2024-02-10T08:03:26.294987+0000 mon.smithi007 (mon.0) 630 : audit [DBG] from='client.? 172.21.15.7:0/3989667001' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-10T08:03:27.052 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084319 got 120259084332 for osd.6 2024-02-10T08:03:27.053 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-02-10T08:03:28.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:28 smithi123 bash[18776]: cluster 2024-02-10T08:03:27.550996+0000 mgr.smithi007.lzuqsb (mgr.14180) 229 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:28.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:28 smithi007 bash[14094]: cluster 2024-02-10T08:03:27.550996+0000 mgr.smithi007.lzuqsb (mgr.14180) 229 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:30.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:30 smithi123 bash[18776]: cluster 2024-02-10T08:03:29.551581+0000 mgr.smithi007.lzuqsb (mgr.14180) 230 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:30.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:30 smithi007 bash[14094]: cluster 2024-02-10T08:03:29.551581+0000 mgr.smithi007.lzuqsb (mgr.14180) 230 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:31.837 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:03:32.910 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:32 smithi007 bash[14094]: cluster 2024-02-10T08:03:31.552245+0000 mgr.smithi007.lzuqsb (mgr.14180) 231 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:32.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:32 smithi123 bash[18776]: cluster 2024-02-10T08:03:31.552245+0000 mgr.smithi007.lzuqsb (mgr.14180) 231 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:34.910 INFO:teuthology.orchestra.run.smithi007.stdout:180388626472 2024-02-10T08:03:34.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:34 smithi123 bash[18776]: cluster 2024-02-10T08:03:33.552988+0000 mgr.smithi007.lzuqsb (mgr.14180) 232 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:34.963 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:34 smithi007 bash[14094]: cluster 2024-02-10T08:03:33.552988+0000 mgr.smithi007.lzuqsb (mgr.14180) 232 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:35.702 INFO:tasks.cephadm.ceph_manager.ceph:need seq 180388626459 got 180388626472 for osd.7 2024-02-10T08:03:35.703 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-02-10T08:03:35.703 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph pg dump --format=json 2024-02-10T08:03:35.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:35 smithi123 bash[18776]: audit 2024-02-10T08:03:34.909010+0000 mon.smithi007 (mon.0) 631 : audit [DBG] from='client.? 172.21.15.7:0/2135618223' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-10T08:03:35.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:35 smithi007 bash[14094]: audit 2024-02-10T08:03:34.909010+0000 mon.smithi007 (mon.0) 631 : audit [DBG] from='client.? 172.21.15.7:0/2135618223' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-10T08:03:36.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:36 smithi123 bash[18776]: cluster 2024-02-10T08:03:35.553586+0000 mgr.smithi007.lzuqsb (mgr.14180) 233 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:36.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:36 smithi007 bash[14094]: cluster 2024-02-10T08:03:35.553586+0000 mgr.smithi007.lzuqsb (mgr.14180) 233 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:38.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:38 smithi123 bash[18776]: cluster 2024-02-10T08:03:37.554195+0000 mgr.smithi007.lzuqsb (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-10T08:03:38.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:38 smithi007 bash[14094]: cluster 2024-02-10T08:03:37.554195+0000 mgr.smithi007.lzuqsb (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-10T08:03:40.499 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:03:40.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:40 smithi123 bash[18776]: cluster 2024-02-10T08:03:39.554894+0000 mgr.smithi007.lzuqsb (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-10T08:03:40.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:40 smithi007 bash[14094]: cluster 2024-02-10T08:03:39.554894+0000 mgr.smithi007.lzuqsb (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-10T08:03:42.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:42 smithi007 bash[14094]: cluster 2024-02-10T08:03:41.555528+0000 mgr.smithi007.lzuqsb (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-10T08:03:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:42 smithi123 bash[18776]: cluster 2024-02-10T08:03:41.555528+0000 mgr.smithi007.lzuqsb (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-10T08:03:43.634 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:03:43.637 INFO:teuthology.orchestra.run.smithi007.stderr:dumped all 2024-02-10T08:03:44.370 INFO:teuthology.orchestra.run.smithi007.stdout:{"pg_ready":true,"pg_map":{"version":223,"stamp":"2024-02-10T08:03:43.555869+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":2380220,"kb_used_data":3452,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548228,"statfs":{"total":767926730752,"available":765489385472,"internally_reserved":0,"allocated":3534848,"data_stored":1378597,"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":44,"state":"active+clean","last_fresh":"2024-02-10T08:00:20.782226+0000","last_change":"2024-02-10T08:00:20.782226+0000","last_active":"2024-02-10T08:00:20.782226+0000","last_peered":"2024-02-10T08:00:20.782226+0000","last_clean":"2024-02-10T08:00:20.782226+0000","last_became_active":"2024-02-10T08:00:20.781733+0000","last_became_peered":"2024-02-10T08:00:20.781733+0000","last_unstale":"2024-02-10T08:00:20.782226+0000","last_undegraded":"2024-02-10T08:00:20.782226+0000","last_fullsized":"2024-02-10T08:00:20.782226+0000","mapping_epoch":43,"log_start":"0'0","ondisk_log_start":"0'0","created":25,"last_epoch_clean":44,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-10T07:59:53.758227+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-10T07:59:53.758227+0000","last_clean_scrub_stamp":"2024-02-10T07:59:53.758227+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":42,"seq":180388626474,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":0.84099999999999997,"5min":0.83699999999999997,"15min":0.83899999999999997},"min":{"1min":0.60999999999999999,"5min":0.56899999999999995,"15min":0.56899999999999995},"max":{"1min":1.0509999999999999,"5min":1.123,"15min":1.123},"last":0.72699999999999998},{"interface":"front","average":{"1min":0.94599999999999995,"5min":0.92000000000000004,"15min":0.91200000000000003},"min":{"1min":0.623,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.458,"5min":1.458,"15min":1.458},"last":0.97599999999999998}]},{"osd":1,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":0.79600000000000004,"5min":0.79900000000000004,"15min":0.79900000000000004},"min":{"1min":0.56599999999999995,"5min":0.53100000000000003,"15min":0.53100000000000003},"max":{"1min":1.087,"5min":1.3700000000000001,"15min":1.3700000000000001},"last":0.90300000000000002},{"interface":"front","average":{"1min":0.88800000000000001,"5min":0.87,"15min":0.86699999999999999},"min":{"1min":0.58099999999999996,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.1859999999999999,"5min":1.228,"15min":1.228},"last":0.78700000000000003}]},{"osd":2,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":0.85799999999999998,"5min":0.88100000000000001,"15min":0.871},"min":{"1min":0.66200000000000003,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.157,"5min":1.248,"15min":1.248},"last":1.1279999999999999},{"interface":"front","average":{"1min":0.93200000000000005,"5min":0.90400000000000003,"15min":0.88600000000000001},"min":{"1min":0.70499999999999996,"5min":0.68899999999999995,"15min":0.68899999999999995},"max":{"1min":1.2190000000000001,"5min":1.2330000000000001,"15min":1.2330000000000001},"last":1.02}]},{"osd":3,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":0.93500000000000005,"5min":0.91500000000000004,"15min":0.90100000000000002},"min":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"max":{"1min":1.6579999999999999,"5min":1.6579999999999999,"15min":1.6579999999999999},"last":0.65200000000000002},{"interface":"front","average":{"1min":0.98999999999999999,"5min":0.93999999999999995,"15min":0.92600000000000005},"min":{"1min":0.53700000000000003,"5min":0.48199999999999998,"15min":0.48199999999999998},"max":{"1min":1.3,"5min":1.3799999999999999,"15min":1.3799999999999999},"last":0.63}]},{"osd":4,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":1.044,"5min":1.038,"15min":1.022},"min":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.585,"5min":1.585,"15min":1.585},"last":0.753},{"interface":"front","average":{"1min":1.081,"5min":1.044,"15min":1.024},"min":{"1min":0.79200000000000004,"5min":0.69699999999999995,"15min":0.69699999999999995},"max":{"1min":1.599,"5min":1.599,"15min":1.599},"last":1.091}]},{"osd":5,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":1.0640000000000001,"5min":1.01,"15min":0.97599999999999998},"min":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.5,"5min":1.5,"15min":1.5},"last":1.1699999999999999},{"interface":"front","average":{"1min":1.1559999999999999,"5min":1.0900000000000001,"15min":1.0660000000000001},"min":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.7410000000000001,"5min":1.7410000000000001,"15min":1.7410000000000001},"last":1.0669999999999999}]},{"osd":6,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":1.236,"5min":1.177,"15min":1.1579999999999999},"min":{"1min":0.92000000000000004,"5min":0.86099999999999999,"15min":0.86099999999999999},"max":{"1min":1.9450000000000001,"5min":1.9450000000000001,"15min":1.9450000000000001},"last":1.194},{"interface":"front","average":{"1min":1.1919999999999999,"5min":1.1299999999999999,"15min":1.1000000000000001},"min":{"1min":0.84799999999999998,"5min":0.71999999999999997,"15min":0.71999999999999997},"max":{"1min":1.5269999999999999,"5min":1.6359999999999999,"15min":1.6359999999999999},"last":1.0389999999999999}]}]},{"osd":5,"up_from":38,"seq":163208757292,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":0.86499999999999999,"5min":0.89100000000000001,"15min":0.90000000000000002},"min":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"max":{"1min":1.224,"5min":1.4470000000000001,"15min":1.4470000000000001},"last":0.89200000000000002},{"interface":"front","average":{"1min":0.871,"5min":0.88300000000000001,"15min":0.86799999999999999},"min":{"1min":0.60199999999999998,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.1060000000000001,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":1.125}]},{"osd":1,"last update":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":0.77100000000000002,"5min":0.79400000000000004,"15min":0.80400000000000005},"min":{"1min":0.61499999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"max":{"1min":1.0289999999999999,"5min":1.4690000000000001,"15min":1.4690000000000001},"last":0.82099999999999995},{"interface":"front","average":{"1min":0.85199999999999998,"5min":0.83599999999999997,"15min":0.82799999999999996},"min":{"1min":0.438,"5min":0.438,"15min":0.438},"max":{"1min":1.2729999999999999,"5min":1.2729999999999999,"15min":1.2729999999999999},"last":0.999}]},{"osd":2,"last update":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":1.006,"5min":1.012,"15min":1.0049999999999999},"min":{"1min":0.57499999999999996,"5min":0.57499999999999996,"15min":0.57499999999999996},"max":{"1min":1.335,"5min":1.395,"15min":1.395},"last":1.2629999999999999},{"interface":"front","average":{"1min":0.98999999999999999,"5min":0.94699999999999995,"15min":0.92800000000000005},"min":{"1min":0.72599999999999998,"5min":0.625,"15min":0.625},"max":{"1min":1.1739999999999999,"5min":1.371,"15min":1.371},"last":0.85699999999999998}]},{"osd":3,"last update":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":0.84399999999999997,"5min":0.84399999999999997,"15min":0.83899999999999997},"min":{"1min":0.502,"5min":0.502,"15min":0.502},"max":{"1min":1.28,"5min":1.28,"15min":1.28},"last":1.032},{"interface":"front","average":{"1min":0.92700000000000005,"5min":0.90400000000000003,"15min":0.90700000000000003},"min":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"max":{"1min":1.4119999999999999,"5min":1.5449999999999999,"15min":1.5449999999999999},"last":1.0640000000000001}]},{"osd":4,"last update":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":1.081,"5min":1.0389999999999999,"15min":1.0349999999999999},"min":{"1min":0.874,"5min":0.73299999999999998,"15min":0.73299999999999998},"max":{"1min":1.9279999999999999,"5min":1.9279999999999999,"15min":1.9279999999999999},"last":0.96399999999999997},{"interface":"front","average":{"1min":1.155,"5min":1.099,"15min":1.091},"min":{"1min":0.72099999999999997,"5min":0.58199999999999996,"15min":0.58199999999999996},"max":{"1min":1.954,"5min":1.954,"15min":1.954},"last":1.167}]},{"osd":6,"last update":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":1.1499999999999999,"5min":1.105,"15min":1.095},"min":{"1min":0.98699999999999999,"5min":0.79000000000000004,"15min":0.79000000000000004},"max":{"1min":1.417,"5min":1.6359999999999999,"15min":1.6359999999999999},"last":1.2370000000000001},{"interface":"front","average":{"1min":1.163,"5min":1.1240000000000001,"15min":1.121},"min":{"1min":1.0089999999999999,"5min":0.76900000000000002,"15min":0.76900000000000002},"max":{"1min":1.3859999999999999,"5min":1.706,"15min":1.706},"last":1.208}]},{"osd":7,"last update":"Sat Feb 10 08:03:22 2024","interfaces":[{"interface":"back","average":{"1min":1.1879999999999999,"5min":1.151,"15min":1.151},"min":{"1min":0.79400000000000004,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.6639999999999999,"5min":1.6639999999999999,"15min":1.6639999999999999},"last":1.361},{"interface":"front","average":{"1min":1.2010000000000001,"5min":1.169,"15min":1.157},"min":{"1min":0.92600000000000005,"5min":0.63,"15min":0.63},"max":{"1min":1.522,"5min":1.522,"15min":1.522},"last":1.3109999999999999}]}]},{"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":297524,"kb_used_data":428,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443532,"statfs":{"total":95990841344,"available":95686176768,"internally_reserved":0,"allocated":438272,"data_stored":172049,"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":"Sat Feb 10 08:02:53 2024","interfaces":[{"interface":"back","average":{"1min":0.73699999999999999,"5min":0.68000000000000005,"15min":0.66800000000000004},"min":{"1min":0.55300000000000005,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":1.093,"5min":1.093,"15min":1.093},"last":0.58299999999999996},{"interface":"front","average":{"1min":0.73299999999999998,"5min":0.73599999999999999,"15min":0.73199999999999998},"min":{"1min":0.55500000000000005,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":1.1359999999999999,"5min":1.256,"15min":1.256},"last":0.93899999999999995}]},{"osd":1,"last update":"Sat Feb 10 08:02:59 2024","interfaces":[{"interface":"back","average":{"1min":0.96599999999999997,"5min":0.95899999999999996,"15min":0.95299999999999996},"min":{"1min":0.628,"5min":0.60299999999999998,"15min":0.60299999999999998},"max":{"1min":1.1830000000000001,"5min":1.276,"15min":1.276},"last":0.90400000000000003},{"interface":"front","average":{"1min":0.92000000000000004,"5min":0.83199999999999996,"15min":0.81699999999999995},"min":{"1min":0.65200000000000002,"5min":0.50900000000000001,"15min":0.50900000000000001},"max":{"1min":1.1579999999999999,"5min":1.1579999999999999,"15min":1.1579999999999999},"last":0.73599999999999999}]},{"osd":3,"last update":"Sat Feb 10 08:03:06 2024","interfaces":[{"interface":"back","average":{"1min":0.95199999999999996,"5min":0.92300000000000004,"15min":0.90300000000000002},"min":{"1min":0.73399999999999999,"5min":0.65900000000000003,"15min":0.65900000000000003},"max":{"1min":1.165,"5min":1.3049999999999999,"15min":1.3049999999999999},"last":0.78300000000000003},{"interface":"front","average":{"1min":0.91300000000000003,"5min":0.89000000000000001,"15min":0.88100000000000001},"min":{"1min":0.68700000000000006,"5min":0.61499999999999999,"15min":0.61499999999999999},"max":{"1min":1.23,"5min":1.23,"15min":1.23},"last":0.96999999999999997}]},{"osd":4,"last update":"Sat Feb 10 08:02:59 2024","interfaces":[{"interface":"back","average":{"1min":0.84599999999999997,"5min":0.81999999999999995,"15min":0.81100000000000005},"min":{"1min":0.63400000000000001,"5min":0.434,"15min":0.434},"max":{"1min":1.0600000000000001,"5min":1.264,"15min":1.264},"last":0.84199999999999997},{"interface":"front","average":{"1min":0.96199999999999997,"5min":0.91200000000000003,"15min":0.88800000000000001},"min":{"1min":0.66600000000000004,"5min":0.495,"15min":0.495},"max":{"1min":1.135,"5min":1.3620000000000001,"15min":1.3620000000000001},"last":0.69699999999999995}]},{"osd":5,"last update":"Sat Feb 10 08:03:23 2024","interfaces":[{"interface":"back","average":{"1min":0.997,"5min":0.97599999999999998,"15min":0.97099999999999997},"min":{"1min":0.753,"5min":0.627,"15min":0.627},"max":{"1min":1.238,"5min":1.4330000000000001,"15min":1.4330000000000001},"last":0.998},{"interface":"front","average":{"1min":1.131,"5min":1.079,"15min":1.0640000000000001},"min":{"1min":0.94299999999999995,"5min":0.68400000000000005,"15min":0.68400000000000005},"max":{"1min":1.5920000000000001,"5min":1.5920000000000001,"15min":1.5920000000000001},"last":1.0609999999999999}]},{"osd":6,"last update":"Sat Feb 10 08:02:59 2024","interfaces":[{"interface":"back","average":{"1min":1.0509999999999999,"5min":0.95599999999999996,"15min":0.91800000000000004},"min":{"1min":0.85699999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.3080000000000001,"5min":1.3080000000000001,"15min":1.3080000000000001},"last":0.66600000000000004},{"interface":"front","average":{"1min":1.101,"5min":1.0409999999999999,"15min":1.0209999999999999},"min":{"1min":0.85999999999999999,"5min":0.63900000000000001,"15min":0.63900000000000001},"max":{"1min":1.2509999999999999,"5min":1.466,"15min":1.466},"last":1.0129999999999999}]},{"osd":7,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":1.1379999999999999,"5min":1.028,"15min":1.008},"min":{"1min":0.96699999999999997,"5min":0.66300000000000003,"15min":0.66300000000000003},"max":{"1min":1.605,"5min":1.605,"15min":1.605},"last":0.88200000000000001},{"interface":"front","average":{"1min":1.1850000000000001,"5min":1.103,"15min":1.081},"min":{"1min":0.998,"5min":0.745,"15min":0.745},"max":{"1min":1.53,"5min":1.53,"15min":1.53},"last":1.038}]}]},{"osd":0,"up_from":16,"seq":68719476788,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.85399999999999998,"5min":0.82099999999999995,"15min":0.79700000000000004},"min":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"max":{"1min":1.232,"5min":1.232,"15min":1.232},"last":0.71999999999999997},{"interface":"front","average":{"1min":0.88600000000000001,"5min":0.89200000000000002,"15min":0.89000000000000001},"min":{"1min":0.57999999999999996,"5min":0.57899999999999996,"15min":0.57899999999999996},"max":{"1min":1.1000000000000001,"5min":1.6120000000000001,"15min":1.6120000000000001},"last":0.53400000000000003}]},{"osd":2,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.77300000000000002,"5min":0.75600000000000001,"15min":0.73799999999999999},"min":{"1min":0.58499999999999996,"5min":0.40400000000000003,"15min":0.40400000000000003},"max":{"1min":1.0109999999999999,"5min":1.1100000000000001,"15min":1.1100000000000001},"last":0.96999999999999997},{"interface":"front","average":{"1min":0.83299999999999996,"5min":0.81299999999999994,"15min":0.81399999999999995},"min":{"1min":0.58899999999999997,"5min":0.32400000000000001,"15min":0.32400000000000001},"max":{"1min":1.2869999999999999,"5min":1.2869999999999999,"15min":1.2869999999999999},"last":0.621}]},{"osd":3,"last update":"Sat Feb 10 08:03:08 2024","interfaces":[{"interface":"back","average":{"1min":0.99399999999999999,"5min":0.90800000000000003,"15min":0.876},"min":{"1min":0.76600000000000001,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":1.1879999999999999,"5min":1.228,"15min":1.228},"last":0.999},{"interface":"front","average":{"1min":0.88900000000000001,"5min":0.92500000000000004,"15min":0.92500000000000004},"min":{"1min":0.69499999999999995,"5min":0.63800000000000001,"15min":0.63800000000000001},"max":{"1min":1.1899999999999999,"5min":1.2709999999999999,"15min":1.2709999999999999},"last":1.1879999999999999}]},{"osd":4,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.90500000000000003,"5min":0.94099999999999995,"15min":0.95799999999999996},"min":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"max":{"1min":1.246,"5min":1.26,"15min":1.26},"last":0.80000000000000004},{"interface":"front","average":{"1min":0.94699999999999995,"5min":0.91200000000000003,"15min":0.89700000000000002},"min":{"1min":0.623,"5min":0.46100000000000002,"15min":0.46100000000000002},"max":{"1min":1.3280000000000001,"5min":1.3300000000000001,"15min":1.3300000000000001},"last":1.036}]},{"osd":5,"last update":"Sat Feb 10 08:03:18 2024","interfaces":[{"interface":"back","average":{"1min":0.90900000000000003,"5min":0.93899999999999995,"15min":0.94099999999999995},"min":{"1min":0.78600000000000003,"5min":0.622,"15min":0.622},"max":{"1min":1.0840000000000001,"5min":1.204,"15min":1.204},"last":1.0920000000000001},{"interface":"front","average":{"1min":1.109,"5min":1.0620000000000001,"15min":1.052},"min":{"1min":0.753,"5min":0.73199999999999998,"15min":0.73199999999999998},"max":{"1min":1.3540000000000001,"5min":1.446,"15min":1.446},"last":0.86799999999999999}]},{"osd":6,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":1.0529999999999999,"5min":1.056,"15min":1.0640000000000001},"min":{"1min":0.82799999999999996,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.357,"5min":1.8089999999999999,"15min":1.8089999999999999},"last":1.133},{"interface":"front","average":{"1min":0.97399999999999998,"5min":1.006,"15min":1.016},"min":{"1min":0.70299999999999996,"5min":0.44900000000000001,"15min":0.44900000000000001},"max":{"1min":1.22,"5min":1.3340000000000001,"15min":1.3340000000000001},"last":1.214}]},{"osd":7,"last update":"Sat Feb 10 08:03:26 2024","interfaces":[{"interface":"back","average":{"1min":1.145,"5min":1.117,"15min":1.109},"min":{"1min":0.95799999999999996,"5min":0.80800000000000005,"15min":0.80800000000000005},"max":{"1min":1.5549999999999999,"5min":1.5549999999999999,"15min":1.5549999999999999},"last":0.94999999999999996},{"interface":"front","average":{"1min":1.0700000000000001,"5min":1.085,"15min":1.083},"min":{"1min":0.76200000000000001,"5min":0.63100000000000001,"15min":0.63100000000000001},"max":{"1min":1.2050000000000001,"5min":1.4830000000000001,"15min":1.4830000000000001},"last":1.163}]}]},{"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":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:01 2024","interfaces":[{"interface":"back","average":{"1min":0.66500000000000004,"5min":0.65300000000000002,"15min":0.64500000000000002},"min":{"1min":0.49199999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":0.96699999999999997,"5min":0.96699999999999997,"15min":0.96699999999999997},"last":0.76100000000000001},{"interface":"front","average":{"1min":0.78800000000000003,"5min":0.751,"15min":0.74099999999999999},"min":{"1min":0.57799999999999996,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.1220000000000001,"5min":1.1220000000000001,"15min":1.1220000000000001},"last":0.67500000000000004}]},{"osd":1,"last update":"Sat Feb 10 08:03:04 2024","interfaces":[{"interface":"back","average":{"1min":0.91900000000000004,"5min":0.877,"15min":0.85999999999999999},"min":{"1min":0.77600000000000002,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.101,"5min":1.101,"15min":1.101},"last":1.113},{"interface":"front","average":{"1min":0.84799999999999998,"5min":0.879,"15min":0.874},"min":{"1min":0.72199999999999998,"5min":0.64400000000000002,"15min":0.64400000000000002},"max":{"1min":1.2330000000000001,"5min":1.2330000000000001,"15min":1.2330000000000001},"last":1.0309999999999999}]},{"osd":2,"last update":"Sat Feb 10 08:03:01 2024","interfaces":[{"interface":"back","average":{"1min":0.81200000000000006,"5min":0.73599999999999999,"15min":0.71399999999999997},"min":{"1min":0.58499999999999996,"5min":0.50800000000000001,"15min":0.50800000000000001},"max":{"1min":1.018,"5min":1.018,"15min":1.018},"last":0.89300000000000002},{"interface":"front","average":{"1min":0.95099999999999996,"5min":0.89500000000000002,"15min":0.871},"min":{"1min":0.629,"5min":0.57299999999999995,"15min":0.57299999999999995},"max":{"1min":1.1839999999999999,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":0.92400000000000004}]},{"osd":3,"last update":"Sat Feb 10 08:03:13 2024","interfaces":[{"interface":"back","average":{"1min":0.96999999999999997,"5min":0.91400000000000003,"15min":0.89900000000000002},"min":{"1min":0.80800000000000005,"5min":0.67200000000000004,"15min":0.67200000000000004},"max":{"1min":1.159,"5min":1.1990000000000001,"15min":1.1990000000000001},"last":1.0680000000000001},{"interface":"front","average":{"1min":0.96899999999999997,"5min":0.97599999999999998,"15min":0.96999999999999997},"min":{"1min":0.75,"5min":0.75,"15min":0.75},"max":{"1min":1.3109999999999999,"5min":1.3109999999999999,"15min":1.3109999999999999},"last":0.84999999999999998}]},{"osd":5,"last update":"Sat Feb 10 08:03:20 2024","interfaces":[{"interface":"back","average":{"1min":0.96499999999999997,"5min":0.97599999999999998,"15min":0.995},"min":{"1min":0.73999999999999999,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.4590000000000001,"5min":1.4590000000000001,"15min":1.4590000000000001},"last":1.2210000000000001},{"interface":"front","average":{"1min":1.0149999999999999,"5min":1.022,"15min":1.0289999999999999},"min":{"1min":0.69599999999999995,"5min":0.69599999999999995,"15min":0.69599999999999995},"max":{"1min":1.3540000000000001,"5min":1.3540000000000001,"15min":1.3540000000000001},"last":1.165}]},{"osd":6,"last update":"Sat Feb 10 08:03:04 2024","interfaces":[{"interface":"back","average":{"1min":0.98899999999999999,"5min":0.96699999999999997,"15min":0.95499999999999996},"min":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.431,"5min":1.431,"15min":1.431},"last":1.1439999999999999},{"interface":"front","average":{"1min":1.0169999999999999,"5min":1.0049999999999999,"15min":1.0049999999999999},"min":{"1min":0.65000000000000002,"5min":0.65000000000000002,"15min":0.65000000000000002},"max":{"1min":1.258,"5min":1.258,"15min":1.258},"last":1.1759999999999999}]},{"osd":7,"last update":"Sat Feb 10 08:03:20 2024","interfaces":[{"interface":"back","average":{"1min":1.0960000000000001,"5min":1.107,"15min":1.1120000000000001},"min":{"1min":0.90800000000000003,"5min":0.80100000000000005,"15min":0.80100000000000005},"max":{"1min":1.51,"5min":1.51,"15min":1.51},"last":1.202},{"interface":"front","average":{"1min":1.1539999999999999,"5min":1.121,"15min":1.1240000000000001},"min":{"1min":0.96899999999999997,"5min":0.93799999999999994,"15min":0.93799999999999994},"max":{"1min":1.6699999999999999,"5min":1.6699999999999999,"15min":1.6699999999999999},"last":1.012}]}]},{"osd":1,"up_from":27,"seq":115964117041,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:09 2024","interfaces":[{"interface":"back","average":{"1min":0.84599999999999997,"5min":0.85799999999999998,"15min":0.85899999999999999},"min":{"1min":0.57199999999999995,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.0629999999999999,"5min":1.2529999999999999,"15min":1.2529999999999999},"last":1.1419999999999999},{"interface":"front","average":{"1min":0.88300000000000001,"5min":0.89500000000000002,"15min":0.89100000000000001},"min":{"1min":0.61899999999999999,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.1899999999999999,"5min":1.2030000000000001,"15min":1.2030000000000001},"last":1.1080000000000001}]},{"osd":2,"last update":"Sat Feb 10 08:03:09 2024","interfaces":[{"interface":"back","average":{"1min":0.86499999999999999,"5min":0.86499999999999999,"15min":0.84899999999999998},"min":{"1min":0.58699999999999997,"5min":0.52600000000000002,"15min":0.52600000000000002},"max":{"1min":1.079,"5min":1.1759999999999999,"15min":1.1759999999999999},"last":1.069},{"interface":"front","average":{"1min":0.85699999999999998,"5min":0.86699999999999999,"15min":0.877},"min":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.1459999999999999,"5min":1.298,"15min":1.298},"last":1.018}]},{"osd":3,"last update":"Sat Feb 10 08:03:09 2024","interfaces":[{"interface":"back","average":{"1min":0.78700000000000003,"5min":0.79900000000000004,"15min":0.79300000000000004},"min":{"1min":0.437,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":1.179,"5min":1.226,"15min":1.226},"last":0.65800000000000003},{"interface":"front","average":{"1min":0.80500000000000005,"5min":0.80000000000000004,"15min":0.78200000000000003},"min":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"max":{"1min":1.2430000000000001,"5min":1.4279999999999999,"15min":1.4279999999999999},"last":0.78100000000000003}]},{"osd":4,"last update":"Sat Feb 10 08:03:09 2024","interfaces":[{"interface":"back","average":{"1min":0.98399999999999999,"5min":0.99399999999999999,"15min":0.98899999999999999},"min":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"max":{"1min":1.228,"5min":1.3819999999999999,"15min":1.3819999999999999},"last":1.181},{"interface":"front","average":{"1min":0.98499999999999999,"5min":0.97099999999999997,"15min":0.95499999999999996},"min":{"1min":0.63600000000000001,"5min":0.626,"15min":0.626},"max":{"1min":1.25,"5min":1.4079999999999999,"15min":1.4079999999999999},"last":0.98499999999999999}]},{"osd":5,"last update":"Sat Feb 10 08:03:16 2024","interfaces":[{"interface":"back","average":{"1min":0.875,"5min":0.90300000000000002,"15min":0.89100000000000001},"min":{"1min":0.46899999999999997,"5min":0.46899999999999997,"15min":0.46899999999999997},"max":{"1min":1.2490000000000001,"5min":1.3400000000000001,"15min":1.3400000000000001},"last":0.90400000000000003},{"interface":"front","average":{"1min":1.103,"5min":1.107,"15min":1.089},"min":{"1min":0.66700000000000004,"5min":0.55900000000000005,"15min":0.55900000000000005},"max":{"1min":1.389,"5min":1.5069999999999999,"15min":1.5069999999999999},"last":1.038}]},{"osd":6,"last update":"Sat Feb 10 08:03:09 2024","interfaces":[{"interface":"back","average":{"1min":1.129,"5min":1.091,"15min":1.0660000000000001},"min":{"1min":0.81000000000000005,"5min":0.629,"15min":0.629},"max":{"1min":1.5089999999999999,"5min":1.6519999999999999,"15min":1.6519999999999999},"last":0.84899999999999998},{"interface":"front","average":{"1min":1.0700000000000001,"5min":1.0609999999999999,"15min":1.046},"min":{"1min":0.63,"5min":0.63,"15min":0.63},"max":{"1min":1.3839999999999999,"5min":1.5429999999999999,"15min":1.5429999999999999},"last":1.212}]},{"osd":7,"last update":"Sat Feb 10 08:03:23 2024","interfaces":[{"interface":"back","average":{"1min":1.048,"5min":1.0700000000000001,"15min":1.0509999999999999},"min":{"1min":0.39900000000000002,"5min":0.39900000000000002,"15min":0.39900000000000002},"max":{"1min":1.446,"5min":1.4710000000000001,"15min":1.4710000000000001},"last":0.878},{"interface":"front","average":{"1min":1.1060000000000001,"5min":1.081,"15min":1.0449999999999999},"min":{"1min":0.64800000000000002,"5min":0.58899999999999997,"15min":0.58899999999999997},"max":{"1min":1.4339999999999999,"5min":1.5980000000000001,"15min":1.5980000000000001},"last":0.94199999999999995}]}]},{"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":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.68000000000000005,"5min":0.71099999999999997,"15min":0.72099999999999997},"min":{"1min":0.54600000000000004,"5min":0.34799999999999998,"15min":0.34799999999999998},"max":{"1min":0.97999999999999998,"5min":1.22,"15min":1.22},"last":0.70599999999999996},{"interface":"front","average":{"1min":0.80300000000000005,"5min":0.78100000000000003,"15min":0.77300000000000002},"min":{"1min":0.57199999999999995,"5min":0.52000000000000002,"15min":0.52000000000000002},"max":{"1min":1.1220000000000001,"5min":1.4299999999999999,"15min":1.4299999999999999},"last":0.754}]},{"osd":1,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.77300000000000002,"5min":0.83099999999999996,"15min":0.84299999999999997},"min":{"1min":0.56599999999999995,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":0.92000000000000004,"5min":1.145,"15min":1.145},"last":0.73199999999999998},{"interface":"front","average":{"1min":0.89900000000000002,"5min":0.90200000000000002,"15min":0.91000000000000003},"min":{"1min":0.73599999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.081,"5min":1.3520000000000001,"15min":1.3520000000000001},"last":0.97999999999999998}]},{"osd":2,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.83999999999999997,"5min":0.81399999999999995,"15min":0.81200000000000006},"min":{"1min":0.628,"5min":0.56599999999999995,"15min":0.56599999999999995},"max":{"1min":1.165,"5min":1.165,"15min":1.165},"last":0.88},{"interface":"front","average":{"1min":0.876,"5min":0.86399999999999999,"15min":0.85099999999999998},"min":{"1min":0.63700000000000001,"5min":0.57899999999999996,"15min":0.57899999999999996},"max":{"1min":1.1870000000000001,"5min":1.248,"15min":1.248},"last":0.90700000000000003}]},{"osd":3,"last update":"Sat Feb 10 08:03:06 2024","interfaces":[{"interface":"back","average":{"1min":0.98199999999999998,"5min":0.93500000000000005,"15min":0.91400000000000003},"min":{"1min":0.85999999999999999,"5min":0.67800000000000005,"15min":0.67800000000000005},"max":{"1min":1.1739999999999999,"5min":1.2430000000000001,"15min":1.2430000000000001},"last":1.0660000000000001},{"interface":"front","average":{"1min":0.99199999999999999,"5min":0.96899999999999997,"15min":0.96199999999999997},"min":{"1min":0.76000000000000001,"5min":0.67700000000000005,"15min":0.67700000000000005},"max":{"1min":1.391,"5min":1.391,"15min":1.391},"last":1.109}]},{"osd":4,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.93300000000000005,"5min":0.92100000000000004,"15min":0.91300000000000003},"min":{"1min":0.752,"5min":0.60299999999999998,"15min":0.60299999999999998},"max":{"1min":1.214,"5min":1.4970000000000001,"15min":1.4970000000000001},"last":1.0169999999999999},{"interface":"front","average":{"1min":0.91800000000000004,"5min":0.91400000000000003,"15min":0.91000000000000003},"min":{"1min":0.69399999999999995,"5min":0.47799999999999998,"15min":0.47799999999999998},"max":{"1min":1.2589999999999999,"5min":1.403,"15min":1.403},"last":0.95299999999999996}]},{"osd":5,"last update":"Sat Feb 10 08:03:16 2024","interfaces":[{"interface":"back","average":{"1min":0.98799999999999999,"5min":1.004,"15min":1.0009999999999999},"min":{"1min":0.755,"5min":0.754,"15min":0.754},"max":{"1min":1.329,"5min":1.329,"15min":1.329},"last":1.087},{"interface":"front","average":{"1min":1.0920000000000001,"5min":1.1000000000000001,"15min":1.1040000000000001},"min":{"1min":0.82199999999999995,"5min":0.59299999999999997,"15min":0.59299999999999997},"max":{"1min":1.3100000000000001,"5min":1.5389999999999999,"15min":1.5389999999999999},"last":1.2030000000000001}]},{"osd":7,"last update":"Sat Feb 10 08:03:21 2024","interfaces":[{"interface":"back","average":{"1min":1.105,"5min":1.121,"15min":1.119},"min":{"1min":0.91200000000000003,"5min":0.747,"15min":0.747},"max":{"1min":1.29,"5min":1.639,"15min":1.639},"last":1.2350000000000001},{"interface":"front","average":{"1min":1.1020000000000001,"5min":1.1140000000000001,"15min":1.1140000000000001},"min":{"1min":0.83299999999999996,"5min":0.78200000000000003,"15min":0.78200000000000003},"max":{"1min":1.2509999999999999,"5min":1.7270000000000001,"15min":1.7270000000000001},"last":1.1319999999999999}]}]},{"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":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:10 2024","interfaces":[{"interface":"back","average":{"1min":1.004,"5min":0.93300000000000005,"15min":0.91500000000000004},"min":{"1min":0.71699999999999997,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.331,"5min":1.3400000000000001,"15min":1.3400000000000001},"last":1.1140000000000001},{"interface":"front","average":{"1min":0.86799999999999999,"5min":0.92500000000000004,"15min":0.94799999999999995},"min":{"1min":0.69299999999999995,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.048,"5min":3.6909999999999998,"15min":3.6909999999999998},"last":0.76800000000000002}]},{"osd":1,"last update":"Sat Feb 10 08:03:10 2024","interfaces":[{"interface":"back","average":{"1min":0.753,"5min":0.73899999999999999,"15min":0.72099999999999997},"min":{"1min":0.54100000000000004,"5min":0.50700000000000001,"15min":0.50700000000000001},"max":{"1min":1.2470000000000001,"5min":1.351,"15min":1.351},"last":0.65400000000000003},{"interface":"front","average":{"1min":0.89400000000000002,"5min":0.80500000000000005,"15min":0.77400000000000002},"min":{"1min":0.60199999999999998,"5min":0.49299999999999999,"15min":0.49299999999999999},"max":{"1min":1.2230000000000001,"5min":1.2669999999999999,"15min":1.2669999999999999},"last":0.84799999999999998}]},{"osd":2,"last update":"Sat Feb 10 08:03:10 2024","interfaces":[{"interface":"back","average":{"1min":1.0249999999999999,"5min":1.002,"15min":0.98199999999999998},"min":{"1min":0.69899999999999995,"5min":0.61199999999999999,"15min":0.61199999999999999},"max":{"1min":1.3200000000000001,"5min":1.4350000000000001,"15min":1.4350000000000001},"last":1.0189999999999999},{"interface":"front","average":{"1min":0.873,"5min":0.90900000000000003,"15min":0.92500000000000004},"min":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.155,"5min":1.2829999999999999,"15min":1.2829999999999999},"last":1.0800000000000001}]},{"osd":4,"last update":"Sat Feb 10 08:03:10 2024","interfaces":[{"interface":"back","average":{"1min":1.01,"5min":1.0009999999999999,"15min":1.004},"min":{"1min":0.745,"5min":0.72899999999999998,"15min":0.72899999999999998},"max":{"1min":1.23,"5min":1.264,"15min":1.264},"last":1.0389999999999999},{"interface":"front","average":{"1min":1.127,"5min":1.0800000000000001,"15min":1.071},"min":{"1min":0.80000000000000004,"5min":0.59099999999999997,"15min":0.59099999999999997},"max":{"1min":1.429,"5min":1.55,"15min":1.55},"last":1.2909999999999999}]},{"osd":5,"last update":"Sat Feb 10 08:03:15 2024","interfaces":[{"interface":"back","average":{"1min":0.92900000000000005,"5min":0.93400000000000005,"15min":0.94299999999999995},"min":{"1min":0.75600000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"max":{"1min":1.133,"5min":1.341,"15min":1.341},"last":1.214},{"interface":"front","average":{"1min":1.0660000000000001,"5min":1.069,"15min":1.0649999999999999},"min":{"1min":0.79500000000000004,"5min":0.69099999999999995,"15min":0.69099999999999995},"max":{"1min":1.4650000000000001,"5min":1.605,"15min":1.605},"last":1.1839999999999999}]},{"osd":6,"last update":"Sat Feb 10 08:03:10 2024","interfaces":[{"interface":"back","average":{"1min":1.0189999999999999,"5min":1.0149999999999999,"15min":1.0189999999999999},"min":{"1min":0.629,"5min":0.629,"15min":0.629},"max":{"1min":1.3460000000000001,"5min":1.51,"15min":1.51},"last":0.97399999999999998},{"interface":"front","average":{"1min":1.101,"5min":1.1259999999999999,"15min":1.1379999999999999},"min":{"1min":0.86699999999999999,"5min":0.76800000000000002,"15min":0.76800000000000002},"max":{"1min":1.3029999999999999,"5min":1.542,"15min":1.542},"last":0.94199999999999995}]},{"osd":7,"last update":"Sat Feb 10 08:03:20 2024","interfaces":[{"interface":"back","average":{"1min":1.216,"5min":1.1870000000000001,"15min":1.1779999999999999},"min":{"1min":0.79400000000000004,"5min":0.69499999999999995,"15min":0.69499999999999995},"max":{"1min":1.6120000000000001,"5min":1.6499999999999999,"15min":1.6499999999999999},"last":1.238},{"interface":"front","average":{"1min":1.1459999999999999,"5min":1.125,"15min":1.1359999999999999},"min":{"1min":0.86699999999999999,"5min":0.55400000000000005,"15min":0.55400000000000005},"max":{"1min":1.417,"5min":1.585,"15min":1.585},"last":1.1499999999999999}]}]}],"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-10T08:03:44.371 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph pg dump --format=json 2024-02-10T08:03:44.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:44 smithi123 bash[18776]: cluster 2024-02-10T08:03:43.556219+0000 mgr.smithi007.lzuqsb (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-10T08:03:44.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:44 smithi123 bash[18776]: audit 2024-02-10T08:03:43.625955+0000 mgr.smithi007.lzuqsb (mgr.14180) 238 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-10T08:03:44.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:44 smithi007 bash[14094]: cluster 2024-02-10T08:03:43.556219+0000 mgr.smithi007.lzuqsb (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-10T08:03:44.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:44 smithi007 bash[14094]: audit 2024-02-10T08:03:43.625955+0000 mgr.smithi007.lzuqsb (mgr.14180) 238 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-10T08:03:46.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:46 smithi123 bash[18776]: cluster 2024-02-10T08:03:45.556859+0000 mgr.smithi007.lzuqsb (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-10T08:03:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:46 smithi007 bash[14094]: cluster 2024-02-10T08:03:45.556859+0000 mgr.smithi007.lzuqsb (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-10T08:03:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:48 smithi123 bash[18776]: cluster 2024-02-10T08:03:47.557405+0000 mgr.smithi007.lzuqsb (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-10T08:03:48.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:48 smithi007 bash[14094]: cluster 2024-02-10T08:03:47.557405+0000 mgr.smithi007.lzuqsb (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-10T08:03:49.164 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:03:50.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:50 smithi007 bash[14094]: cluster 2024-02-10T08:03:49.557799+0000 mgr.smithi007.lzuqsb (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-10T08:03:50.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:50 smithi123 bash[18776]: cluster 2024-02-10T08:03:49.557799+0000 mgr.smithi007.lzuqsb (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-10T08:03:52.158 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:03:52.160 INFO:teuthology.orchestra.run.smithi007.stderr:dumped all 2024-02-10T08:03:52.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:52 smithi007 bash[14094]: cluster 2024-02-10T08:03:51.558299+0000 mgr.smithi007.lzuqsb (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-10T08:03:52.840 INFO:teuthology.orchestra.run.smithi007.stdout:{"pg_ready":true,"pg_map":{"version":227,"stamp":"2024-02-10T08:03:51.558030+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":2380220,"kb_used_data":3452,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548228,"statfs":{"total":767926730752,"available":765489385472,"internally_reserved":0,"allocated":3534848,"data_stored":1378597,"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":44,"state":"active+clean","last_fresh":"2024-02-10T08:00:20.782226+0000","last_change":"2024-02-10T08:00:20.782226+0000","last_active":"2024-02-10T08:00:20.782226+0000","last_peered":"2024-02-10T08:00:20.782226+0000","last_clean":"2024-02-10T08:00:20.782226+0000","last_became_active":"2024-02-10T08:00:20.781733+0000","last_became_peered":"2024-02-10T08:00:20.781733+0000","last_unstale":"2024-02-10T08:00:20.782226+0000","last_undegraded":"2024-02-10T08:00:20.782226+0000","last_fullsized":"2024-02-10T08:00:20.782226+0000","mapping_epoch":43,"log_start":"0'0","ondisk_log_start":"0'0","created":25,"last_epoch_clean":44,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-10T07:59:53.758227+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-10T07:59:53.758227+0000","last_clean_scrub_stamp":"2024-02-10T07:59:53.758227+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":42,"seq":180388626476,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":0.84099999999999997,"5min":0.83699999999999997,"15min":0.83899999999999997},"min":{"1min":0.60999999999999999,"5min":0.56899999999999995,"15min":0.56899999999999995},"max":{"1min":1.0509999999999999,"5min":1.123,"15min":1.123},"last":0.95699999999999996},{"interface":"front","average":{"1min":0.94599999999999995,"5min":0.92000000000000004,"15min":0.91200000000000003},"min":{"1min":0.623,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.458,"5min":1.458,"15min":1.458},"last":0.80800000000000005}]},{"osd":1,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":0.79600000000000004,"5min":0.79900000000000004,"15min":0.79900000000000004},"min":{"1min":0.56599999999999995,"5min":0.53100000000000003,"15min":0.53100000000000003},"max":{"1min":1.087,"5min":1.3700000000000001,"15min":1.3700000000000001},"last":0.755},{"interface":"front","average":{"1min":0.88800000000000001,"5min":0.87,"15min":0.86699999999999999},"min":{"1min":0.58099999999999996,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.1859999999999999,"5min":1.228,"15min":1.228},"last":0.91200000000000003}]},{"osd":2,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":0.85799999999999998,"5min":0.88100000000000001,"15min":0.871},"min":{"1min":0.66200000000000003,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.157,"5min":1.248,"15min":1.248},"last":0.82899999999999996},{"interface":"front","average":{"1min":0.93200000000000005,"5min":0.90400000000000003,"15min":0.88600000000000001},"min":{"1min":0.70499999999999996,"5min":0.68899999999999995,"15min":0.68899999999999995},"max":{"1min":1.2190000000000001,"5min":1.2330000000000001,"15min":1.2330000000000001},"last":0.873}]},{"osd":3,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":0.93500000000000005,"5min":0.91500000000000004,"15min":0.90100000000000002},"min":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"max":{"1min":1.6579999999999999,"5min":1.6579999999999999,"15min":1.6579999999999999},"last":1.147},{"interface":"front","average":{"1min":0.98999999999999999,"5min":0.93999999999999995,"15min":0.92600000000000005},"min":{"1min":0.53700000000000003,"5min":0.48199999999999998,"15min":0.48199999999999998},"max":{"1min":1.3,"5min":1.3799999999999999,"15min":1.3799999999999999},"last":1.194}]},{"osd":4,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":1.044,"5min":1.038,"15min":1.022},"min":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.585,"5min":1.585,"15min":1.585},"last":1.1140000000000001},{"interface":"front","average":{"1min":1.081,"5min":1.044,"15min":1.024},"min":{"1min":0.79200000000000004,"5min":0.69699999999999995,"15min":0.69699999999999995},"max":{"1min":1.599,"5min":1.599,"15min":1.599},"last":1.01}]},{"osd":5,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":1.0640000000000001,"5min":1.01,"15min":0.97599999999999998},"min":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.5,"5min":1.5,"15min":1.5},"last":1.101},{"interface":"front","average":{"1min":1.1559999999999999,"5min":1.0900000000000001,"15min":1.0660000000000001},"min":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.7410000000000001,"5min":1.7410000000000001,"15min":1.7410000000000001},"last":1.298}]},{"osd":6,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":1.236,"5min":1.177,"15min":1.1579999999999999},"min":{"1min":0.92000000000000004,"5min":0.86099999999999999,"15min":0.86099999999999999},"max":{"1min":1.9450000000000001,"5min":1.9450000000000001,"15min":1.9450000000000001},"last":1.2509999999999999},{"interface":"front","average":{"1min":1.1919999999999999,"5min":1.1299999999999999,"15min":1.1000000000000001},"min":{"1min":0.84799999999999998,"5min":0.71999999999999997,"15min":0.71999999999999997},"max":{"1min":1.5269999999999999,"5min":1.6359999999999999,"15min":1.6359999999999999},"last":1.3759999999999999}]}]},{"osd":5,"up_from":38,"seq":163208757294,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":0.86499999999999999,"5min":0.89100000000000001,"15min":0.90000000000000002},"min":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"max":{"1min":1.224,"5min":1.4470000000000001,"15min":1.4470000000000001},"last":0.96599999999999997},{"interface":"front","average":{"1min":0.871,"5min":0.88300000000000001,"15min":0.86799999999999999},"min":{"1min":0.60199999999999998,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.1060000000000001,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":0.85099999999999998}]},{"osd":1,"last update":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":0.77100000000000002,"5min":0.79400000000000004,"15min":0.80400000000000005},"min":{"1min":0.61499999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"max":{"1min":1.0289999999999999,"5min":1.4690000000000001,"15min":1.4690000000000001},"last":0.93200000000000005},{"interface":"front","average":{"1min":0.85199999999999998,"5min":0.83599999999999997,"15min":0.82799999999999996},"min":{"1min":0.438,"5min":0.438,"15min":0.438},"max":{"1min":1.2729999999999999,"5min":1.2729999999999999,"15min":1.2729999999999999},"last":0.75900000000000001}]},{"osd":2,"last update":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":1.006,"5min":1.012,"15min":1.0049999999999999},"min":{"1min":0.57499999999999996,"5min":0.57499999999999996,"15min":0.57499999999999996},"max":{"1min":1.335,"5min":1.395,"15min":1.395},"last":1.077},{"interface":"front","average":{"1min":0.98999999999999999,"5min":0.94699999999999995,"15min":0.92800000000000005},"min":{"1min":0.72599999999999998,"5min":0.625,"15min":0.625},"max":{"1min":1.1739999999999999,"5min":1.371,"15min":1.371},"last":1.1180000000000001}]},{"osd":3,"last update":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":0.84399999999999997,"5min":0.84399999999999997,"15min":0.83899999999999997},"min":{"1min":0.502,"5min":0.502,"15min":0.502},"max":{"1min":1.28,"5min":1.28,"15min":1.28},"last":1.012},{"interface":"front","average":{"1min":0.92700000000000005,"5min":0.90400000000000003,"15min":0.90700000000000003},"min":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"max":{"1min":1.4119999999999999,"5min":1.5449999999999999,"15min":1.5449999999999999},"last":0.80500000000000005}]},{"osd":4,"last update":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":1.081,"5min":1.0389999999999999,"15min":1.0349999999999999},"min":{"1min":0.874,"5min":0.73299999999999998,"15min":0.73299999999999998},"max":{"1min":1.9279999999999999,"5min":1.9279999999999999,"15min":1.9279999999999999},"last":1.05},{"interface":"front","average":{"1min":1.155,"5min":1.099,"15min":1.091},"min":{"1min":0.72099999999999997,"5min":0.58199999999999996,"15min":0.58199999999999996},"max":{"1min":1.954,"5min":1.954,"15min":1.954},"last":1.149}]},{"osd":6,"last update":"Sat Feb 10 08:03:17 2024","interfaces":[{"interface":"back","average":{"1min":1.1499999999999999,"5min":1.105,"15min":1.095},"min":{"1min":0.98699999999999999,"5min":0.79000000000000004,"15min":0.79000000000000004},"max":{"1min":1.417,"5min":1.6359999999999999,"15min":1.6359999999999999},"last":1.2709999999999999},{"interface":"front","average":{"1min":1.163,"5min":1.1240000000000001,"15min":1.121},"min":{"1min":1.0089999999999999,"5min":0.76900000000000002,"15min":0.76900000000000002},"max":{"1min":1.3859999999999999,"5min":1.706,"15min":1.706},"last":1.1819999999999999}]},{"osd":7,"last update":"Sat Feb 10 08:03:22 2024","interfaces":[{"interface":"back","average":{"1min":1.1879999999999999,"5min":1.151,"15min":1.151},"min":{"1min":0.79400000000000004,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.6639999999999999,"5min":1.6639999999999999,"15min":1.6639999999999999},"last":1.2170000000000001},{"interface":"front","average":{"1min":1.2010000000000001,"5min":1.169,"15min":1.157},"min":{"1min":0.92600000000000005,"5min":0.63,"15min":0.63},"max":{"1min":1.522,"5min":1.522,"15min":1.522},"last":1.4019999999999999}]}]},{"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":297524,"kb_used_data":428,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443532,"statfs":{"total":95990841344,"available":95686176768,"internally_reserved":0,"allocated":438272,"data_stored":172049,"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":"Sat Feb 10 08:02:53 2024","interfaces":[{"interface":"back","average":{"1min":0.73699999999999999,"5min":0.68000000000000005,"15min":0.66800000000000004},"min":{"1min":0.55300000000000005,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":1.093,"5min":1.093,"15min":1.093},"last":0.69599999999999995},{"interface":"front","average":{"1min":0.73299999999999998,"5min":0.73599999999999999,"15min":0.73199999999999998},"min":{"1min":0.55500000000000005,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":1.1359999999999999,"5min":1.256,"15min":1.256},"last":0.77000000000000002}]},{"osd":1,"last update":"Sat Feb 10 08:02:59 2024","interfaces":[{"interface":"back","average":{"1min":0.96599999999999997,"5min":0.95899999999999996,"15min":0.95299999999999996},"min":{"1min":0.628,"5min":0.60299999999999998,"15min":0.60299999999999998},"max":{"1min":1.1830000000000001,"5min":1.276,"15min":1.276},"last":0.81000000000000005},{"interface":"front","average":{"1min":0.92000000000000004,"5min":0.83199999999999996,"15min":0.81699999999999995},"min":{"1min":0.65200000000000002,"5min":0.50900000000000001,"15min":0.50900000000000001},"max":{"1min":1.1579999999999999,"5min":1.1579999999999999,"15min":1.1579999999999999},"last":1.157}]},{"osd":3,"last update":"Sat Feb 10 08:03:06 2024","interfaces":[{"interface":"back","average":{"1min":0.95199999999999996,"5min":0.92300000000000004,"15min":0.90300000000000002},"min":{"1min":0.73399999999999999,"5min":0.65900000000000003,"15min":0.65900000000000003},"max":{"1min":1.165,"5min":1.3049999999999999,"15min":1.3049999999999999},"last":0.90300000000000002},{"interface":"front","average":{"1min":0.91300000000000003,"5min":0.89000000000000001,"15min":0.88100000000000001},"min":{"1min":0.68700000000000006,"5min":0.61499999999999999,"15min":0.61499999999999999},"max":{"1min":1.23,"5min":1.23,"15min":1.23},"last":1.0429999999999999}]},{"osd":4,"last update":"Sat Feb 10 08:02:59 2024","interfaces":[{"interface":"back","average":{"1min":0.84599999999999997,"5min":0.81999999999999995,"15min":0.81100000000000005},"min":{"1min":0.63400000000000001,"5min":0.434,"15min":0.434},"max":{"1min":1.0600000000000001,"5min":1.264,"15min":1.264},"last":1.0049999999999999},{"interface":"front","average":{"1min":0.96199999999999997,"5min":0.91200000000000003,"15min":0.88800000000000001},"min":{"1min":0.66600000000000004,"5min":0.495,"15min":0.495},"max":{"1min":1.135,"5min":1.3620000000000001,"15min":1.3620000000000001},"last":1.206}]},{"osd":5,"last update":"Sat Feb 10 08:03:23 2024","interfaces":[{"interface":"back","average":{"1min":0.997,"5min":0.97599999999999998,"15min":0.97099999999999997},"min":{"1min":0.753,"5min":0.627,"15min":0.627},"max":{"1min":1.238,"5min":1.4330000000000001,"15min":1.4330000000000001},"last":1.091},{"interface":"front","average":{"1min":1.131,"5min":1.079,"15min":1.0640000000000001},"min":{"1min":0.94299999999999995,"5min":0.68400000000000005,"15min":0.68400000000000005},"max":{"1min":1.5920000000000001,"5min":1.5920000000000001,"15min":1.5920000000000001},"last":0.97799999999999998}]},{"osd":6,"last update":"Sat Feb 10 08:02:59 2024","interfaces":[{"interface":"back","average":{"1min":1.0509999999999999,"5min":0.95599999999999996,"15min":0.91800000000000004},"min":{"1min":0.85699999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.3080000000000001,"5min":1.3080000000000001,"15min":1.3080000000000001},"last":0.876},{"interface":"front","average":{"1min":1.101,"5min":1.0409999999999999,"15min":1.0209999999999999},"min":{"1min":0.85999999999999999,"5min":0.63900000000000001,"15min":0.63900000000000001},"max":{"1min":1.2509999999999999,"5min":1.466,"15min":1.466},"last":1.123}]},{"osd":7,"last update":"Sat Feb 10 08:03:29 2024","interfaces":[{"interface":"back","average":{"1min":1.1379999999999999,"5min":1.028,"15min":1.008},"min":{"1min":0.96699999999999997,"5min":0.66300000000000003,"15min":0.66300000000000003},"max":{"1min":1.605,"5min":1.605,"15min":1.605},"last":0.95399999999999996},{"interface":"front","average":{"1min":1.1850000000000001,"5min":1.103,"15min":1.081},"min":{"1min":0.998,"5min":0.745,"15min":0.745},"max":{"1min":1.53,"5min":1.53,"15min":1.53},"last":1.1819999999999999}]}]},{"osd":0,"up_from":16,"seq":68719476789,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.85399999999999998,"5min":0.82099999999999995,"15min":0.79700000000000004},"min":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"max":{"1min":1.232,"5min":1.232,"15min":1.232},"last":0.88500000000000001},{"interface":"front","average":{"1min":0.88600000000000001,"5min":0.89200000000000002,"15min":0.89000000000000001},"min":{"1min":0.57999999999999996,"5min":0.57899999999999996,"15min":0.57899999999999996},"max":{"1min":1.1000000000000001,"5min":1.6120000000000001,"15min":1.6120000000000001},"last":0.66900000000000004}]},{"osd":2,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.77300000000000002,"5min":0.75600000000000001,"15min":0.73799999999999999},"min":{"1min":0.58499999999999996,"5min":0.40400000000000003,"15min":0.40400000000000003},"max":{"1min":1.0109999999999999,"5min":1.1100000000000001,"15min":1.1100000000000001},"last":0.70799999999999996},{"interface":"front","average":{"1min":0.83299999999999996,"5min":0.81299999999999994,"15min":0.81399999999999995},"min":{"1min":0.58899999999999997,"5min":0.32400000000000001,"15min":0.32400000000000001},"max":{"1min":1.2869999999999999,"5min":1.2869999999999999,"15min":1.2869999999999999},"last":0.78900000000000003}]},{"osd":3,"last update":"Sat Feb 10 08:03:08 2024","interfaces":[{"interface":"back","average":{"1min":0.99399999999999999,"5min":0.90800000000000003,"15min":0.876},"min":{"1min":0.76600000000000001,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":1.1879999999999999,"5min":1.228,"15min":1.228},"last":0.98599999999999999},{"interface":"front","average":{"1min":0.88900000000000001,"5min":0.92500000000000004,"15min":0.92500000000000004},"min":{"1min":0.69499999999999995,"5min":0.63800000000000001,"15min":0.63800000000000001},"max":{"1min":1.1899999999999999,"5min":1.2709999999999999,"15min":1.2709999999999999},"last":0.81699999999999995}]},{"osd":4,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.90500000000000003,"5min":0.94099999999999995,"15min":0.95799999999999996},"min":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"max":{"1min":1.246,"5min":1.26,"15min":1.26},"last":1.1200000000000001},{"interface":"front","average":{"1min":0.94699999999999995,"5min":0.91200000000000003,"15min":0.89700000000000002},"min":{"1min":0.623,"5min":0.46100000000000002,"15min":0.46100000000000002},"max":{"1min":1.3280000000000001,"5min":1.3300000000000001,"15min":1.3300000000000001},"last":0.90500000000000003}]},{"osd":5,"last update":"Sat Feb 10 08:03:18 2024","interfaces":[{"interface":"back","average":{"1min":0.90900000000000003,"5min":0.93899999999999995,"15min":0.94099999999999995},"min":{"1min":0.78600000000000003,"5min":0.622,"15min":0.622},"max":{"1min":1.0840000000000001,"5min":1.204,"15min":1.204},"last":1.006},{"interface":"front","average":{"1min":1.109,"5min":1.0620000000000001,"15min":1.052},"min":{"1min":0.753,"5min":0.73199999999999998,"15min":0.73199999999999998},"max":{"1min":1.3540000000000001,"5min":1.446,"15min":1.446},"last":1.296}]},{"osd":6,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":1.0529999999999999,"5min":1.056,"15min":1.0640000000000001},"min":{"1min":0.82799999999999996,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.357,"5min":1.8089999999999999,"15min":1.8089999999999999},"last":0.95399999999999996},{"interface":"front","average":{"1min":0.97399999999999998,"5min":1.006,"15min":1.016},"min":{"1min":0.70299999999999996,"5min":0.44900000000000001,"15min":0.44900000000000001},"max":{"1min":1.22,"5min":1.3340000000000001,"15min":1.3340000000000001},"last":0.85299999999999998}]},{"osd":7,"last update":"Sat Feb 10 08:03:26 2024","interfaces":[{"interface":"back","average":{"1min":1.145,"5min":1.117,"15min":1.109},"min":{"1min":0.95799999999999996,"5min":0.80800000000000005,"15min":0.80800000000000005},"max":{"1min":1.5549999999999999,"5min":1.5549999999999999,"15min":1.5549999999999999},"last":1.0289999999999999},{"interface":"front","average":{"1min":1.0700000000000001,"5min":1.085,"15min":1.083},"min":{"1min":0.76200000000000001,"5min":0.63100000000000001,"15min":0.63100000000000001},"max":{"1min":1.2050000000000001,"5min":1.4830000000000001,"15min":1.4830000000000001},"last":0.93700000000000006}]}]},{"osd":4,"up_from":24,"seq":103079215155,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:01 2024","interfaces":[{"interface":"back","average":{"1min":0.66500000000000004,"5min":0.65300000000000002,"15min":0.64500000000000002},"min":{"1min":0.49199999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":0.96699999999999997,"5min":0.96699999999999997,"15min":0.96699999999999997},"last":0.71299999999999997},{"interface":"front","average":{"1min":0.78800000000000003,"5min":0.751,"15min":0.74099999999999999},"min":{"1min":0.57799999999999996,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.1220000000000001,"5min":1.1220000000000001,"15min":1.1220000000000001},"last":1.0449999999999999}]},{"osd":1,"last update":"Sat Feb 10 08:03:04 2024","interfaces":[{"interface":"back","average":{"1min":0.91900000000000004,"5min":0.877,"15min":0.85999999999999999},"min":{"1min":0.77600000000000002,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.101,"5min":1.101,"15min":1.101},"last":1.0700000000000001},{"interface":"front","average":{"1min":0.84799999999999998,"5min":0.879,"15min":0.874},"min":{"1min":0.72199999999999998,"5min":0.64400000000000002,"15min":0.64400000000000002},"max":{"1min":1.2330000000000001,"5min":1.2330000000000001,"15min":1.2330000000000001},"last":0.76000000000000001}]},{"osd":2,"last update":"Sat Feb 10 08:03:01 2024","interfaces":[{"interface":"back","average":{"1min":0.81200000000000006,"5min":0.73599999999999999,"15min":0.71399999999999997},"min":{"1min":0.58499999999999996,"5min":0.50800000000000001,"15min":0.50800000000000001},"max":{"1min":1.018,"5min":1.018,"15min":1.018},"last":1.1220000000000001},{"interface":"front","average":{"1min":0.95099999999999996,"5min":0.89500000000000002,"15min":0.871},"min":{"1min":0.629,"5min":0.57299999999999995,"15min":0.57299999999999995},"max":{"1min":1.1839999999999999,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":1.1639999999999999}]},{"osd":3,"last update":"Sat Feb 10 08:03:13 2024","interfaces":[{"interface":"back","average":{"1min":0.96999999999999997,"5min":0.91400000000000003,"15min":0.89900000000000002},"min":{"1min":0.80800000000000005,"5min":0.67200000000000004,"15min":0.67200000000000004},"max":{"1min":1.159,"5min":1.1990000000000001,"15min":1.1990000000000001},"last":1.194},{"interface":"front","average":{"1min":0.96899999999999997,"5min":0.97599999999999998,"15min":0.96999999999999997},"min":{"1min":0.75,"5min":0.75,"15min":0.75},"max":{"1min":1.3109999999999999,"5min":1.3109999999999999,"15min":1.3109999999999999},"last":1.0900000000000001}]},{"osd":5,"last update":"Sat Feb 10 08:03:20 2024","interfaces":[{"interface":"back","average":{"1min":0.96499999999999997,"5min":0.97599999999999998,"15min":0.995},"min":{"1min":0.73999999999999999,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.4590000000000001,"5min":1.4590000000000001,"15min":1.4590000000000001},"last":0.89800000000000002},{"interface":"front","average":{"1min":1.0149999999999999,"5min":1.022,"15min":1.0289999999999999},"min":{"1min":0.69599999999999995,"5min":0.69599999999999995,"15min":0.69599999999999995},"max":{"1min":1.3540000000000001,"5min":1.3540000000000001,"15min":1.3540000000000001},"last":0.91500000000000004}]},{"osd":6,"last update":"Sat Feb 10 08:03:04 2024","interfaces":[{"interface":"back","average":{"1min":0.98899999999999999,"5min":0.96699999999999997,"15min":0.95499999999999996},"min":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.431,"5min":1.431,"15min":1.431},"last":0.95699999999999996},{"interface":"front","average":{"1min":1.0169999999999999,"5min":1.0049999999999999,"15min":1.0049999999999999},"min":{"1min":0.65000000000000002,"5min":0.65000000000000002,"15min":0.65000000000000002},"max":{"1min":1.258,"5min":1.258,"15min":1.258},"last":0.97499999999999998}]},{"osd":7,"last update":"Sat Feb 10 08:03:20 2024","interfaces":[{"interface":"back","average":{"1min":1.0960000000000001,"5min":1.107,"15min":1.1120000000000001},"min":{"1min":0.90800000000000003,"5min":0.80100000000000005,"15min":0.80100000000000005},"max":{"1min":1.51,"5min":1.51,"15min":1.51},"last":1.034},{"interface":"front","average":{"1min":1.1539999999999999,"5min":1.121,"15min":1.1240000000000001},"min":{"1min":0.96899999999999997,"5min":0.93799999999999994,"15min":0.93799999999999994},"max":{"1min":1.6699999999999999,"5min":1.6699999999999999,"15min":1.6699999999999999},"last":1.145}]}]},{"osd":1,"up_from":27,"seq":115964117042,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:09 2024","interfaces":[{"interface":"back","average":{"1min":0.84599999999999997,"5min":0.85799999999999998,"15min":0.85899999999999999},"min":{"1min":0.57199999999999995,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.0629999999999999,"5min":1.2529999999999999,"15min":1.2529999999999999},"last":1.0589999999999999},{"interface":"front","average":{"1min":0.88300000000000001,"5min":0.89500000000000002,"15min":0.89100000000000001},"min":{"1min":0.61899999999999999,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.1899999999999999,"5min":1.2030000000000001,"15min":1.2030000000000001},"last":0.68100000000000005}]},{"osd":2,"last update":"Sat Feb 10 08:03:09 2024","interfaces":[{"interface":"back","average":{"1min":0.86499999999999999,"5min":0.86499999999999999,"15min":0.84899999999999998},"min":{"1min":0.58699999999999997,"5min":0.52600000000000002,"15min":0.52600000000000002},"max":{"1min":1.079,"5min":1.1759999999999999,"15min":1.1759999999999999},"last":0.92200000000000004},{"interface":"front","average":{"1min":0.85699999999999998,"5min":0.86699999999999999,"15min":0.877},"min":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.1459999999999999,"5min":1.298,"15min":1.298},"last":0.96399999999999997}]},{"osd":3,"last update":"Sat Feb 10 08:03:09 2024","interfaces":[{"interface":"back","average":{"1min":0.78700000000000003,"5min":0.79900000000000004,"15min":0.79300000000000004},"min":{"1min":0.437,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":1.179,"5min":1.226,"15min":1.226},"last":0.57499999999999996},{"interface":"front","average":{"1min":0.80500000000000005,"5min":0.80000000000000004,"15min":0.78200000000000003},"min":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"max":{"1min":1.2430000000000001,"5min":1.4279999999999999,"15min":1.4279999999999999},"last":0.69399999999999995}]},{"osd":4,"last update":"Sat Feb 10 08:03:09 2024","interfaces":[{"interface":"back","average":{"1min":0.98399999999999999,"5min":0.99399999999999999,"15min":0.98899999999999999},"min":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"max":{"1min":1.228,"5min":1.3819999999999999,"15min":1.3819999999999999},"last":0.75},{"interface":"front","average":{"1min":0.98499999999999999,"5min":0.97099999999999997,"15min":0.95499999999999996},"min":{"1min":0.63600000000000001,"5min":0.626,"15min":0.626},"max":{"1min":1.25,"5min":1.4079999999999999,"15min":1.4079999999999999},"last":0.88200000000000001}]},{"osd":5,"last update":"Sat Feb 10 08:03:16 2024","interfaces":[{"interface":"back","average":{"1min":0.875,"5min":0.90300000000000002,"15min":0.89100000000000001},"min":{"1min":0.46899999999999997,"5min":0.46899999999999997,"15min":0.46899999999999997},"max":{"1min":1.2490000000000001,"5min":1.3400000000000001,"15min":1.3400000000000001},"last":0.84199999999999997},{"interface":"front","average":{"1min":1.103,"5min":1.107,"15min":1.089},"min":{"1min":0.66700000000000004,"5min":0.55900000000000005,"15min":0.55900000000000005},"max":{"1min":1.389,"5min":1.5069999999999999,"15min":1.5069999999999999},"last":0.77100000000000002}]},{"osd":6,"last update":"Sat Feb 10 08:03:09 2024","interfaces":[{"interface":"back","average":{"1min":1.129,"5min":1.091,"15min":1.0660000000000001},"min":{"1min":0.81000000000000005,"5min":0.629,"15min":0.629},"max":{"1min":1.5089999999999999,"5min":1.6519999999999999,"15min":1.6519999999999999},"last":0.72599999999999998},{"interface":"front","average":{"1min":1.0700000000000001,"5min":1.0609999999999999,"15min":1.046},"min":{"1min":0.63,"5min":0.63,"15min":0.63},"max":{"1min":1.3839999999999999,"5min":1.5429999999999999,"15min":1.5429999999999999},"last":0.94399999999999995}]},{"osd":7,"last update":"Sat Feb 10 08:03:23 2024","interfaces":[{"interface":"back","average":{"1min":1.048,"5min":1.0700000000000001,"15min":1.0509999999999999},"min":{"1min":0.39900000000000002,"5min":0.39900000000000002,"15min":0.39900000000000002},"max":{"1min":1.446,"5min":1.4710000000000001,"15min":1.4710000000000001},"last":0.999},{"interface":"front","average":{"1min":1.1060000000000001,"5min":1.081,"15min":1.0449999999999999},"min":{"1min":0.64800000000000002,"5min":0.58899999999999997,"15min":0.58899999999999997},"max":{"1min":1.4339999999999999,"5min":1.5980000000000001,"15min":1.5980000000000001},"last":0.81299999999999994}]}]},{"osd":6,"up_from":28,"seq":120259084337,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.68000000000000005,"5min":0.71099999999999997,"15min":0.72099999999999997},"min":{"1min":0.54600000000000004,"5min":0.34799999999999998,"15min":0.34799999999999998},"max":{"1min":0.97999999999999998,"5min":1.22,"15min":1.22},"last":0.57199999999999995},{"interface":"front","average":{"1min":0.80300000000000005,"5min":0.78100000000000003,"15min":0.77300000000000002},"min":{"1min":0.57199999999999995,"5min":0.52000000000000002,"15min":0.52000000000000002},"max":{"1min":1.1220000000000001,"5min":1.4299999999999999,"15min":1.4299999999999999},"last":0.68000000000000005}]},{"osd":1,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.77300000000000002,"5min":0.83099999999999996,"15min":0.84299999999999997},"min":{"1min":0.56599999999999995,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":0.92000000000000004,"5min":1.145,"15min":1.145},"last":0.70499999999999996},{"interface":"front","average":{"1min":0.89900000000000002,"5min":0.90200000000000002,"15min":0.91000000000000003},"min":{"1min":0.73599999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.081,"5min":1.3520000000000001,"15min":1.3520000000000001},"last":0.83699999999999997}]},{"osd":2,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.83999999999999997,"5min":0.81399999999999995,"15min":0.81200000000000006},"min":{"1min":0.628,"5min":0.56599999999999995,"15min":0.56599999999999995},"max":{"1min":1.165,"5min":1.165,"15min":1.165},"last":0.77100000000000002},{"interface":"front","average":{"1min":0.876,"5min":0.86399999999999999,"15min":0.85099999999999998},"min":{"1min":0.63700000000000001,"5min":0.57899999999999996,"15min":0.57899999999999996},"max":{"1min":1.1870000000000001,"5min":1.248,"15min":1.248},"last":0.54800000000000004}]},{"osd":3,"last update":"Sat Feb 10 08:03:06 2024","interfaces":[{"interface":"back","average":{"1min":0.98199999999999998,"5min":0.93500000000000005,"15min":0.91400000000000003},"min":{"1min":0.85999999999999999,"5min":0.67800000000000005,"15min":0.67800000000000005},"max":{"1min":1.1739999999999999,"5min":1.2430000000000001,"15min":1.2430000000000001},"last":0.99199999999999999},{"interface":"front","average":{"1min":0.99199999999999999,"5min":0.96899999999999997,"15min":0.96199999999999997},"min":{"1min":0.76000000000000001,"5min":0.67700000000000005,"15min":0.67700000000000005},"max":{"1min":1.391,"5min":1.391,"15min":1.391},"last":0.90000000000000002}]},{"osd":4,"last update":"Sat Feb 10 08:03:02 2024","interfaces":[{"interface":"back","average":{"1min":0.93300000000000005,"5min":0.92100000000000004,"15min":0.91300000000000003},"min":{"1min":0.752,"5min":0.60299999999999998,"15min":0.60299999999999998},"max":{"1min":1.214,"5min":1.4970000000000001,"15min":1.4970000000000001},"last":1.121},{"interface":"front","average":{"1min":0.91800000000000004,"5min":0.91400000000000003,"15min":0.91000000000000003},"min":{"1min":0.69399999999999995,"5min":0.47799999999999998,"15min":0.47799999999999998},"max":{"1min":1.2589999999999999,"5min":1.403,"15min":1.403},"last":0.65200000000000002}]},{"osd":5,"last update":"Sat Feb 10 08:03:16 2024","interfaces":[{"interface":"back","average":{"1min":0.98799999999999999,"5min":1.004,"15min":1.0009999999999999},"min":{"1min":0.755,"5min":0.754,"15min":0.754},"max":{"1min":1.329,"5min":1.329,"15min":1.329},"last":0.79300000000000004},{"interface":"front","average":{"1min":1.0920000000000001,"5min":1.1000000000000001,"15min":1.1040000000000001},"min":{"1min":0.82199999999999995,"5min":0.59299999999999997,"15min":0.59299999999999997},"max":{"1min":1.3100000000000001,"5min":1.5389999999999999,"15min":1.5389999999999999},"last":0.91900000000000004}]},{"osd":7,"last update":"Sat Feb 10 08:03:21 2024","interfaces":[{"interface":"back","average":{"1min":1.105,"5min":1.121,"15min":1.119},"min":{"1min":0.91200000000000003,"5min":0.747,"15min":0.747},"max":{"1min":1.29,"5min":1.639,"15min":1.639},"last":1.0169999999999999},{"interface":"front","average":{"1min":1.1020000000000001,"5min":1.1140000000000001,"15min":1.1140000000000001},"min":{"1min":0.83299999999999996,"5min":0.78200000000000003,"15min":0.78200000000000003},"max":{"1min":1.2509999999999999,"5min":1.7270000000000001,"15min":1.7270000000000001},"last":1.038}]}]},{"osd":3,"up_from":34,"seq":146028888113,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297528,"kb_used_data":432,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443528,"statfs":{"total":95990841344,"available":95686172672,"internally_reserved":0,"allocated":442368,"data_stored":172364,"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":"Sat Feb 10 08:03:10 2024","interfaces":[{"interface":"back","average":{"1min":1.004,"5min":0.93300000000000005,"15min":0.91500000000000004},"min":{"1min":0.71699999999999997,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.331,"5min":1.3400000000000001,"15min":1.3400000000000001},"last":0.84199999999999997},{"interface":"front","average":{"1min":0.86799999999999999,"5min":0.92500000000000004,"15min":0.94799999999999995},"min":{"1min":0.69299999999999995,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.048,"5min":3.6909999999999998,"15min":3.6909999999999998},"last":0.876}]},{"osd":1,"last update":"Sat Feb 10 08:03:10 2024","interfaces":[{"interface":"back","average":{"1min":0.753,"5min":0.73899999999999999,"15min":0.72099999999999997},"min":{"1min":0.54100000000000004,"5min":0.50700000000000001,"15min":0.50700000000000001},"max":{"1min":1.2470000000000001,"5min":1.351,"15min":1.351},"last":0.81999999999999995},{"interface":"front","average":{"1min":0.89400000000000002,"5min":0.80500000000000005,"15min":0.77400000000000002},"min":{"1min":0.60199999999999998,"5min":0.49299999999999999,"15min":0.49299999999999999},"max":{"1min":1.2230000000000001,"5min":1.2669999999999999,"15min":1.2669999999999999},"last":0.98799999999999999}]},{"osd":2,"last update":"Sat Feb 10 08:03:10 2024","interfaces":[{"interface":"back","average":{"1min":1.0249999999999999,"5min":1.002,"15min":0.98199999999999998},"min":{"1min":0.69899999999999995,"5min":0.61199999999999999,"15min":0.61199999999999999},"max":{"1min":1.3200000000000001,"5min":1.4350000000000001,"15min":1.4350000000000001},"last":0.92800000000000005},{"interface":"front","average":{"1min":0.873,"5min":0.90900000000000003,"15min":0.92500000000000004},"min":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.155,"5min":1.2829999999999999,"15min":1.2829999999999999},"last":1.133}]},{"osd":4,"last update":"Sat Feb 10 08:03:10 2024","interfaces":[{"interface":"back","average":{"1min":1.01,"5min":1.0009999999999999,"15min":1.004},"min":{"1min":0.745,"5min":0.72899999999999998,"15min":0.72899999999999998},"max":{"1min":1.23,"5min":1.264,"15min":1.264},"last":1.216},{"interface":"front","average":{"1min":1.127,"5min":1.0800000000000001,"15min":1.071},"min":{"1min":0.80000000000000004,"5min":0.59099999999999997,"15min":0.59099999999999997},"max":{"1min":1.429,"5min":1.55,"15min":1.55},"last":1.0740000000000001}]},{"osd":5,"last update":"Sat Feb 10 08:03:15 2024","interfaces":[{"interface":"back","average":{"1min":0.92900000000000005,"5min":0.93400000000000005,"15min":0.94299999999999995},"min":{"1min":0.75600000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"max":{"1min":1.133,"5min":1.341,"15min":1.341},"last":1.1100000000000001},{"interface":"front","average":{"1min":1.0660000000000001,"5min":1.069,"15min":1.0649999999999999},"min":{"1min":0.79500000000000004,"5min":0.69099999999999995,"15min":0.69099999999999995},"max":{"1min":1.4650000000000001,"5min":1.605,"15min":1.605},"last":1.1579999999999999}]},{"osd":6,"last update":"Sat Feb 10 08:03:10 2024","interfaces":[{"interface":"back","average":{"1min":1.0189999999999999,"5min":1.0149999999999999,"15min":1.0189999999999999},"min":{"1min":0.629,"5min":0.629,"15min":0.629},"max":{"1min":1.3460000000000001,"5min":1.51,"15min":1.51},"last":0.94699999999999995},{"interface":"front","average":{"1min":1.101,"5min":1.1259999999999999,"15min":1.1379999999999999},"min":{"1min":0.86699999999999999,"5min":0.76800000000000002,"15min":0.76800000000000002},"max":{"1min":1.3029999999999999,"5min":1.542,"15min":1.542},"last":1.2809999999999999}]},{"osd":7,"last update":"Sat Feb 10 08:03:20 2024","interfaces":[{"interface":"back","average":{"1min":1.216,"5min":1.1870000000000001,"15min":1.1779999999999999},"min":{"1min":0.79400000000000004,"5min":0.69499999999999995,"15min":0.69499999999999995},"max":{"1min":1.6120000000000001,"5min":1.6499999999999999,"15min":1.6499999999999999},"last":1.254},{"interface":"front","average":{"1min":1.1459999999999999,"5min":1.125,"15min":1.1359999999999999},"min":{"1min":0.86699999999999999,"5min":0.55400000000000005,"15min":0.55400000000000005},"max":{"1min":1.417,"5min":1.585,"15min":1.585},"last":1.3280000000000001}]}]}],"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-10T08:03:52.842 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-02-10T08:03:52.842 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-02-10T08:03:52.842 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-02-10T08:03:52.842 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph health --format=json 2024-02-10T08:03:52.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:52 smithi123 bash[18776]: cluster 2024-02-10T08:03:51.558299+0000 mgr.smithi007.lzuqsb (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-10T08:03:53.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:53 smithi123 bash[18776]: audit 2024-02-10T08:03:52.149988+0000 mgr.smithi007.lzuqsb (mgr.14180) 243 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-10T08:03:53.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:53 smithi007 bash[14094]: audit 2024-02-10T08:03:52.149988+0000 mgr.smithi007.lzuqsb (mgr.14180) 243 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-10T08:03:54.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:54 smithi123 bash[18776]: cluster 2024-02-10T08:03:53.558694+0000 mgr.smithi007.lzuqsb (mgr.14180) 244 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:54.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:54 smithi007 bash[14094]: cluster 2024-02-10T08:03:53.558694+0000 mgr.smithi007.lzuqsb (mgr.14180) 244 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:56.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:56 smithi123 bash[18776]: cluster 2024-02-10T08:03:55.559234+0000 mgr.smithi007.lzuqsb (mgr.14180) 245 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:56.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:56 smithi007 bash[14094]: cluster 2024-02-10T08:03:55.559234+0000 mgr.smithi007.lzuqsb (mgr.14180) 245 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:03:57.637 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/mon.smithi007/config 2024-02-10T08:03:58.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:03:58 smithi007 bash[14094]: cluster 2024-02-10T08:03:57.559794+0000 mgr.smithi007.lzuqsb (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-10T08:03:58.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:03:58 smithi123 bash[18776]: cluster 2024-02-10T08:03:57.559794+0000 mgr.smithi007.lzuqsb (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-10T08:04:00.676 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:04:00.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:00 smithi123 bash[18776]: cluster 2024-02-10T08:03:59.560305+0000 mgr.smithi007.lzuqsb (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-10T08:04:00.915 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:00 smithi007 bash[14094]: cluster 2024-02-10T08:03:59.560305+0000 mgr.smithi007.lzuqsb (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-10T08:04:01.498 INFO:teuthology.orchestra.run.smithi007.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-02-10T08:04:01.498 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-02-10T08:04:01.498 INFO:tasks.cephadm:Setup complete, yielding 2024-02-10T08:04:01.499 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-10T08:04:01.513 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-02-10T08:04:01.514 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- bash -c 'ceph orch status' 2024-02-10T08:04:01.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:01 smithi123 bash[18776]: audit 2024-02-10T08:04:00.674791+0000 mon.smithi007 (mon.0) 632 : audit [DBG] from='client.? 172.21.15.7:0/302057934' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-10T08:04:01.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:01 smithi007 bash[14094]: audit 2024-02-10T08:04:00.674791+0000 mon.smithi007 (mon.0) 632 : audit [DBG] from='client.? 172.21.15.7:0/302057934' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-10T08:04:02.908 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:02 smithi007 bash[14094]: cluster 2024-02-10T08:04:01.560853+0000 mgr.smithi007.lzuqsb (mgr.14180) 248 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:02.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:02 smithi123 bash[18776]: cluster 2024-02-10T08:04:01.560853+0000 mgr.smithi007.lzuqsb (mgr.14180) 248 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:04.716 INFO:teuthology.orchestra.run.smithi007.stdout:Backend: cephadm 2024-02-10T08:04:04.716 INFO:teuthology.orchestra.run.smithi007.stdout:Available: Yes 2024-02-10T08:04:04.717 INFO:teuthology.orchestra.run.smithi007.stdout:Paused: No 2024-02-10T08:04:04.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:04 smithi123 bash[18776]: cluster 2024-02-10T08:04:03.561443+0000 mgr.smithi007.lzuqsb (mgr.14180) 249 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:04.990 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:04 smithi007 bash[14094]: cluster 2024-02-10T08:04:03.561443+0000 mgr.smithi007.lzuqsb (mgr.14180) 249 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:05.494 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- bash -c 'ceph orch ps' 2024-02-10T08:04:06.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:06 smithi123 bash[18776]: audit 2024-02-10T08:04:04.714250+0000 mgr.smithi007.lzuqsb (mgr.14180) 250 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:06.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:06 smithi123 bash[18776]: cluster 2024-02-10T08:04:05.562054+0000 mgr.smithi007.lzuqsb (mgr.14180) 251 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:06.932 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:06 smithi007 bash[14094]: audit 2024-02-10T08:04:04.714250+0000 mgr.smithi007.lzuqsb (mgr.14180) 250 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:06.932 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:06 smithi007 bash[14094]: cluster 2024-02-10T08:04:05.562054+0000 mgr.smithi007.lzuqsb (mgr.14180) 251 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:08.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:08 smithi007 bash[14094]: cluster 2024-02-10T08:04:07.562519+0000 mgr.smithi007.lzuqsb (mgr.14180) 252 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:08.767 INFO:teuthology.orchestra.run.smithi007.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-02-10T08:04:08.767 INFO:teuthology.orchestra.run.smithi007.stdout:alertmanager.smithi007 smithi007 *:9093,9094 running (5m) 45s ago 7m 12.2M - 0.23.0 ba2b418f427c 21c050e9fcab 2024-02-10T08:04:08.767 INFO:teuthology.orchestra.run.smithi007.stdout:crash.smithi007 smithi007 running (7m) 45s ago 7m 6924k - 16.2.14-521-g0e714d9a 1fbc92c859dc 84334cb0c971 2024-02-10T08:04:08.767 INFO:teuthology.orchestra.run.smithi007.stdout:crash.smithi123 smithi123 running (6m) 46s ago 6m 7079k - 16.2.14-521-g0e714d9a 1fbc92c859dc 3b0a0afd7e39 2024-02-10T08:04:08.767 INFO:teuthology.orchestra.run.smithi007.stdout:grafana.smithi007 smithi007 *:3000 running (5m) 45s ago 6m 41.1M - 8.3.5 dad864ee21e9 9ad770426e7d 2024-02-10T08:04:08.767 INFO:teuthology.orchestra.run.smithi007.stdout:mgr.smithi007.lzuqsb smithi007 *:9283 running (8m) 45s ago 8m 426M - 16.2.14-521-g0e714d9a 1fbc92c859dc 0fef1eb857f8 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:mgr.smithi123.qhmycm smithi123 *:8443,9283 running (6m) 46s ago 6m 374M - 16.2.14-521-g0e714d9a 1fbc92c859dc 3875bc9ff15a 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:mon.smithi007 smithi007 running (8m) 45s ago 8m 44.4M 2048M 16.2.14-521-g0e714d9a 1fbc92c859dc f467cd3345ec 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:mon.smithi123 smithi123 running (6m) 46s ago 6m 34.7M 2048M 16.2.14-521-g0e714d9a 1fbc92c859dc f91c3326a976 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:node-exporter.smithi007 smithi007 *:9100 running (6m) 45s ago 6m 9.92M - 1.3.1 1dbe0e931976 78ff5a8e6c66 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:node-exporter.smithi123 smithi123 *:9100 running (6m) 46s ago 6m 9583k - 1.3.1 1dbe0e931976 b10a38982b48 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:osd.0 smithi123 running (4m) 46s ago 4m 33.6M 4028M 16.2.14-521-g0e714d9a 1fbc92c859dc fc262a55284e 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:osd.1 smithi007 running (4m) 45s ago 4m 33.5M 3261M 16.2.14-521-g0e714d9a 1fbc92c859dc 8ec605c4d972 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:osd.2 smithi123 running (4m) 46s ago 4m 32.7M 4028M 16.2.14-521-g0e714d9a 1fbc92c859dc 33c87d709117 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:osd.3 smithi007 running (4m) 45s ago 4m 33.3M 3261M 16.2.14-521-g0e714d9a 1fbc92c859dc 5b49c424def7 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:osd.4 smithi123 running (4m) 46s ago 4m 35.1M 4028M 16.2.14-521-g0e714d9a 1fbc92c859dc 9cb45ba383c9 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:osd.5 smithi007 running (4m) 45s ago 4m 33.1M 3261M 16.2.14-521-g0e714d9a 1fbc92c859dc d777555a6c88 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:osd.6 smithi123 running (4m) 46s ago 4m 32.5M 4028M 16.2.14-521-g0e714d9a 1fbc92c859dc 1d057390bb21 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:osd.7 smithi007 running (3m) 45s ago 4m 32.7M 3261M 16.2.14-521-g0e714d9a 1fbc92c859dc 76ec06499fd6 2024-02-10T08:04:08.768 INFO:teuthology.orchestra.run.smithi007.stdout:prometheus.smithi007 smithi007 *:9095 running (5m) 45s ago 6m 59.3M - 2.33.4 514e6a882f6e c94b589d1a25 2024-02-10T08:04:08.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:08 smithi123 bash[18776]: cluster 2024-02-10T08:04:07.562519+0000 mgr.smithi007.lzuqsb (mgr.14180) 252 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:09.584 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- bash -c 'ceph orch ls' 2024-02-10T08:04:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:10 smithi123 bash[18776]: audit 2024-02-10T08:04:08.746625+0000 mgr.smithi007.lzuqsb (mgr.14180) 253 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:10 smithi123 bash[18776]: cluster 2024-02-10T08:04:09.563022+0000 mgr.smithi007.lzuqsb (mgr.14180) 254 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:10.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:10 smithi007 bash[14094]: audit 2024-02-10T08:04:08.746625+0000 mgr.smithi007.lzuqsb (mgr.14180) 253 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:10.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:10 smithi007 bash[14094]: cluster 2024-02-10T08:04:09.563022+0000 mgr.smithi007.lzuqsb (mgr.14180) 254 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:12.774 INFO:teuthology.orchestra.run.smithi007.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-02-10T08:04:12.774 INFO:teuthology.orchestra.run.smithi007.stdout:alertmanager ?:9093,9094 1/1 49s ago 8m count:1 2024-02-10T08:04:12.774 INFO:teuthology.orchestra.run.smithi007.stdout:crash 2/2 50s ago 8m * 2024-02-10T08:04:12.774 INFO:teuthology.orchestra.run.smithi007.stdout:grafana ?:3000 1/1 49s ago 8m count:1 2024-02-10T08:04:12.775 INFO:teuthology.orchestra.run.smithi007.stdout:mgr 2/2 50s ago 8m count:2 2024-02-10T08:04:12.775 INFO:teuthology.orchestra.run.smithi007.stdout:mon 2/2 50s ago 6m smithi007:172.21.15.7=smithi007;smithi123:172.21.15.123=smithi123;count:2 2024-02-10T08:04:12.775 INFO:teuthology.orchestra.run.smithi007.stdout:node-exporter ?:9100 2/2 50s ago 8m * 2024-02-10T08:04:12.775 INFO:teuthology.orchestra.run.smithi007.stdout:osd.all-available-devices 8 50s ago 5m * 2024-02-10T08:04:12.775 INFO:teuthology.orchestra.run.smithi007.stdout:prometheus ?:9095 1/1 49s ago 8m count:1 2024-02-10T08:04:12.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:12 smithi123 bash[18776]: cluster 2024-02-10T08:04:11.563598+0000 mgr.smithi007.lzuqsb (mgr.14180) 255 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:12.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:12 smithi007 bash[14094]: cluster 2024-02-10T08:04:11.563598+0000 mgr.smithi007.lzuqsb (mgr.14180) 255 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:13.504 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- bash -c 'ceph orch host ls' 2024-02-10T08:04:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:14 smithi123 bash[18776]: audit 2024-02-10T08:04:12.767572+0000 mgr.smithi007.lzuqsb (mgr.14180) 256 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:14 smithi123 bash[18776]: cluster 2024-02-10T08:04:13.564048+0000 mgr.smithi007.lzuqsb (mgr.14180) 257 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:14 smithi007 bash[14094]: audit 2024-02-10T08:04:12.767572+0000 mgr.smithi007.lzuqsb (mgr.14180) 256 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:14.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:14 smithi007 bash[14094]: cluster 2024-02-10T08:04:13.564048+0000 mgr.smithi007.lzuqsb (mgr.14180) 257 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:16.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:16 smithi007 bash[14094]: cluster 2024-02-10T08:04:15.564463+0000 mgr.smithi007.lzuqsb (mgr.14180) 258 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:16.812 INFO:teuthology.orchestra.run.smithi007.stdout:HOST ADDR LABELS STATUS 2024-02-10T08:04:16.812 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 172.21.15.7 2024-02-10T08:04:16.813 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 172.21.15.123 2024-02-10T08:04:16.813 INFO:teuthology.orchestra.run.smithi007.stdout:2 hosts in cluster 2024-02-10T08:04:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:16 smithi123 bash[18776]: cluster 2024-02-10T08:04:15.564463+0000 mgr.smithi007.lzuqsb (mgr.14180) 258 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:17.575 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- bash -c 'ceph orch device ls' 2024-02-10T08:04:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:18 smithi123 bash[18776]: audit 2024-02-10T08:04:16.809753+0000 mgr.smithi007.lzuqsb (mgr.14180) 259 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:18 smithi123 bash[18776]: cluster 2024-02-10T08:04:17.565017+0000 mgr.smithi007.lzuqsb (mgr.14180) 260 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:18.980 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:18 smithi007 bash[14094]: audit 2024-02-10T08:04:16.809753+0000 mgr.smithi007.lzuqsb (mgr.14180) 259 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:18.980 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:18 smithi007 bash[14094]: cluster 2024-02-10T08:04:17.565017+0000 mgr.smithi007.lzuqsb (mgr.14180) 260 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:20.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:20 smithi007 bash[14094]: cluster 2024-02-10T08:04:19.565623+0000 mgr.smithi007.lzuqsb (mgr.14180) 261 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:20.855 INFO:teuthology.orchestra.run.smithi007.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-10T08:04:20.855 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme0n1 ssd INTEL SSDPED1D480GA_PHMB751300GE480DGN 447G 3m ago Has a FileSystem, LVM detected 2024-02-10T08:04:20.856 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme1n1 ssd Linux_d03f2ca4ced44964453f 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:20.856 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme2n1 ssd Linux_982d387c628a20a66200 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:20.856 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme3n1 ssd Linux_4fab7ac0b0ed4574110c 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:20.856 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme4n1 ssd Linux_28bd6de458cae7792c1b 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:20.856 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_PHFT620400YK400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-10T08:04:20.856 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 /dev/nvme1n1 ssd Linux_3c97f5e5cf30368abed7 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:20.856 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 /dev/nvme2n1 ssd Linux_a9e71feabbf6affcf86c 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:20.857 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 /dev/nvme3n1 ssd Linux_f0c835df9746cb522481 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:20.857 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 /dev/nvme4n1 ssd Linux_e96661f515ae75c18a56 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:20.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:20 smithi123 bash[18776]: cluster 2024-02-10T08:04:19.565623+0000 mgr.smithi007.lzuqsb (mgr.14180) 261 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:21.687 INFO:teuthology.run_tasks:Running task vip... 2024-02-10T08:04:21.699 INFO:tasks.vip:Allocating static IPs for each host... 2024-02-10T08:04:21.699 INFO:tasks.vip:peername 172.21.15.7 2024-02-10T08:04:21.702 INFO:tasks.vip:172.21.15.7 in 172.21.0.0/20, pos 3846 2024-02-10T08:04:21.707 INFO:tasks.vip:smithi007.front.sepia.ceph.com static 10.0.15.7, vnet 10.0.0.0/16 2024-02-10T08:04:21.707 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-02-10T08:04:21.707 DEBUG:teuthology.orchestra.run.smithi007:> sudo ip route ls 2024-02-10T08:04:21.721 INFO:teuthology.orchestra.run.smithi007.stdout:default via 172.21.15.254 dev ens1f0 2024-02-10T08:04:21.721 INFO:teuthology.orchestra.run.smithi007.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-10T08:04:21.721 INFO:teuthology.orchestra.run.smithi007.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.7 2024-02-10T08:04:21.723 INFO:tasks.vip:Configuring 10.0.15.7 on smithi007.front.sepia.ceph.com iface ens1f0... 2024-02-10T08:04:21.723 DEBUG:teuthology.orchestra.run.smithi007:> sudo ip addr add 10.0.15.7/16 dev ens1f0 2024-02-10T08:04:21.782 INFO:tasks.vip:peername 172.21.15.123 2024-02-10T08:04:21.785 INFO:tasks.vip:172.21.15.123 in 172.21.0.0/20, pos 3962 2024-02-10T08:04:21.789 INFO:tasks.vip:smithi123.front.sepia.ceph.com static 10.0.15.123, vnet 10.0.0.0/16 2024-02-10T08:04:21.789 DEBUG:teuthology.orchestra.run.smithi123:> sudo ip route ls 2024-02-10T08:04:21.806 INFO:teuthology.orchestra.run.smithi123.stdout:default via 172.21.15.254 dev enp3s0f1 2024-02-10T08:04:21.806 INFO:teuthology.orchestra.run.smithi123.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.123 metric 100 2024-02-10T08:04:21.806 INFO:teuthology.orchestra.run.smithi123.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-10T08:04:21.806 INFO:teuthology.orchestra.run.smithi123.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.123 2024-02-10T08:04:21.806 INFO:teuthology.orchestra.run.smithi123.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.123 metric 100 2024-02-10T08:04:21.807 INFO:tasks.vip:Configuring 10.0.15.123 on smithi123.front.sepia.ceph.com iface enp3s0f1... 2024-02-10T08:04:21.807 DEBUG:teuthology.orchestra.run.smithi123:> sudo ip addr add 10.0.15.123/16 dev enp3s0f1 2024-02-10T08:04:21.867 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-10T08:04:21.876 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-02-10T08:04:21.876 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-02-10T08:04:22.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:22 smithi123 bash[18776]: audit 2024-02-10T08:04:20.844862+0000 mgr.smithi007.lzuqsb (mgr.14180) 262 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:22.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:22 smithi123 bash[18776]: cluster 2024-02-10T08:04:21.566181+0000 mgr.smithi007.lzuqsb (mgr.14180) 263 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:22.983 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:22 smithi007 bash[14094]: audit 2024-02-10T08:04:20.844862+0000 mgr.smithi007.lzuqsb (mgr.14180) 262 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:22.983 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:22 smithi007 bash[14094]: cluster 2024-02-10T08:04:21.566181+0000 mgr.smithi007.lzuqsb (mgr.14180) 263 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:24.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:24 smithi123 bash[18776]: cluster 2024-02-10T08:04:23.566770+0000 mgr.smithi007.lzuqsb (mgr.14180) 264 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:24.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:24 smithi123 bash[18776]: audit 2024-02-10T08:04:23.792392+0000 mon.smithi007 (mon.0) 633 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:04:24.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:24 smithi007 bash[14094]: cluster 2024-02-10T08:04:23.566770+0000 mgr.smithi007.lzuqsb (mgr.14180) 264 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:24.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:24 smithi007 bash[14094]: audit 2024-02-10T08:04:23.792392+0000 mon.smithi007 (mon.0) 633 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme0n1 ssd INTEL SSDPED1D480GA_PHMB751300GE480DGN 447G 3m ago Has a FileSystem, LVM detected 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme1n1 ssd Linux_d03f2ca4ced44964453f 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme2n1 ssd Linux_982d387c628a20a66200 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme3n1 ssd Linux_4fab7ac0b0ed4574110c 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme4n1 ssd Linux_28bd6de458cae7792c1b 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_PHFT620400YK400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 /dev/nvme1n1 ssd Linux_3c97f5e5cf30368abed7 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 /dev/nvme2n1 ssd Linux_a9e71feabbf6affcf86c 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 /dev/nvme3n1 ssd Linux_f0c835df9746cb522481 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:25.135 INFO:teuthology.orchestra.run.smithi007.stdout:smithi123 /dev/nvme4n1 ssd Linux_e96661f515ae75c18a56 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-10T08:04:25.954 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-10T08:04:25.966 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-02-10T08:04:25.966 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-10T08:04:25.983 INFO:teuthology.orchestra.run.smithi007.stderr:+ systemctl stop nfs-server 2024-02-10T08:04:26.109 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi123.front.sepia.ceph.com 2024-02-10T08:04:26.109 DEBUG:teuthology.orchestra.run.smithi123:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-10T08:04:26.126 INFO:teuthology.orchestra.run.smithi123.stderr:+ systemctl stop nfs-server 2024-02-10T08:04:26.272 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-10T08:04:26.281 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-02-10T08:04:26.282 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-02-10T08:04:26.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:26 smithi123 bash[18776]: audit 2024-02-10T08:04:25.125415+0000 mgr.smithi007.lzuqsb (mgr.14180) 265 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:26.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:26 smithi123 bash[18776]: cluster 2024-02-10T08:04:25.567364+0000 mgr.smithi007.lzuqsb (mgr.14180) 266 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:26.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:26 smithi007 bash[14094]: audit 2024-02-10T08:04:25.125415+0000 mgr.smithi007.lzuqsb (mgr.14180) 265 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:26.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:26 smithi007 bash[14094]: cluster 2024-02-10T08:04:25.567364+0000 mgr.smithi007.lzuqsb (mgr.14180) 266 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:28.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:28 smithi007 bash[14094]: cluster 2024-02-10T08:04:27.568018+0000 mgr.smithi007.lzuqsb (mgr.14180) 267 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:28.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:28 smithi123 bash[18776]: cluster 2024-02-10T08:04:27.568018+0000 mgr.smithi007.lzuqsb (mgr.14180) 267 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:29.800 INFO:teuthology.orchestra.run.smithi007.stdout:Scheduled rgw.foorgw update... 2024-02-10T08:04:30.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:30 smithi007 bash[14094]: audit 2024-02-10T08:04:29.204268+0000 mon.smithi007 (mon.0) 634 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:30.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:30 smithi007 bash[14094]: cluster 2024-02-10T08:04:29.568560+0000 mgr.smithi007.lzuqsb (mgr.14180) 268 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:30.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:30 smithi007 bash[14094]: audit 2024-02-10T08:04:29.798034+0000 mon.smithi007 (mon.0) 635 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:30.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:30 smithi007 bash[14094]: audit 2024-02-10T08:04:30.067157+0000 mon.smithi007 (mon.0) 636 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:30.638 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.7/16' 2024-02-10T08:04:30.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:30 smithi123 bash[18776]: audit 2024-02-10T08:04:29.204268+0000 mon.smithi007 (mon.0) 634 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:30.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:30 smithi123 bash[18776]: cluster 2024-02-10T08:04:29.568560+0000 mgr.smithi007.lzuqsb (mgr.14180) 268 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:30.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:30 smithi123 bash[18776]: audit 2024-02-10T08:04:29.798034+0000 mon.smithi007 (mon.0) 635 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:30.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:30 smithi123 bash[18776]: audit 2024-02-10T08:04:30.067157+0000 mon.smithi007 (mon.0) 636 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:31.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:31 smithi007 bash[14094]: audit 2024-02-10T08:04:29.789835+0000 mgr.smithi007.lzuqsb (mgr.14180) 269 : audit [DBG] from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:31.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:31 smithi007 bash[14094]: cephadm 2024-02-10T08:04:29.792809+0000 mgr.smithi007.lzuqsb (mgr.14180) 270 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-10T08:04:31.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:31 smithi123 bash[18776]: audit 2024-02-10T08:04:29.789835+0000 mgr.smithi007.lzuqsb (mgr.14180) 269 : audit [DBG] from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:31.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:31 smithi123 bash[18776]: cephadm 2024-02-10T08:04:29.792809+0000 mgr.smithi007.lzuqsb (mgr.14180) 270 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-10T08:04:32.496 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:32 smithi007 bash[14094]: cluster 2024-02-10T08:04:31.569031+0000 mgr.smithi007.lzuqsb (mgr.14180) 271 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:32.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:32 smithi123 bash[18776]: cluster 2024-02-10T08:04:31.569031+0000 mgr.smithi007.lzuqsb (mgr.14180) 271 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:34.891 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:34 smithi123 bash[18776]: cluster 2024-02-10T08:04:33.569621+0000 mgr.smithi007.lzuqsb (mgr.14180) 272 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:34.891 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:34 smithi123 bash[18776]: audit 2024-02-10T08:04:34.113768+0000 mon.smithi007 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-10T08:04:34.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:34 smithi007 bash[14094]: cluster 2024-02-10T08:04:33.569621+0000 mgr.smithi007.lzuqsb (mgr.14180) 272 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:34.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:34 smithi007 bash[14094]: audit 2024-02-10T08:04:34.113768+0000 mon.smithi007 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-10T08:04:35.645 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:35 smithi123 bash[18776]: audit 2024-02-10T08:04:34.110706+0000 mgr.smithi007.lzuqsb (mgr.14180) 273 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.7/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:35.645 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:35 smithi123 bash[18776]: audit 2024-02-10T08:04:34.632330+0000 mon.smithi007 (mon.0) 638 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-10T08:04:35.646 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:35 smithi123 bash[18776]: cluster 2024-02-10T08:04:34.632521+0000 mon.smithi007 (mon.0) 639 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-10T08:04:35.646 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:35 smithi123 bash[18776]: audit 2024-02-10T08:04:34.643483+0000 mon.smithi007 (mon.0) 640 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-10T08:04:35.646 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:35 smithi123 bash[18776]: audit 2024-02-10T08:04:35.634357+0000 mon.smithi007 (mon.0) 641 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-10T08:04:35.646 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:35 smithi123 bash[18776]: cluster 2024-02-10T08:04:35.634631+0000 mon.smithi007 (mon.0) 642 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-10T08:04:35.684 INFO:teuthology.orchestra.run.smithi007.stdout:NFS Cluster Created Successfully 2024-02-10T08:04:35.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:35 smithi007 bash[14094]: audit 2024-02-10T08:04:34.110706+0000 mgr.smithi007.lzuqsb (mgr.14180) 273 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.7/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:04:35.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:35 smithi007 bash[14094]: audit 2024-02-10T08:04:34.632330+0000 mon.smithi007 (mon.0) 638 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-10T08:04:35.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:35 smithi007 bash[14094]: cluster 2024-02-10T08:04:34.632521+0000 mon.smithi007 (mon.0) 639 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-10T08:04:35.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:35 smithi007 bash[14094]: audit 2024-02-10T08:04:34.643483+0000 mon.smithi007 (mon.0) 640 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-10T08:04:35.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:35 smithi007 bash[14094]: audit 2024-02-10T08:04:35.634357+0000 mon.smithi007 (mon.0) 641 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-10T08:04:35.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:35 smithi007 bash[14094]: cluster 2024-02-10T08:04:35.634631+0000 mon.smithi007 (mon.0) 642 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-10T08:04:36.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:36 smithi123 bash[18776]: cluster 2024-02-10T08:04:35.570305+0000 mgr.smithi007.lzuqsb (mgr.14180) 274 : cluster [DBG] pgmap v250: 33 pgs: 1 active+clean, 32 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:36.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:36 smithi123 bash[18776]: audit 2024-02-10T08:04:35.674971+0000 mon.smithi007 (mon.0) 643 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:36.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:36 smithi123 bash[18776]: audit 2024-02-10T08:04:35.682461+0000 mon.smithi007 (mon.0) 644 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:36.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:36 smithi007 bash[14094]: cluster 2024-02-10T08:04:35.570305+0000 mgr.smithi007.lzuqsb (mgr.14180) 274 : cluster [DBG] pgmap v250: 33 pgs: 1 active+clean, 32 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:36.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:36 smithi007 bash[14094]: audit 2024-02-10T08:04:35.674971+0000 mon.smithi007 (mon.0) 643 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:36.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:36 smithi007 bash[14094]: audit 2024-02-10T08:04:35.682461+0000 mon.smithi007 (mon.0) 644 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:37.024 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-10T08:04:37.036 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-02-10T08:04:37.036 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-02-10T08:04:37.051 INFO:teuthology.orchestra.run.smithi007.stderr:+ dnf install -y python3-boto3 2024-02-10T08:04:37.052 INFO:teuthology.orchestra.run.smithi007.stderr:bash: dnf: command not found 2024-02-10T08:04:37.052 INFO:teuthology.orchestra.run.smithi007.stderr:+ apt install -y python3-boto3 2024-02-10T08:04:37.057 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T08:04:37.058 INFO:teuthology.orchestra.run.smithi007.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-02-10T08:04:37.058 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T08:04:37.114 INFO:teuthology.orchestra.run.smithi007.stdout:Reading package lists... 2024-02-10T08:04:37.345 INFO:teuthology.orchestra.run.smithi007.stdout:Building dependency tree... 2024-02-10T08:04:37.345 INFO:teuthology.orchestra.run.smithi007.stdout:Reading state information... 2024-02-10T08:04:37.582 INFO:teuthology.orchestra.run.smithi007.stdout:The following additional packages will be installed: 2024-02-10T08:04:37.583 INFO:teuthology.orchestra.run.smithi007.stdout: docutils-common libpaper-utils libpaper1 python3-botocore python3-docutils 2024-02-10T08:04:37.583 INFO:teuthology.orchestra.run.smithi007.stdout: python3-jmespath python3-pygments python3-roman python3-s3transfer 2024-02-10T08:04:37.584 INFO:teuthology.orchestra.run.smithi007.stdout:Suggested packages: 2024-02-10T08:04:37.585 INFO:teuthology.orchestra.run.smithi007.stdout: docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french 2024-02-10T08:04:37.585 INFO:teuthology.orchestra.run.smithi007.stdout: texlive-latex-base texlive-latex-recommended python-pygments-doc 2024-02-10T08:04:37.620 INFO:teuthology.orchestra.run.smithi007.stdout:The following NEW packages will be installed: 2024-02-10T08:04:37.622 INFO:teuthology.orchestra.run.smithi007.stdout: docutils-common libpaper-utils libpaper1 python3-boto3 python3-botocore 2024-02-10T08:04:37.622 INFO:teuthology.orchestra.run.smithi007.stdout: python3-docutils python3-jmespath python3-pygments python3-roman 2024-02-10T08:04:37.622 INFO:teuthology.orchestra.run.smithi007.stdout: python3-s3transfer 2024-02-10T08:04:37.707 INFO:teuthology.orchestra.run.smithi007.stdout:0 upgraded, 10 newly installed, 0 to remove and 266 not upgraded. 2024-02-10T08:04:37.707 INFO:teuthology.orchestra.run.smithi007.stdout:Need to get 4,480 kB of archives. 2024-02-10T08:04:37.707 INFO:teuthology.orchestra.run.smithi007.stdout:After this operation, 53.0 MB of additional disk space will be used. 2024-02-10T08:04:37.707 INFO:teuthology.orchestra.run.smithi007.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 docutils-common all 0.16+dfsg-2 [116 kB] 2024-02-10T08:04:37.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:37 smithi007 bash[14094]: cephadm 2024-02-10T08:04:35.669823+0000 mgr.smithi007.lzuqsb (mgr.14180) 275 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-10T08:04:37.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:37 smithi007 bash[14094]: cephadm 2024-02-10T08:04:35.677847+0000 mgr.smithi007.lzuqsb (mgr.14180) 276 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-10T08:04:37.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:37 smithi007 bash[14094]: cluster 2024-02-10T08:04:36.648931+0000 mon.smithi007 (mon.0) 645 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-10T08:04:37.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:37 smithi123 bash[18776]: cephadm 2024-02-10T08:04:35.669823+0000 mgr.smithi007.lzuqsb (mgr.14180) 275 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-10T08:04:37.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:37 smithi123 bash[18776]: cephadm 2024-02-10T08:04:35.677847+0000 mgr.smithi007.lzuqsb (mgr.14180) 276 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-10T08:04:37.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:37 smithi123 bash[18776]: cluster 2024-02-10T08:04:36.648931+0000 mon.smithi007 (mon.0) 645 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-10T08:04:37.944 INFO:teuthology.orchestra.run.smithi007.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libpaper1 amd64 1.1.28 [13.0 kB] 2024-02-10T08:04:38.009 INFO:teuthology.orchestra.run.smithi007.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libpaper-utils amd64 1.1.28 [8,400 B] 2024-02-10T08:04:38.012 INFO:teuthology.orchestra.run.smithi007.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-roman all 2.0.0-3build1 [8,728 B] 2024-02-10T08:04:38.012 INFO:teuthology.orchestra.run.smithi007.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-docutils all 0.16+dfsg-2 [368 kB] 2024-02-10T08:04:38.023 INFO:teuthology.orchestra.run.smithi007.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jmespath all 0.9.4-2ubuntu1 [21.5 kB] 2024-02-10T08:04:38.025 INFO:teuthology.orchestra.run.smithi007.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-10T08:04:38.103 INFO:teuthology.orchestra.run.smithi007.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-s3transfer all 0.3.3-1 [46.6 kB] 2024-02-10T08:04:38.103 INFO:teuthology.orchestra.run.smithi007.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-boto3 all 1.9.253-1 [63.7 kB] 2024-02-10T08:04:38.104 INFO:teuthology.orchestra.run.smithi007.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-10T08:04:38.405 INFO:teuthology.orchestra.run.smithi007.stderr:debconf: unable to initialize frontend: Dialog 2024-02-10T08:04:38.405 INFO:teuthology.orchestra.run.smithi007.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-10T08:04:38.405 INFO:teuthology.orchestra.run.smithi007.stderr:debconf: falling back to frontend: Readline 2024-02-10T08:04:38.430 INFO:teuthology.orchestra.run.smithi007.stderr:debconf: unable to initialize frontend: Readline 2024-02-10T08:04:38.430 INFO:teuthology.orchestra.run.smithi007.stderr:debconf: (This frontend requires a controlling tty.) 2024-02-10T08:04:38.430 INFO:teuthology.orchestra.run.smithi007.stderr:debconf: falling back to frontend: Teletype 2024-02-10T08:04:38.435 INFO:teuthology.orchestra.run.smithi007.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-02-10T08:04:38.487 INFO:teuthology.orchestra.run.smithi007.stdout:Fetched 4,480 kB in 0s (9,424 kB/s) 2024-02-10T08:04:38.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:38 smithi007 bash[14094]: cluster 2024-02-10T08:04:37.570709+0000 mgr.smithi007.lzuqsb (mgr.14180) 277 : cluster [DBG] pgmap v253: 33 pgs: 13 active+clean, 20 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:38.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:38 smithi007 bash[14094]: cluster 2024-02-10T08:04:37.667263+0000 mon.smithi007 (mon.0) 646 : cluster [DBG] mgrmap e19: smithi007.lzuqsb(active, since 7m), standbys: smithi123.qhmycm 2024-02-10T08:04:38.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:38 smithi123 bash[18776]: cluster 2024-02-10T08:04:37.570709+0000 mgr.smithi007.lzuqsb (mgr.14180) 277 : cluster [DBG] pgmap v253: 33 pgs: 13 active+clean, 20 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:38.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:38 smithi123 bash[18776]: cluster 2024-02-10T08:04:37.667263+0000 mon.smithi007 (mon.0) 646 : cluster [DBG] mgrmap e19: smithi007.lzuqsb(active, since 7m), standbys: smithi123.qhmycm 2024-02-10T08:04:39.332 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package docutils-common. 2024-02-10T08:04:39.382 INFO:teuthology.orchestra.run.smithi007.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-10T08:04:39.386 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../0-docutils-common_0.16+dfsg-2_all.deb ... 2024-02-10T08:04:39.699 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking docutils-common (0.16+dfsg-2) ... 2024-02-10T08:04:40.478 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package libpaper1:amd64. 2024-02-10T08:04:40.491 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../1-libpaper1_1.1.28_amd64.deb ... 2024-02-10T08:04:40.589 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking libpaper1:amd64 (1.1.28) ... 2024-02-10T08:04:40.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:40 smithi123 bash[18776]: audit 2024-02-10T08:04:39.285743+0000 mon.smithi007 (mon.0) 647 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:40.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:40 smithi123 bash[18776]: cluster 2024-02-10T08:04:39.571259+0000 mgr.smithi007.lzuqsb (mgr.14180) 278 : cluster [DBG] pgmap v254: 33 pgs: 29 active+clean, 4 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:40 smithi007 bash[14094]: audit 2024-02-10T08:04:39.285743+0000 mon.smithi007 (mon.0) 647 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:40.746 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:40 smithi007 bash[14094]: cluster 2024-02-10T08:04:39.571259+0000 mgr.smithi007.lzuqsb (mgr.14180) 278 : cluster [DBG] pgmap v254: 33 pgs: 29 active+clean, 4 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:40.863 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package libpaper-utils. 2024-02-10T08:04:40.876 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../2-libpaper-utils_1.1.28_amd64.deb ... 2024-02-10T08:04:40.946 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking libpaper-utils (1.1.28) ... 2024-02-10T08:04:41.294 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package python3-roman. 2024-02-10T08:04:41.304 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../3-python3-roman_2.0.0-3build1_all.deb ... 2024-02-10T08:04:41.353 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking python3-roman (2.0.0-3build1) ... 2024-02-10T08:04:41.659 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package python3-docutils. 2024-02-10T08:04:41.672 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../4-python3-docutils_0.16+dfsg-2_all.deb ... 2024-02-10T08:04:41.709 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking python3-docutils (0.16+dfsg-2) ... 2024-02-10T08:04:42.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:42 smithi123 bash[18776]: cluster 2024-02-10T08:04:41.571766+0000 mgr.smithi007.lzuqsb (mgr.14180) 279 : cluster [DBG] pgmap v255: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:42 smithi007 bash[14094]: cluster 2024-02-10T08:04:41.571766+0000 mgr.smithi007.lzuqsb (mgr.14180) 279 : cluster [DBG] pgmap v255: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:43.286 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package python3-jmespath. 2024-02-10T08:04:43.299 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../5-python3-jmespath_0.9.4-2ubuntu1_all.deb ... 2024-02-10T08:04:43.335 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking python3-jmespath (0.9.4-2ubuntu1) ... 2024-02-10T08:04:43.628 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package python3-botocore. 2024-02-10T08:04:43.643 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../6-python3-botocore_1.16.19+repack-1ubuntu0.20.04.1_all.deb ... 2024-02-10T08:04:43.686 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking python3-botocore (1.16.19+repack-1ubuntu0.20.04.1) ... 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: audit 2024-02-10T08:04:43.188851+0000 mon.smithi007 (mon.0) 648 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: audit 2024-02-10T08:04:43.476342+0000 mon.smithi007 (mon.0) 649 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: audit 2024-02-10T08:04:43.478013+0000 mon.smithi007 (mon.0) 650 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: audit 2024-02-10T08:04:43.484920+0000 mon.smithi007 (mon.0) 651 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: audit 2024-02-10T08:04:43.492019+0000 mon.smithi007 (mon.0) 652 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: cephadm 2024-02-10T08:04:43.502137+0000 mgr.smithi007.lzuqsb (mgr.14180) 280 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: audit 2024-02-10T08:04:43.507432+0000 mon.smithi007 (mon.0) 653 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: audit 2024-02-10T08:04:43.510943+0000 mon.smithi007 (mon.0) 654 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi123.drmpzo", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: audit 2024-02-10T08:04:43.515608+0000 mon.smithi007 (mon.0) 655 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi123.drmpzo", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: audit 2024-02-10T08:04:43.520691+0000 mon.smithi007 (mon.0) 656 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:44.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: audit 2024-02-10T08:04:43.521714+0000 mon.smithi007 (mon.0) 657 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:04:44.498 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: cephadm 2024-02-10T08:04:43.522496+0000 mgr.smithi007.lzuqsb (mgr.14180) 281 : cephadm [INF] Deploying daemon rgw.foorgw.smithi123.drmpzo on smithi123 2024-02-10T08:04:44.498 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:44 smithi007 bash[14094]: cluster 2024-02-10T08:04:43.572445+0000 mgr.smithi007.lzuqsb (mgr.14180) 282 : cluster [DBG] pgmap v256: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:44.618 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: audit 2024-02-10T08:04:43.188851+0000 mon.smithi007 (mon.0) 648 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:44.618 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: audit 2024-02-10T08:04:43.476342+0000 mon.smithi007 (mon.0) 649 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:04:44.618 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: audit 2024-02-10T08:04:43.478013+0000 mon.smithi007 (mon.0) 650 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:04:44.618 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: audit 2024-02-10T08:04:43.484920+0000 mon.smithi007 (mon.0) 651 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:44.618 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: audit 2024-02-10T08:04:43.492019+0000 mon.smithi007 (mon.0) 652 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:04:44.618 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: cephadm 2024-02-10T08:04:43.502137+0000 mgr.smithi007.lzuqsb (mgr.14180) 280 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-10T08:04:44.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: audit 2024-02-10T08:04:43.507432+0000 mon.smithi007 (mon.0) 653 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:44.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: audit 2024-02-10T08:04:43.510943+0000 mon.smithi007 (mon.0) 654 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi123.drmpzo", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-10T08:04:44.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: audit 2024-02-10T08:04:43.515608+0000 mon.smithi007 (mon.0) 655 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi123.drmpzo", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-10T08:04:44.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: audit 2024-02-10T08:04:43.520691+0000 mon.smithi007 (mon.0) 656 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:44.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: audit 2024-02-10T08:04:43.521714+0000 mon.smithi007 (mon.0) 657 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:04:44.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: cephadm 2024-02-10T08:04:43.522496+0000 mgr.smithi007.lzuqsb (mgr.14180) 281 : cephadm [INF] Deploying daemon rgw.foorgw.smithi123.drmpzo on smithi123 2024-02-10T08:04:44.619 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:44 smithi123 bash[18776]: cluster 2024-02-10T08:04:43.572445+0000 mgr.smithi007.lzuqsb (mgr.14180) 282 : cluster [DBG] pgmap v256: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:44.953 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package python3-s3transfer. 2024-02-10T08:04:44.969 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../7-python3-s3transfer_0.3.3-1_all.deb ... 2024-02-10T08:04:45.006 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking python3-s3transfer (0.3.3-1) ... 2024-02-10T08:04:45.325 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package python3-boto3. 2024-02-10T08:04:45.339 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../8-python3-boto3_1.9.253-1_all.deb ... 2024-02-10T08:04:45.385 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking python3-boto3 (1.9.253-1) ... 2024-02-10T08:04:45.742 INFO:teuthology.orchestra.run.smithi007.stdout:Selecting previously unselected package python3-pygments. 2024-02-10T08:04:45.755 INFO:teuthology.orchestra.run.smithi007.stdout:Preparing to unpack .../9-python3-pygments_2.3.1+dfsg-1ubuntu2.2_all.deb ... 2024-02-10T08:04:45.801 INFO:teuthology.orchestra.run.smithi007.stdout:Unpacking python3-pygments (2.3.1+dfsg-1ubuntu2.2) ... 2024-02-10T08:04:46.247 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up libpaper1:amd64 (1.1.28) ... 2024-02-10T08:04:46.692 INFO:teuthology.orchestra.run.smithi007.stdout:debconf: unable to initialize frontend: Dialog 2024-02-10T08:04:46.692 INFO:teuthology.orchestra.run.smithi007.stdout:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-10T08:04:46.692 INFO:teuthology.orchestra.run.smithi007.stdout:debconf: falling back to frontend: Readline 2024-02-10T08:04:46.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:46 smithi123 bash[18776]: cluster 2024-02-10T08:04:45.573197+0000 mgr.smithi007.lzuqsb (mgr.14180) 283 : cluster [DBG] pgmap v257: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:46.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:46 smithi123 bash[18776]: audit 2024-02-10T08:04:46.029568+0000 mon.smithi007 (mon.0) 658 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:46.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:46 smithi123 bash[18776]: audit 2024-02-10T08:04:46.032228+0000 mon.smithi007 (mon.0) 659 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi007.wnaomv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-10T08:04:46.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:46 smithi123 bash[18776]: audit 2024-02-10T08:04:46.036017+0000 mon.smithi007 (mon.0) 660 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi007.wnaomv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-10T08:04:46.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:46 smithi123 bash[18776]: audit 2024-02-10T08:04:46.041100+0000 mon.smithi007 (mon.0) 661 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:46.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:46 smithi123 bash[18776]: audit 2024-02-10T08:04:46.042616+0000 mon.smithi007 (mon.0) 662 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:04:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:46 smithi007 bash[14094]: cluster 2024-02-10T08:04:45.573197+0000 mgr.smithi007.lzuqsb (mgr.14180) 283 : cluster [DBG] pgmap v257: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:46 smithi007 bash[14094]: audit 2024-02-10T08:04:46.029568+0000 mon.smithi007 (mon.0) 658 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:46.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:46 smithi007 bash[14094]: audit 2024-02-10T08:04:46.032228+0000 mon.smithi007 (mon.0) 659 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi007.wnaomv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-10T08:04:46.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:46 smithi007 bash[14094]: audit 2024-02-10T08:04:46.036017+0000 mon.smithi007 (mon.0) 660 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi007.wnaomv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-10T08:04:46.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:46 smithi007 bash[14094]: audit 2024-02-10T08:04:46.041100+0000 mon.smithi007 (mon.0) 661 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:46.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:46 smithi007 bash[14094]: audit 2024-02-10T08:04:46.042616+0000 mon.smithi007 (mon.0) 662 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:04:47.404 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:04:47.404 INFO:teuthology.orchestra.run.smithi007.stdout:Creating config file /etc/papersize with new version 2024-02-10T08:04:47.883 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up libpaper-utils (1.1.28) ... 2024-02-10T08:04:47.886 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:47 smithi007 bash[14094]: cephadm 2024-02-10T08:04:46.043663+0000 mgr.smithi007.lzuqsb (mgr.14180) 284 : cephadm [INF] Deploying daemon rgw.foorgw.smithi007.wnaomv on smithi007 2024-02-10T08:04:47.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:47 smithi123 bash[18776]: cephadm 2024-02-10T08:04:46.043663+0000 mgr.smithi007.lzuqsb (mgr.14180) 284 : cephadm [INF] Deploying daemon rgw.foorgw.smithi007.wnaomv on smithi007 2024-02-10T08:04:48.053 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up python3-roman (2.0.0-3build1) ... 2024-02-10T08:04:48.878 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up python3-pygments (2.3.1+dfsg-1ubuntu2.2) ... 2024-02-10T08:04:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:48 smithi123 bash[18776]: cluster 2024-02-10T08:04:47.573883+0000 mgr.smithi007.lzuqsb (mgr.14180) 285 : cluster [DBG] pgmap v258: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:48 smithi123 bash[18776]: cluster 2024-02-10T08:04:47.640781+0000 mon.smithi007 (mon.0) 663 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-10T08:04:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:48 smithi123 bash[18776]: audit 2024-02-10T08:04:47.647626+0000 mon.smithi123 (mon.1) 19 : audit [INF] from='client.? 172.21.15.123:0/4107018586' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-10T08:04:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:48 smithi123 bash[18776]: audit 2024-02-10T08:04:47.648836+0000 mon.smithi007 (mon.0) 664 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-10T08:04:48.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:48 smithi007 bash[14094]: cluster 2024-02-10T08:04:47.573883+0000 mgr.smithi007.lzuqsb (mgr.14180) 285 : cluster [DBG] pgmap v258: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:48.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:48 smithi007 bash[14094]: cluster 2024-02-10T08:04:47.640781+0000 mon.smithi007 (mon.0) 663 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-10T08:04:48.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:48 smithi007 bash[14094]: audit 2024-02-10T08:04:47.647626+0000 mon.smithi123 (mon.1) 19 : audit [INF] from='client.? 172.21.15.123:0/4107018586' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-10T08:04:48.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:48 smithi007 bash[14094]: audit 2024-02-10T08:04:47.648836+0000 mon.smithi007 (mon.0) 664 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-10T08:04:49.564 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up python3-jmespath (0.9.4-2ubuntu1) ... 2024-02-10T08:04:49.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:49 smithi123 bash[18776]: audit 2024-02-10T08:04:48.648495+0000 mon.smithi007 (mon.0) 665 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-10T08:04:49.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:49 smithi123 bash[18776]: cluster 2024-02-10T08:04:48.648630+0000 mon.smithi007 (mon.0) 666 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-10T08:04:49.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:49 smithi123 bash[18776]: audit 2024-02-10T08:04:49.634087+0000 mon.smithi007 (mon.0) 667 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:49.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:49 smithi123 bash[18776]: audit 2024-02-10T08:04:49.639748+0000 mon.smithi007 (mon.0) 668 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:49.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:49 smithi007 bash[14094]: audit 2024-02-10T08:04:48.648495+0000 mon.smithi007 (mon.0) 665 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-10T08:04:49.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:49 smithi007 bash[14094]: cluster 2024-02-10T08:04:48.648630+0000 mon.smithi007 (mon.0) 666 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-10T08:04:49.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:49 smithi007 bash[14094]: audit 2024-02-10T08:04:49.634087+0000 mon.smithi007 (mon.0) 667 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:49.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:49 smithi007 bash[14094]: audit 2024-02-10T08:04:49.639748+0000 mon.smithi007 (mon.0) 668 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:50.440 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up docutils-common (0.16+dfsg-2) ... 2024-02-10T08:04:50.999 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: cluster 2024-02-10T08:04:49.574280+0000 mgr.smithi007.lzuqsb (mgr.14180) 286 : cluster [DBG] pgmap v261: 65 pgs: 6 creating+peering, 43 active+clean, 16 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:50.999 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: cluster 2024-02-10T08:04:49.654327+0000 mon.smithi007 (mon.0) 669 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.661077+0000 mon.smithi007 (mon.0) 670 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.662260+0000 mon.smithi123 (mon.1) 20 : audit [INF] from='client.? 172.21.15.123:0/4107018586' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.672492+0000 mon.smithi007 (mon.0) 671 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.awlrzy", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.676979+0000 mon.smithi007 (mon.0) 672 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.awlrzy", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.678000+0000 mon.smithi007 (mon.0) 673 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 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-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.682595+0000 mon.smithi007 (mon.0) 674 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 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-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.687466+0000 mon.smithi007 (mon.0) 675 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.733333+0000 mon.smithi007 (mon.0) 676 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.736745+0000 mon.smithi007 (mon.0) 677 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.794240+0000 mon.smithi007 (mon.0) 678 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.awlrzy-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.798591+0000 mon.smithi007 (mon.0) 679 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.awlrzy-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-10T08:04:51.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:50 smithi007 bash[14094]: audit 2024-02-10T08:04:49.802901+0000 mon.smithi007 (mon.0) 680 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:04:51.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: cluster 2024-02-10T08:04:49.574280+0000 mgr.smithi007.lzuqsb (mgr.14180) 286 : cluster [DBG] pgmap v261: 65 pgs: 6 creating+peering, 43 active+clean, 16 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:04:51.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: cluster 2024-02-10T08:04:49.654327+0000 mon.smithi007 (mon.0) 669 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-10T08:04:51.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.661077+0000 mon.smithi007 (mon.0) 670 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-10T08:04:51.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.662260+0000 mon.smithi123 (mon.1) 20 : audit [INF] from='client.? 172.21.15.123:0/4107018586' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-10T08:04:51.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.672492+0000 mon.smithi007 (mon.0) 671 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.awlrzy", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-10T08:04:51.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.676979+0000 mon.smithi007 (mon.0) 672 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.awlrzy", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-10T08:04:51.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.678000+0000 mon.smithi007 (mon.0) 673 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 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-10T08:04:51.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.682595+0000 mon.smithi007 (mon.0) 674 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 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-10T08:04:51.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.687466+0000 mon.smithi007 (mon.0) 675 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:04:51.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.733333+0000 mon.smithi007 (mon.0) 676 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-10T08:04:51.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.736745+0000 mon.smithi007 (mon.0) 677 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-10T08:04:51.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.794240+0000 mon.smithi007 (mon.0) 678 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.awlrzy-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-10T08:04:51.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.798591+0000 mon.smithi007 (mon.0) 679 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.awlrzy-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-10T08:04:51.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:50 smithi123 bash[18776]: audit 2024-02-10T08:04:49.802901+0000 mon.smithi007 (mon.0) 680 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:04:51.906 INFO:teuthology.orchestra.run.smithi007.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-10T08:04:51.988 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:51 smithi007 bash[14094]: cephadm 2024-02-10T08:04:49.672195+0000 mgr.smithi007.lzuqsb (mgr.14180) 287 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi007.awlrzy 2024-02-10T08:04:51.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:51 smithi007 bash[14094]: cephadm 2024-02-10T08:04:49.677716+0000 mgr.smithi007.lzuqsb (mgr.14180) 288 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-10T08:04:51.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:51 smithi007 bash[14094]: cephadm 2024-02-10T08:04:49.793484+0000 mgr.smithi007.lzuqsb (mgr.14180) 289 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-10T08:04:51.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:51 smithi007 bash[14094]: cephadm 2024-02-10T08:04:49.793610+0000 mgr.smithi007.lzuqsb (mgr.14180) 290 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi007.awlrzy-rgw 2024-02-10T08:04:51.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:51 smithi007 bash[14094]: cephadm 2024-02-10T08:04:49.804031+0000 mgr.smithi007.lzuqsb (mgr.14180) 291 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi007.awlrzy on smithi007 2024-02-10T08:04:51.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:51 smithi007 bash[14094]: audit 2024-02-10T08:04:50.659134+0000 mon.smithi007 (mon.0) 681 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-10T08:04:51.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:51 smithi007 bash[14094]: cluster 2024-02-10T08:04:50.659265+0000 mon.smithi007 (mon.0) 682 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-10T08:04:51.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:51 smithi007 bash[14094]: audit 2024-02-10T08:04:51.543800+0000 mon.smithi007 (mon.0) 683 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:51.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:51 smithi007 bash[14094]: cluster 2024-02-10T08:04:51.574630+0000 mgr.smithi007.lzuqsb (mgr.14180) 292 : cluster [DBG] pgmap v264: 97 pgs: 6 creating+peering, 47 active+clean, 44 unknown; 92 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 511 B/s wr, 0 op/s 2024-02-10T08:04:52.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:51 smithi123 bash[18776]: cephadm 2024-02-10T08:04:49.672195+0000 mgr.smithi007.lzuqsb (mgr.14180) 287 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi007.awlrzy 2024-02-10T08:04:52.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:51 smithi123 bash[18776]: cephadm 2024-02-10T08:04:49.677716+0000 mgr.smithi007.lzuqsb (mgr.14180) 288 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-10T08:04:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:51 smithi123 bash[18776]: cephadm 2024-02-10T08:04:49.793484+0000 mgr.smithi007.lzuqsb (mgr.14180) 289 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-10T08:04:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:51 smithi123 bash[18776]: cephadm 2024-02-10T08:04:49.793610+0000 mgr.smithi007.lzuqsb (mgr.14180) 290 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi007.awlrzy-rgw 2024-02-10T08:04:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:51 smithi123 bash[18776]: cephadm 2024-02-10T08:04:49.804031+0000 mgr.smithi007.lzuqsb (mgr.14180) 291 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi007.awlrzy on smithi007 2024-02-10T08:04:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:51 smithi123 bash[18776]: audit 2024-02-10T08:04:50.659134+0000 mon.smithi007 (mon.0) 681 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-10T08:04:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:51 smithi123 bash[18776]: cluster 2024-02-10T08:04:50.659265+0000 mon.smithi007 (mon.0) 682 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-10T08:04:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:51 smithi123 bash[18776]: audit 2024-02-10T08:04:51.543800+0000 mon.smithi007 (mon.0) 683 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:52.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:51 smithi123 bash[18776]: cluster 2024-02-10T08:04:51.574630+0000 mgr.smithi007.lzuqsb (mgr.14180) 292 : cluster [DBG] pgmap v264: 97 pgs: 6 creating+peering, 47 active+clean, 44 unknown; 92 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 511 B/s wr, 0 op/s 2024-02-10T08:04:52.694 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:52 smithi007 bash[14094]: cluster 2024-02-10T08:04:51.671836+0000 mon.smithi007 (mon.0) 684 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-10T08:04:52.695 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:52 smithi007 bash[14094]: audit 2024-02-10T08:04:51.677612+0000 mon.smithi123 (mon.1) 21 : audit [INF] from='client.? 172.21.15.123:0/4107018586' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-10T08:04:52.695 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:52 smithi007 bash[14094]: audit 2024-02-10T08:04:51.686003+0000 mon.smithi007 (mon.0) 685 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-10T08:04:52.695 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:52 smithi007 bash[14094]: audit 2024-02-10T08:04:52.677990+0000 mon.smithi007 (mon.0) 686 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-10T08:04:52.695 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:52 smithi007 bash[14094]: cluster 2024-02-10T08:04:52.678175+0000 mon.smithi007 (mon.0) 687 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-10T08:04:53.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:52 smithi123 bash[18776]: cluster 2024-02-10T08:04:51.671836+0000 mon.smithi007 (mon.0) 684 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-10T08:04:53.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:52 smithi123 bash[18776]: audit 2024-02-10T08:04:51.677612+0000 mon.smithi123 (mon.1) 21 : audit [INF] from='client.? 172.21.15.123:0/4107018586' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-10T08:04:53.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:52 smithi123 bash[18776]: audit 2024-02-10T08:04:51.686003+0000 mon.smithi007 (mon.0) 685 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-10T08:04:53.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:52 smithi123 bash[18776]: audit 2024-02-10T08:04:52.677990+0000 mon.smithi007 (mon.0) 686 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-10T08:04:53.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:52 smithi123 bash[18776]: cluster 2024-02-10T08:04:52.678175+0000 mon.smithi007 (mon.0) 687 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-10T08:04:53.240 INFO:teuthology.orchestra.run.smithi007.stdout:Processing triggers for shared-mime-info (1.15-1) ... 2024-02-10T08:04:54.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:53 smithi123 bash[18776]: cluster 2024-02-10T08:04:53.575118+0000 mgr.smithi007.lzuqsb (mgr.14180) 293 : cluster [DBG] pgmap v267: 129 pgs: 22 creating+peering, 78 active+clean, 29 unknown; 965 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 1 op/s 2024-02-10T08:04:54.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:53 smithi123 bash[18776]: cluster 2024-02-10T08:04:53.713341+0000 mon.smithi007 (mon.0) 688 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-10T08:04:54.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:53 smithi123 bash[18776]: audit 2024-02-10T08:04:53.715366+0000 mon.smithi007 (mon.0) 689 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-10T08:04:54.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:53 smithi123 bash[18776]: audit 2024-02-10T08:04:53.715597+0000 mon.smithi007 (mon.0) 690 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-10T08:04:54.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:53 smithi123 bash[18776]: audit 2024-02-10T08:04:53.716321+0000 mon.smithi123 (mon.1) 22 : audit [INF] from='client.? 172.21.15.123:0/2304745307' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-10T08:04:54.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:53 smithi007 bash[14094]: cluster 2024-02-10T08:04:53.575118+0000 mgr.smithi007.lzuqsb (mgr.14180) 293 : cluster [DBG] pgmap v267: 129 pgs: 22 creating+peering, 78 active+clean, 29 unknown; 965 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 1 op/s 2024-02-10T08:04:54.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:53 smithi007 bash[14094]: cluster 2024-02-10T08:04:53.713341+0000 mon.smithi007 (mon.0) 688 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-10T08:04:54.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:53 smithi007 bash[14094]: audit 2024-02-10T08:04:53.715366+0000 mon.smithi007 (mon.0) 689 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-10T08:04:54.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:53 smithi007 bash[14094]: audit 2024-02-10T08:04:53.715597+0000 mon.smithi007 (mon.0) 690 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-10T08:04:54.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:53 smithi007 bash[14094]: audit 2024-02-10T08:04:53.716321+0000 mon.smithi123 (mon.1) 22 : audit [INF] from='client.? 172.21.15.123:0/2304745307' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-10T08:04:55.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:54 smithi123 bash[18776]: audit 2024-02-10T08:04:53.797216+0000 mon.smithi007 (mon.0) 691 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:55.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:54 smithi123 bash[18776]: audit 2024-02-10T08:04:53.807155+0000 mon.smithi007 (mon.0) 692 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:55.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:54 smithi123 bash[18776]: cephadm 2024-02-10T08:04:53.818750+0000 mgr.smithi007.lzuqsb (mgr.14180) 294 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi123.jmfqdl on smithi123 2024-02-10T08:04:55.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:54 smithi123 bash[18776]: audit 2024-02-10T08:04:54.711684+0000 mon.smithi007 (mon.0) 693 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-10T08:04:55.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:54 smithi123 bash[18776]: audit 2024-02-10T08:04:54.711801+0000 mon.smithi007 (mon.0) 694 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-10T08:04:55.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:54 smithi123 bash[18776]: cluster 2024-02-10T08:04:54.712041+0000 mon.smithi007 (mon.0) 695 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-10T08:04:55.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:54 smithi123 bash[18776]: audit 2024-02-10T08:04:54.722853+0000 mon.smithi007 (mon.0) 696 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-10T08:04:55.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:54 smithi123 bash[18776]: audit 2024-02-10T08:04:54.723544+0000 mon.smithi123 (mon.1) 23 : audit [INF] from='client.? 172.21.15.123:0/2304745307' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-10T08:04:55.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:54 smithi123 bash[18776]: audit 2024-02-10T08:04:54.725250+0000 mon.smithi007 (mon.0) 697 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-10T08:04:55.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:54 smithi007 bash[14094]: audit 2024-02-10T08:04:53.797216+0000 mon.smithi007 (mon.0) 691 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:55.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:54 smithi007 bash[14094]: audit 2024-02-10T08:04:53.807155+0000 mon.smithi007 (mon.0) 692 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:55.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:54 smithi007 bash[14094]: cephadm 2024-02-10T08:04:53.818750+0000 mgr.smithi007.lzuqsb (mgr.14180) 294 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi123.jmfqdl on smithi123 2024-02-10T08:04:55.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:54 smithi007 bash[14094]: audit 2024-02-10T08:04:54.711684+0000 mon.smithi007 (mon.0) 693 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-10T08:04:55.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:54 smithi007 bash[14094]: audit 2024-02-10T08:04:54.711801+0000 mon.smithi007 (mon.0) 694 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-10T08:04:55.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:54 smithi007 bash[14094]: cluster 2024-02-10T08:04:54.712041+0000 mon.smithi007 (mon.0) 695 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-10T08:04:55.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:54 smithi007 bash[14094]: audit 2024-02-10T08:04:54.722853+0000 mon.smithi007 (mon.0) 696 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-10T08:04:55.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:54 smithi007 bash[14094]: audit 2024-02-10T08:04:54.723544+0000 mon.smithi123 (mon.1) 23 : audit [INF] from='client.? 172.21.15.123:0/2304745307' entity='client.rgw.foorgw.smithi123.drmpzo' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-10T08:04:55.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:54 smithi007 bash[14094]: audit 2024-02-10T08:04:54.725250+0000 mon.smithi007 (mon.0) 697 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-10T08:04:56.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:55 smithi123 bash[18776]: cluster 2024-02-10T08:04:55.575799+0000 mgr.smithi007.lzuqsb (mgr.14180) 295 : cluster [DBG] pgmap v270: 161 pgs: 30 creating+peering, 113 active+clean, 18 unknown; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.5 KiB/s rd, 1.2 KiB/s wr, 5 op/s 2024-02-10T08:04:56.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:55 smithi123 bash[18776]: audit 2024-02-10T08:04:55.716733+0000 mon.smithi007 (mon.0) 698 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-10T08:04:56.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:55 smithi123 bash[18776]: audit 2024-02-10T08:04:55.716966+0000 mon.smithi007 (mon.0) 699 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-10T08:04:56.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:55 smithi123 bash[18776]: cluster 2024-02-10T08:04:55.717111+0000 mon.smithi007 (mon.0) 700 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-10T08:04:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:55 smithi007 bash[14094]: cluster 2024-02-10T08:04:55.575799+0000 mgr.smithi007.lzuqsb (mgr.14180) 295 : cluster [DBG] pgmap v270: 161 pgs: 30 creating+peering, 113 active+clean, 18 unknown; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.5 KiB/s rd, 1.2 KiB/s wr, 5 op/s 2024-02-10T08:04:56.246 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:55 smithi007 bash[14094]: audit 2024-02-10T08:04:55.716733+0000 mon.smithi007 (mon.0) 698 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi123.drmpzo' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-10T08:04:56.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:55 smithi007 bash[14094]: audit 2024-02-10T08:04:55.716966+0000 mon.smithi007 (mon.0) 699 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-10T08:04:56.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:55 smithi007 bash[14094]: cluster 2024-02-10T08:04:55.717111+0000 mon.smithi007 (mon.0) 700 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-10T08:04:57.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:57 smithi123 bash[18776]: audit 2024-02-10T08:04:56.555689+0000 mon.smithi007 (mon.0) 701 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:57.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:57 smithi007 bash[14094]: audit 2024-02-10T08:04:56.555689+0000 mon.smithi007 (mon.0) 701 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:04:58.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:04:58 smithi123 bash[18776]: cluster 2024-02-10T08:04:57.576992+0000 mgr.smithi007.lzuqsb (mgr.14180) 296 : cluster [DBG] pgmap v272: 161 pgs: 18 creating+peering, 136 active+clean, 7 unknown; 2.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 70 KiB/s rd, 3.7 KiB/s wr, 143 op/s 2024-02-10T08:04:58.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:04:58 smithi007 bash[14094]: cluster 2024-02-10T08:04:57.576992+0000 mgr.smithi007.lzuqsb (mgr.14180) 296 : cluster [DBG] pgmap v272: 161 pgs: 18 creating+peering, 136 active+clean, 7 unknown; 2.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 70 KiB/s rd, 3.7 KiB/s wr, 143 op/s 2024-02-10T08:05:00.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:00 smithi123 bash[18776]: cluster 2024-02-10T08:04:59.578308+0000 mgr.smithi007.lzuqsb (mgr.14180) 297 : cluster [DBG] pgmap v273: 161 pgs: 5 creating+peering, 156 active+clean; 4.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 139 KiB/s rd, 7.0 KiB/s wr, 284 op/s 2024-02-10T08:05:00.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:00 smithi007 bash[14094]: cluster 2024-02-10T08:04:59.578308+0000 mgr.smithi007.lzuqsb (mgr.14180) 297 : cluster [DBG] pgmap v273: 161 pgs: 5 creating+peering, 156 active+clean; 4.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 139 KiB/s rd, 7.0 KiB/s wr, 284 op/s 2024-02-10T08:05:02.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:02 smithi123 bash[18776]: cluster 2024-02-10T08:05:01.579182+0000 mgr.smithi007.lzuqsb (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; 108 KiB/s rd, 5.3 KiB/s wr, 222 op/s 2024-02-10T08:05:02.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:02 smithi007 bash[14094]: cluster 2024-02-10T08:05:01.579182+0000 mgr.smithi007.lzuqsb (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; 108 KiB/s rd, 5.3 KiB/s wr, 222 op/s 2024-02-10T08:05:04.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:04 smithi123 bash[18776]: cluster 2024-02-10T08:05:03.580387+0000 mgr.smithi007.lzuqsb (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; 95 KiB/s rd, 4.4 KiB/s wr, 195 op/s 2024-02-10T08:05:04.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:04 smithi007 bash[14094]: cluster 2024-02-10T08:05:03.580387+0000 mgr.smithi007.lzuqsb (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; 95 KiB/s rd, 4.4 KiB/s wr, 195 op/s 2024-02-10T08:05:05.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:05 smithi123 bash[18776]: audit 2024-02-10T08:05:04.658544+0000 mon.smithi007 (mon.0) 702 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:05.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:05 smithi123 bash[18776]: cephadm 2024-02-10T08:05:04.662498+0000 mgr.smithi007.lzuqsb (mgr.14180) 300 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi007.xabkol on smithi007 2024-02-10T08:05:05.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:05 smithi007 bash[14094]: audit 2024-02-10T08:05:04.658544+0000 mon.smithi007 (mon.0) 702 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:05.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:05 smithi007 bash[14094]: cephadm 2024-02-10T08:05:04.662498+0000 mgr.smithi007.lzuqsb (mgr.14180) 300 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi007.xabkol on smithi007 2024-02-10T08:05:06.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:06 smithi007 bash[14094]: cluster 2024-02-10T08:05:05.581706+0000 mgr.smithi007.lzuqsb (mgr.14180) 301 : cluster [DBG] pgmap v276: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 84 KiB/s rd, 3.9 KiB/s wr, 173 op/s 2024-02-10T08:05:07.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:06 smithi123 bash[18776]: cluster 2024-02-10T08:05:05.581706+0000 mgr.smithi007.lzuqsb (mgr.14180) 301 : cluster [DBG] pgmap v276: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 84 KiB/s rd, 3.9 KiB/s wr, 173 op/s 2024-02-10T08:05:08.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:08 smithi123 bash[18776]: cluster 2024-02-10T08:05:07.582845+0000 mgr.smithi007.lzuqsb (mgr.14180) 302 : cluster [DBG] pgmap v277: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 71 KiB/s rd, 3.3 KiB/s wr, 146 op/s 2024-02-10T08:05:08.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:08 smithi007 bash[14094]: cluster 2024-02-10T08:05:07.582845+0000 mgr.smithi007.lzuqsb (mgr.14180) 302 : cluster [DBG] pgmap v277: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 71 KiB/s rd, 3.3 KiB/s wr, 146 op/s 2024-02-10T08:05:10.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:10 smithi123 bash[18776]: cluster 2024-02-10T08:05:09.583837+0000 mgr.smithi007.lzuqsb (mgr.14180) 303 : cluster [DBG] pgmap v278: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 43 KiB/s rd, 2.1 KiB/s wr, 87 op/s 2024-02-10T08:05:10.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:10 smithi007 bash[14094]: cluster 2024-02-10T08:05:09.583837+0000 mgr.smithi007.lzuqsb (mgr.14180) 303 : cluster [DBG] pgmap v278: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 43 KiB/s rd, 2.1 KiB/s wr, 87 op/s 2024-02-10T08:05:12.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:12 smithi123 bash[18776]: audit 2024-02-10T08:05:11.575140+0000 mon.smithi007 (mon.0) 703 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:12.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:12 smithi123 bash[18776]: cluster 2024-02-10T08:05:11.584646+0000 mgr.smithi007.lzuqsb (mgr.14180) 304 : cluster [DBG] pgmap v279: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.9 KiB/s rd, 85 B/s wr, 3 op/s 2024-02-10T08:05:12.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:12 smithi007 bash[14094]: audit 2024-02-10T08:05:11.575140+0000 mon.smithi007 (mon.0) 703 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:12.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:12 smithi007 bash[14094]: cluster 2024-02-10T08:05:11.584646+0000 mgr.smithi007.lzuqsb (mgr.14180) 304 : cluster [DBG] pgmap v279: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.9 KiB/s rd, 85 B/s wr, 3 op/s 2024-02-10T08:05:14.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:14 smithi123 bash[18776]: cluster 2024-02-10T08:05:13.585974+0000 mgr.smithi007.lzuqsb (mgr.14180) 305 : cluster [DBG] pgmap v280: 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-10T08:05:14.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:14 smithi007 bash[14094]: cluster 2024-02-10T08:05:13.585974+0000 mgr.smithi007.lzuqsb (mgr.14180) 305 : cluster [DBG] pgmap v280: 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-10T08:05:16.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:16 smithi123 bash[18776]: cluster 2024-02-10T08:05:15.587326+0000 mgr.smithi007.lzuqsb (mgr.14180) 306 : 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-10T08:05:16.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:16 smithi007 bash[14094]: cluster 2024-02-10T08:05:15.587326+0000 mgr.smithi007.lzuqsb (mgr.14180) 306 : 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-10T08:05:18.852 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:18 smithi007 bash[14094]: cluster 2024-02-10T08:05:17.588449+0000 mgr.smithi007.lzuqsb (mgr.14180) 307 : 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-10T08:05:18.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:18 smithi123 bash[18776]: cluster 2024-02-10T08:05:17.588449+0000 mgr.smithi007.lzuqsb (mgr.14180) 307 : 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-10T08:05:20.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:20 smithi123 bash[18776]: audit 2024-02-10T08:05:19.381845+0000 mon.smithi007 (mon.0) 704 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:20.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:20 smithi123 bash[18776]: audit 2024-02-10T08:05:19.390198+0000 mon.smithi007 (mon.0) 705 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:20.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:20 smithi123 bash[18776]: cephadm 2024-02-10T08:05:19.391002+0000 mgr.smithi007.lzuqsb (mgr.14180) 308 : cephadm [INF] 10.0.31.7 is in 10.0.0.0/16 on smithi007 interface ens1f0 2024-02-10T08:05:20.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:20 smithi123 bash[18776]: cephadm 2024-02-10T08:05:19.398667+0000 mgr.smithi007.lzuqsb (mgr.14180) 309 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi007.uxyjqj on smithi007 2024-02-10T08:05:20.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:20 smithi123 bash[18776]: cluster 2024-02-10T08:05:19.589287+0000 mgr.smithi007.lzuqsb (mgr.14180) 310 : cluster [DBG] pgmap v283: 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-10T08:05:20.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:20 smithi007 bash[14094]: audit 2024-02-10T08:05:19.381845+0000 mon.smithi007 (mon.0) 704 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:20.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:20 smithi007 bash[14094]: audit 2024-02-10T08:05:19.390198+0000 mon.smithi007 (mon.0) 705 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:20.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:20 smithi007 bash[14094]: cephadm 2024-02-10T08:05:19.391002+0000 mgr.smithi007.lzuqsb (mgr.14180) 308 : cephadm [INF] 10.0.31.7 is in 10.0.0.0/16 on smithi007 interface ens1f0 2024-02-10T08:05:20.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:20 smithi007 bash[14094]: cephadm 2024-02-10T08:05:19.398667+0000 mgr.smithi007.lzuqsb (mgr.14180) 309 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi007.uxyjqj on smithi007 2024-02-10T08:05:20.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:20 smithi007 bash[14094]: cluster 2024-02-10T08:05:19.589287+0000 mgr.smithi007.lzuqsb (mgr.14180) 310 : cluster [DBG] pgmap v283: 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-10T08:05:22.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:22 smithi123 bash[18776]: cluster 2024-02-10T08:05:21.590092+0000 mgr.smithi007.lzuqsb (mgr.14180) 311 : 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-10T08:05:22.917 INFO:teuthology.orchestra.run.smithi007.stdout:Processing triggers for sgml-base (1.29.1) ... 2024-02-10T08:05:22.976 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:22 smithi007 bash[14094]: cluster 2024-02-10T08:05:21.590092+0000 mgr.smithi007.lzuqsb (mgr.14180) 311 : 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-10T08:05:23.126 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up python3-docutils (0.16+dfsg-2) ... 2024-02-10T08:05:23.698 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 2024-02-10T08:05:23.729 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 2024-02-10T08:05:23.755 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode 2024-02-10T08:05:23.792 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode 2024-02-10T08:05:23.861 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 2024-02-10T08:05:23.908 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 2024-02-10T08:05:23.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:23 smithi123 bash[18776]: audit 2024-02-10T08:05:23.513132+0000 mon.smithi007 (mon.0) 706 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]: dispatch 2024-02-10T08:05:23.965 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 2024-02-10T08:05:23.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:23 smithi007 bash[14094]: audit 2024-02-10T08:05:23.513132+0000 mon.smithi007 (mon.0) 706 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]: dispatch 2024-02-10T08:05:24.016 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 2024-02-10T08:05:24.060 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 2024-02-10T08:05:24.103 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 2024-02-10T08:05:24.128 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 2024-02-10T08:05:24.157 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 2024-02-10T08:05:24.189 INFO:teuthology.orchestra.run.smithi007.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 2024-02-10T08:05:24.652 INFO:teuthology.orchestra.run.smithi007.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-10T08:05:24.874 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up python3-botocore (1.16.19+repack-1ubuntu0.20.04.1) ... 2024-02-10T08:05:24.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:24 smithi007 bash[14094]: cluster 2024-02-10T08:05:23.591575+0000 mgr.smithi007.lzuqsb (mgr.14180) 312 : cluster [DBG] pgmap v285: 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-10T08:05:24.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:24 smithi007 bash[14094]: audit 2024-02-10T08:05:23.660683+0000 mon.smithi007 (mon.0) 707 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]': finished 2024-02-10T08:05:24.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:24 smithi007 bash[14094]: cluster 2024-02-10T08:05:23.660766+0000 mon.smithi007 (mon.0) 708 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-10T08:05:25.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:24 smithi123 bash[18776]: cluster 2024-02-10T08:05:23.591575+0000 mgr.smithi007.lzuqsb (mgr.14180) 312 : cluster [DBG] pgmap v285: 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-10T08:05:25.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:24 smithi123 bash[18776]: audit 2024-02-10T08:05:23.660683+0000 mon.smithi007 (mon.0) 707 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]': finished 2024-02-10T08:05:25.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:24 smithi123 bash[18776]: cluster 2024-02-10T08:05:23.660766+0000 mon.smithi007 (mon.0) 708 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-10T08:05:25.386 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up python3-s3transfer (0.3.3-1) ... 2024-02-10T08:05:25.988 INFO:teuthology.orchestra.run.smithi007.stdout:Setting up python3-boto3 (1.9.253-1) ... 2024-02-10T08:05:25.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:25 smithi007 bash[14094]: cluster 2024-02-10T08:05:24.662873+0000 mon.smithi007 (mon.0) 709 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-10T08:05:26.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:25 smithi123 bash[18776]: cluster 2024-02-10T08:05:24.662873+0000 mon.smithi007 (mon.0) 709 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-10T08:05:26.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:26 smithi007 bash[14094]: cluster 2024-02-10T08:05:25.592283+0000 mgr.smithi007.lzuqsb (mgr.14180) 313 : cluster [DBG] pgmap v288: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-10T08:05:27.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:26 smithi123 bash[18776]: cluster 2024-02-10T08:05:25.592283+0000 mgr.smithi007.lzuqsb (mgr.14180) 313 : cluster [DBG] pgmap v288: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-10T08:05:27.546 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T08:05:27.603 INFO:teuthology.orchestra.run.smithi007.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-02-10T08:05:28.859 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:28 smithi007 bash[14094]: cluster 2024-02-10T08:05:27.593424+0000 mgr.smithi007.lzuqsb (mgr.14180) 314 : cluster [DBG] pgmap v289: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:05:28.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:28 smithi123 bash[18776]: cluster 2024-02-10T08:05:27.593424+0000 mgr.smithi007.lzuqsb (mgr.14180) 314 : cluster [DBG] pgmap v289: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-10T08:05:30.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:30 smithi007 bash[14094]: audit 2024-02-10T08:05:29.450630+0000 mon.smithi007 (mon.0) 710 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:30.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:30 smithi007 bash[14094]: cephadm 2024-02-10T08:05:29.454251+0000 mgr.smithi007.lzuqsb (mgr.14180) 315 : cephadm [INF] 10.0.31.7 is in 10.0.0.0/16 on smithi123 interface enp3s0f1 2024-02-10T08:05:30.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:30 smithi007 bash[14094]: cephadm 2024-02-10T08:05:29.454774+0000 mgr.smithi007.lzuqsb (mgr.14180) 316 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi123.clasia on smithi123 2024-02-10T08:05:30.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:30 smithi007 bash[14094]: cluster 2024-02-10T08:05:29.594263+0000 mgr.smithi007.lzuqsb (mgr.14180) 317 : cluster [DBG] pgmap v290: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-10T08:05:30.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:30 smithi123 bash[18776]: audit 2024-02-10T08:05:29.450630+0000 mon.smithi007 (mon.0) 710 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:30.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:30 smithi123 bash[18776]: cephadm 2024-02-10T08:05:29.454251+0000 mgr.smithi007.lzuqsb (mgr.14180) 315 : cephadm [INF] 10.0.31.7 is in 10.0.0.0/16 on smithi123 interface enp3s0f1 2024-02-10T08:05:30.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:30 smithi123 bash[18776]: cephadm 2024-02-10T08:05:29.454774+0000 mgr.smithi007.lzuqsb (mgr.14180) 316 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi123.clasia on smithi123 2024-02-10T08:05:30.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:30 smithi123 bash[18776]: cluster 2024-02-10T08:05:29.594263+0000 mgr.smithi007.lzuqsb (mgr.14180) 317 : cluster [DBG] pgmap v290: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-10T08:05:32.397 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 2024-02-10T08:05:32.424 INFO:teuthology.orchestra.run.smithi007.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:a9c1a3337ae6b9328bb9087151b372dee3bd15abdc1220ab67654538650c50dc 2024-02-10T08:05:32.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:32 smithi007 bash[14094]: cluster 2024-02-10T08:05:31.595100+0000 mgr.smithi007.lzuqsb (mgr.14180) 318 : cluster [DBG] pgmap v291: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-10T08:05:32.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:32 smithi123 bash[18776]: cluster 2024-02-10T08:05:31.595100+0000 mgr.smithi007.lzuqsb (mgr.14180) 318 : cluster [DBG] pgmap v291: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-10T08:05:34.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:34 smithi007 bash[14094]: cluster 2024-02-10T08:05:33.596419+0000 mgr.smithi007.lzuqsb (mgr.14180) 319 : cluster [DBG] pgmap v292: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-02-10T08:05:34.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:34 smithi123 bash[18776]: cluster 2024-02-10T08:05:33.596419+0000 mgr.smithi007.lzuqsb (mgr.14180) 319 : cluster [DBG] pgmap v292: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-02-10T08:05:36.382 INFO:teuthology.run_tasks:Running task python... 2024-02-10T08:05:36.394 INFO:tasks.python:Running python on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-02-10T08:05:36.394 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-10T08:05:36.394 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-02-10T08:05:36.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:36 smithi123 bash[18776]: cluster 2024-02-10T08:05:35.597283+0000 mgr.smithi007.lzuqsb (mgr.14180) 320 : cluster [DBG] pgmap v293: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-10T08:05:36.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:36 smithi007 bash[14094]: cluster 2024-02-10T08:05:35.597283+0000 mgr.smithi007.lzuqsb (mgr.14180) 320 : cluster [DBG] pgmap v293: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-10T08:05:38.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:38 smithi007 bash[14094]: cluster 2024-02-10T08:05:37.598355+0000 mgr.smithi007.lzuqsb (mgr.14180) 321 : cluster [DBG] pgmap v294: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 170 B/s wr, 0 op/s 2024-02-10T08:05:38.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:38 smithi007 bash[14094]: cluster 2024-02-10T08:05:37.670215+0000 mon.smithi007 (mon.0) 711 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-10T08:05:38.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:38 smithi007 bash[14094]: audit 2024-02-10T08:05:37.672250+0000 mon.smithi007 (mon.0) 712 : audit [INF] from='client.? 172.21.15.7:0/1157569058' entity='client.rgw.foorgw.smithi007.wnaomv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-10T08:05:38.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:38 smithi007 bash[14094]: audit 2024-02-10T08:05:37.950213+0000 mon.smithi007 (mon.0) 713 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:38.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:38 smithi007 bash[14094]: audit 2024-02-10T08:05:37.952703+0000 mon.smithi007 (mon.0) 714 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:05:39.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:38 smithi123 bash[18776]: cluster 2024-02-10T08:05:37.598355+0000 mgr.smithi007.lzuqsb (mgr.14180) 321 : cluster [DBG] pgmap v294: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 170 B/s wr, 0 op/s 2024-02-10T08:05:39.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:38 smithi123 bash[18776]: cluster 2024-02-10T08:05:37.670215+0000 mon.smithi007 (mon.0) 711 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-10T08:05:39.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:38 smithi123 bash[18776]: audit 2024-02-10T08:05:37.672250+0000 mon.smithi007 (mon.0) 712 : audit [INF] from='client.? 172.21.15.7:0/1157569058' entity='client.rgw.foorgw.smithi007.wnaomv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-10T08:05:39.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:38 smithi123 bash[18776]: audit 2024-02-10T08:05:37.950213+0000 mon.smithi007 (mon.0) 713 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:39.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:38 smithi123 bash[18776]: audit 2024-02-10T08:05:37.952703+0000 mon.smithi007 (mon.0) 714 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:05:39.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:39 smithi007 bash[14094]: audit 2024-02-10T08:05:38.672637+0000 mon.smithi007 (mon.0) 715 : audit [INF] from='client.? 172.21.15.7:0/1157569058' entity='client.rgw.foorgw.smithi007.wnaomv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-10T08:05:39.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:39 smithi007 bash[14094]: cluster 2024-02-10T08:05:38.673157+0000 mon.smithi007 (mon.0) 716 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-10T08:05:39.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:39 smithi007 bash[14094]: audit 2024-02-10T08:05:38.687141+0000 mon.smithi007 (mon.0) 717 : audit [INF] from='client.? 172.21.15.7:0/1157569058' entity='client.rgw.foorgw.smithi007.wnaomv' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-10T08:05:39.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:39 smithi007 bash[14094]: cluster 2024-02-10T08:05:39.599439+0000 mgr.smithi007.lzuqsb (mgr.14180) 322 : cluster [DBG] pgmap v297: 193 pgs: 4 creating+peering, 18 unknown, 171 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1023 B/s rd, 255 B/s wr, 1 op/s 2024-02-10T08:05:40.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:39 smithi123 bash[18776]: audit 2024-02-10T08:05:38.672637+0000 mon.smithi007 (mon.0) 715 : audit [INF] from='client.? 172.21.15.7:0/1157569058' entity='client.rgw.foorgw.smithi007.wnaomv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-10T08:05:40.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:39 smithi123 bash[18776]: cluster 2024-02-10T08:05:38.673157+0000 mon.smithi007 (mon.0) 716 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-10T08:05:40.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:39 smithi123 bash[18776]: audit 2024-02-10T08:05:38.687141+0000 mon.smithi007 (mon.0) 717 : audit [INF] from='client.? 172.21.15.7:0/1157569058' entity='client.rgw.foorgw.smithi007.wnaomv' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-10T08:05:40.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:39 smithi123 bash[18776]: cluster 2024-02-10T08:05:39.599439+0000 mgr.smithi007.lzuqsb (mgr.14180) 322 : cluster [DBG] pgmap v297: 193 pgs: 4 creating+peering, 18 unknown, 171 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1023 B/s rd, 255 B/s wr, 1 op/s 2024-02-10T08:05:40.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:40 smithi007 bash[14094]: audit 2024-02-10T08:05:39.687899+0000 mon.smithi007 (mon.0) 718 : audit [INF] from='client.? 172.21.15.7:0/1157569058' entity='client.rgw.foorgw.smithi007.wnaomv' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-10T08:05:40.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:40 smithi007 bash[14094]: cluster 2024-02-10T08:05:39.688102+0000 mon.smithi007 (mon.0) 719 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-02-10T08:05:41.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:40 smithi123 bash[18776]: audit 2024-02-10T08:05:39.687899+0000 mon.smithi007 (mon.0) 718 : audit [INF] from='client.? 172.21.15.7:0/1157569058' entity='client.rgw.foorgw.smithi007.wnaomv' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-10T08:05:41.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:40 smithi123 bash[18776]: cluster 2024-02-10T08:05:39.688102+0000 mon.smithi007 (mon.0) 719 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-02-10T08:05:41.796 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-10T08:05:41.807 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-02-10T08:05:41.807 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-02-10T08:05:41.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:41 smithi007 bash[14094]: cluster 2024-02-10T08:05:40.704671+0000 mon.smithi007 (mon.0) 720 : cluster [DBG] osdmap e62: 8 total, 8 up, 8 in 2024-02-10T08:05:41.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:41 smithi007 bash[14094]: audit 2024-02-10T08:05:40.706228+0000 mon.smithi007 (mon.0) 721 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-10T08:05:41.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:41 smithi007 bash[14094]: cluster 2024-02-10T08:05:41.600382+0000 mgr.smithi007.lzuqsb (mgr.14180) 323 : cluster [DBG] pgmap v300: 225 pgs: 4 creating+peering, 48 unknown, 173 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 1 op/s 2024-02-10T08:05:41.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:41 smithi007 bash[14094]: audit 2024-02-10T08:05:41.606974+0000 mon.smithi007 (mon.0) 722 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:42.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:41 smithi123 bash[18776]: cluster 2024-02-10T08:05:40.704671+0000 mon.smithi007 (mon.0) 720 : cluster [DBG] osdmap e62: 8 total, 8 up, 8 in 2024-02-10T08:05:42.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:41 smithi123 bash[18776]: audit 2024-02-10T08:05:40.706228+0000 mon.smithi007 (mon.0) 721 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-10T08:05:42.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:41 smithi123 bash[18776]: cluster 2024-02-10T08:05:41.600382+0000 mgr.smithi007.lzuqsb (mgr.14180) 323 : cluster [DBG] pgmap v300: 225 pgs: 4 creating+peering, 48 unknown, 173 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 1 op/s 2024-02-10T08:05:42.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:41 smithi123 bash[18776]: audit 2024-02-10T08:05:41.606974+0000 mon.smithi007 (mon.0) 722 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:42.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:42 smithi007 bash[14094]: audit 2024-02-10T08:05:41.716501+0000 mon.smithi007 (mon.0) 723 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-10T08:05:42.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:42 smithi007 bash[14094]: cluster 2024-02-10T08:05:41.716942+0000 mon.smithi007 (mon.0) 724 : cluster [DBG] osdmap e63: 8 total, 8 up, 8 in 2024-02-10T08:05:43.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:42 smithi123 bash[18776]: audit 2024-02-10T08:05:41.716501+0000 mon.smithi007 (mon.0) 723 : audit [INF] from='client.? 172.21.15.7:0/999349740' entity='client.rgw.foorgw.smithi007.wnaomv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-10T08:05:43.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:42 smithi123 bash[18776]: cluster 2024-02-10T08:05:41.716942+0000 mon.smithi007 (mon.0) 724 : cluster [DBG] osdmap e63: 8 total, 8 up, 8 in 2024-02-10T08:05:43.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:43 smithi007 bash[14094]: cluster 2024-02-10T08:05:42.719488+0000 mon.smithi007 (mon.0) 725 : cluster [DBG] osdmap e64: 8 total, 8 up, 8 in 2024-02-10T08:05:43.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:43 smithi007 bash[14094]: cluster 2024-02-10T08:05:43.601070+0000 mgr.smithi007.lzuqsb (mgr.14180) 324 : cluster [DBG] pgmap v303: 225 pgs: 12 unknown, 213 active+clean; 6.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 1.2 KiB/s wr, 6 op/s 2024-02-10T08:05:44.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:43 smithi123 bash[18776]: cluster 2024-02-10T08:05:42.719488+0000 mon.smithi007 (mon.0) 725 : cluster [DBG] osdmap e64: 8 total, 8 up, 8 in 2024-02-10T08:05:44.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:43 smithi123 bash[18776]: cluster 2024-02-10T08:05:43.601070+0000 mgr.smithi007.lzuqsb (mgr.14180) 324 : cluster [DBG] pgmap v303: 225 pgs: 12 unknown, 213 active+clean; 6.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 1.2 KiB/s wr, 6 op/s 2024-02-10T08:05:44.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:44 smithi007 bash[14094]: audit 2024-02-10T08:05:43.736400+0000 mon.smithi007 (mon.0) 726 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:44.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:44 smithi007 bash[14094]: audit 2024-02-10T08:05:44.227132+0000 mon.smithi007 (mon.0) 727 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:44.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:44 smithi007 bash[14094]: audit 2024-02-10T08:05:44.498046+0000 mon.smithi007 (mon.0) 728 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:05:44.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:44 smithi007 bash[14094]: audit 2024-02-10T08:05:44.499003+0000 mon.smithi007 (mon.0) 729 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:05:44.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:44 smithi007 bash[14094]: cephadm 2024-02-10T08:05:44.503228+0000 mgr.smithi007.lzuqsb (mgr.14180) 325 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-10T08:05:45.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:44 smithi123 bash[18776]: audit 2024-02-10T08:05:43.736400+0000 mon.smithi007 (mon.0) 726 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:45.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:44 smithi123 bash[18776]: audit 2024-02-10T08:05:44.227132+0000 mon.smithi007 (mon.0) 727 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:45.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:44 smithi123 bash[18776]: audit 2024-02-10T08:05:44.498046+0000 mon.smithi007 (mon.0) 728 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:05:45.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:44 smithi123 bash[18776]: audit 2024-02-10T08:05:44.499003+0000 mon.smithi007 (mon.0) 729 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:05:45.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:44 smithi123 bash[18776]: cephadm 2024-02-10T08:05:44.503228+0000 mgr.smithi007.lzuqsb (mgr.14180) 325 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-10T08:05:45.582 INFO:teuthology.orchestra.run.smithi007.stdout:{ 2024-02-10T08:05:45.583 INFO:teuthology.orchestra.run.smithi007.stdout: "bind": "/foouser", 2024-02-10T08:05:45.583 INFO:teuthology.orchestra.run.smithi007.stdout: "path": "/", 2024-02-10T08:05:45.583 INFO:teuthology.orchestra.run.smithi007.stdout: "cluster": "foo", 2024-02-10T08:05:45.583 INFO:teuthology.orchestra.run.smithi007.stdout: "mode": "RW", 2024-02-10T08:05:45.583 INFO:teuthology.orchestra.run.smithi007.stdout: "squash": "none" 2024-02-10T08:05:45.583 INFO:teuthology.orchestra.run.smithi007.stdout:} 2024-02-10T08:05:45.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:45 smithi007 bash[14094]: audit 2024-02-10T08:05:44.916451+0000 mon.smithi007 (mon.0) 730 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:45.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:45 smithi007 bash[14094]: audit 2024-02-10T08:05:44.926285+0000 mon.smithi007 (mon.0) 731 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:45.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:45 smithi007 bash[14094]: audit 2024-02-10T08:05:44.934060+0000 mon.smithi007 (mon.0) 732 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:45.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:45 smithi007 bash[14094]: audit 2024-02-10T08:05:44.946040+0000 mon.smithi007 (mon.0) 733 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:05:45.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:45 smithi007 bash[14094]: audit 2024-02-10T08:05:44.968796+0000 mon.smithi007 (mon.0) 734 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:45.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:45 smithi007 bash[14094]: cephadm 2024-02-10T08:05:44.975492+0000 mgr.smithi007.lzuqsb (mgr.14180) 326 : cephadm [INF] Reconfiguring prometheus.smithi007 (dependencies changed)... 2024-02-10T08:05:45.998 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:45 smithi007 bash[14094]: cephadm 2024-02-10T08:05:44.987181+0000 mgr.smithi007.lzuqsb (mgr.14180) 327 : cephadm [INF] Reconfiguring daemon prometheus.smithi007 on smithi007 2024-02-10T08:05:45.998 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:45 smithi007 bash[14094]: audit 2024-02-10T08:05:45.382902+0000 mgr.smithi007.lzuqsb (mgr.14180) 328 : audit [DBG] from='client.14608 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:05:45.998 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:45 smithi007 bash[14094]: cluster 2024-02-10T08:05:45.602192+0000 mgr.smithi007.lzuqsb (mgr.14180) 329 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 6.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.0 KiB/s rd, 1.4 KiB/s wr, 6 op/s 2024-02-10T08:05:46.415 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:45 smithi123 bash[18776]: audit 2024-02-10T08:05:44.916451+0000 mon.smithi007 (mon.0) 730 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:46.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:45 smithi123 bash[18776]: audit 2024-02-10T08:05:44.926285+0000 mon.smithi007 (mon.0) 731 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:46.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:45 smithi123 bash[18776]: audit 2024-02-10T08:05:44.934060+0000 mon.smithi007 (mon.0) 732 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:46.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:45 smithi123 bash[18776]: audit 2024-02-10T08:05:44.946040+0000 mon.smithi007 (mon.0) 733 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:05:46.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:45 smithi123 bash[18776]: audit 2024-02-10T08:05:44.968796+0000 mon.smithi007 (mon.0) 734 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:46.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:45 smithi123 bash[18776]: cephadm 2024-02-10T08:05:44.975492+0000 mgr.smithi007.lzuqsb (mgr.14180) 326 : cephadm [INF] Reconfiguring prometheus.smithi007 (dependencies changed)... 2024-02-10T08:05:46.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:45 smithi123 bash[18776]: cephadm 2024-02-10T08:05:44.987181+0000 mgr.smithi007.lzuqsb (mgr.14180) 327 : cephadm [INF] Reconfiguring daemon prometheus.smithi007 on smithi007 2024-02-10T08:05:46.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:45 smithi123 bash[18776]: audit 2024-02-10T08:05:45.382902+0000 mgr.smithi007.lzuqsb (mgr.14180) 328 : audit [DBG] from='client.14608 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-10T08:05:46.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:45 smithi123 bash[18776]: cluster 2024-02-10T08:05:45.602192+0000 mgr.smithi007.lzuqsb (mgr.14180) 329 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 6.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.0 KiB/s rd, 1.4 KiB/s wr, 6 op/s 2024-02-10T08:05:46.908 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-10T08:05:46.918 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-02-10T08:05:46.918 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph orch ls -f json 2024-02-10T08:05:48.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:48 smithi123 bash[18776]: cluster 2024-02-10T08:05:47.603568+0000 mgr.smithi007.lzuqsb (mgr.14180) 330 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 6.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.4 KiB/s rd, 1.3 KiB/s wr, 16 op/s 2024-02-10T08:05:48.971 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:48 smithi007 bash[14094]: cluster 2024-02-10T08:05:47.603568+0000 mgr.smithi007.lzuqsb (mgr.14180) 330 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 6.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.4 KiB/s rd, 1.3 KiB/s wr, 16 op/s 2024-02-10T08:05:50.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:50 smithi123 bash[18776]: cluster 2024-02-10T08:05:49.605187+0000 mgr.smithi007.lzuqsb (mgr.14180) 331 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.4 KiB/s wr, 20 op/s 2024-02-10T08:05:50.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:50 smithi007 bash[14094]: cluster 2024-02-10T08:05:49.605187+0000 mgr.smithi007.lzuqsb (mgr.14180) 331 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.4 KiB/s wr, 20 op/s 2024-02-10T08:05:52.624 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:05:52.624 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-10T07:56:06.134741Z", "last_refresh": "2024-02-10T08:05:44.214730Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-10T07:55:58.048017Z", "last_refresh": "2024-02-10T08:05:43.725139Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-10T07:56:02.148071Z", "last_refresh": "2024-02-10T08:05:44.215032Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-10T08:04:35.682762Z 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.7/16"}, "status": {"created": "2024-02-10T08:04:35.677880Z", "last_refresh": "2024-02-10T08:05:43.726926Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-10T07:55:56.049128Z", "last_refresh": "2024-02-10T08:05:43.725467Z", "running": 2, "size": 2}}, {"events": ["2024-02-10T07:57:41.332763Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-10T07:57:41.327053Z", "last_refresh": "2024-02-10T08:05:43.725633Z", "running": 2, "size": 2}}, {"events": ["2024-02-10T08:04:35.675306Z 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-10T08:04:35.669852Z", "last_refresh": "2024-02-10T08:05:44.216210Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-10T07:56:04.139640Z", "last_refresh": "2024-02-10T08:05:43.725789Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-10T07:58:22.828202Z 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-10T07:58:22.823214Z", "last_refresh": "2024-02-10T08:05:43.725939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-10T07:56:00.151419Z", "last_refresh": "2024-02-10T08:05:44.215325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-10T08:04:29.798368Z 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-10T08:04:43.502154Z", "last_refresh": "2024-02-10T08:05:43.726710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-10T08:05:52.747 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:52 smithi007 bash[14094]: cluster 2024-02-10T08:05:51.606165+0000 mgr.smithi007.lzuqsb (mgr.14180) 332 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.2 KiB/s wr, 19 op/s 2024-02-10T08:05:53.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:52 smithi123 bash[18776]: cluster 2024-02-10T08:05:51.606165+0000 mgr.smithi007.lzuqsb (mgr.14180) 332 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.2 KiB/s wr, 19 op/s 2024-02-10T08:05:53.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:53 smithi007 bash[14094]: audit 2024-02-10T08:05:52.610725+0000 mgr.smithi007.lzuqsb (mgr.14180) 333 : audit [DBG] from='client.14632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-10T08:05:53.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:53 smithi007 bash[14094]: audit 2024-02-10T08:05:53.604488+0000 mon.smithi007 (mon.0) 735 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:53.998 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:53 smithi007 bash[14094]: audit 2024-02-10T08:05:53.610666+0000 mon.smithi007 (mon.0) 736 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-10T08:05:53.998 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:53 smithi007 bash[14094]: audit 2024-02-10T08:05:53.615688+0000 mon.smithi007 (mon.0) 737 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:05:54.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:53 smithi123 bash[18776]: audit 2024-02-10T08:05:52.610725+0000 mgr.smithi007.lzuqsb (mgr.14180) 333 : audit [DBG] from='client.14632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-10T08:05:54.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:53 smithi123 bash[18776]: audit 2024-02-10T08:05:53.604488+0000 mon.smithi007 (mon.0) 735 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:54.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:53 smithi123 bash[18776]: audit 2024-02-10T08:05:53.610666+0000 mon.smithi007 (mon.0) 736 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-10T08:05:54.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:53 smithi123 bash[18776]: audit 2024-02-10T08:05:53.615688+0000 mon.smithi007 (mon.0) 737 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-10T08:05:54.320 INFO:tasks.cephadm:nfs.foo has 1/1 2024-02-10T08:05:54.321 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-10T08:05:54.331 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-02-10T08:05:54.332 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0e714d9a4bd2a821113e6318adb87bd06cf81ec1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 -- ceph orch ls -f json 2024-02-10T08:05:54.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:54 smithi007 bash[14094]: cluster 2024-02-10T08:05:53.607150+0000 mgr.smithi007.lzuqsb (mgr.14180) 334 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 10 KiB/s rd, 658 B/s wr, 15 op/s 2024-02-10T08:05:54.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:54 smithi007 bash[14094]: audit 2024-02-10T08:05:53.611361+0000 mgr.smithi007.lzuqsb (mgr.14180) 335 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-10T08:05:55.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:54 smithi123 bash[18776]: cluster 2024-02-10T08:05:53.607150+0000 mgr.smithi007.lzuqsb (mgr.14180) 334 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 10 KiB/s rd, 658 B/s wr, 15 op/s 2024-02-10T08:05:55.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:54 smithi123 bash[18776]: audit 2024-02-10T08:05:53.611361+0000 mgr.smithi007.lzuqsb (mgr.14180) 335 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-10T08:05:56.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:56 smithi007 bash[14094]: cluster 2024-02-10T08:05:55.610559+0000 mgr.smithi007.lzuqsb (mgr.14180) 336 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.3 KiB/s rd, 596 B/s wr, 14 op/s 2024-02-10T08:05:57.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:56 smithi123 bash[18776]: cluster 2024-02-10T08:05:55.610559+0000 mgr.smithi007.lzuqsb (mgr.14180) 336 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.3 KiB/s rd, 596 B/s wr, 14 op/s 2024-02-10T08:05:57.986 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-02-10T08:05:57.986 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-10T07:56:06.134741Z", "last_refresh": "2024-02-10T08:05:44.214730Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-10T07:55:58.048017Z", "last_refresh": "2024-02-10T08:05:43.725139Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-10T07:56:02.148071Z", "last_refresh": "2024-02-10T08:05:44.215032Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-10T08:04:35.682762Z 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.7/16"}, "status": {"created": "2024-02-10T08:04:35.677880Z", "last_refresh": "2024-02-10T08:05:43.726926Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-10T07:55:56.049128Z", "last_refresh": "2024-02-10T08:05:43.725467Z", "running": 2, "size": 2}}, {"events": ["2024-02-10T07:57:41.332763Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-10T07:57:41.327053Z", "last_refresh": "2024-02-10T08:05:43.725633Z", "running": 2, "size": 2}}, {"events": ["2024-02-10T08:04:35.675306Z 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-10T08:04:35.669852Z", "last_refresh": "2024-02-10T08:05:44.216210Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-10T07:56:04.139640Z", "last_refresh": "2024-02-10T08:05:43.725789Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-10T07:58:22.828202Z 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-10T07:58:22.823214Z", "last_refresh": "2024-02-10T08:05:43.725939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-10T07:56:00.151419Z", "ports": [9095], "running": 0, "size": 1}}, {"events": ["2024-02-10T08:04:29.798368Z 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-10T08:04:43.502154Z", "last_refresh": "2024-02-10T08:05:43.726710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-10T08:05:58.752 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-02-10T08:05:58.753 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-10T08:05:58.763 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-02-10T08:05:58.764 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-02-10T08:05:58.777 INFO:teuthology.orchestra.run.smithi007.stderr:+ mkdir /mnt/foo 2024-02-10T08:05:58.784 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-02-10T08:05:58.843 INFO:teuthology.orchestra.run.smithi007.stderr:+ sleep 5 2024-02-10T08:05:58.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:58 smithi123 bash[18776]: cluster 2024-02-10T08:05:57.611722+0000 mgr.smithi007.lzuqsb (mgr.14180) 337 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.4 KiB/s rd, 511 B/s wr, 13 op/s 2024-02-10T08:05:58.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:58 smithi007 bash[14094]: cluster 2024-02-10T08:05:57.611722+0000 mgr.smithi007.lzuqsb (mgr.14180) 337 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.4 KiB/s rd, 511 B/s wr, 13 op/s 2024-02-10T08:05:59.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:59 smithi123 bash[18776]: audit 2024-02-10T08:05:57.971971+0000 mgr.smithi007.lzuqsb (mgr.14180) 338 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-10T08:05:59.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:05:59 smithi123 bash[18776]: audit 2024-02-10T08:05:59.440322+0000 mon.smithi007 (mon.0) 738 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:05:59.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:59 smithi007 bash[14094]: audit 2024-02-10T08:05:57.971971+0000 mgr.smithi007.lzuqsb (mgr.14180) 338 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-10T08:05:59.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:05:59 smithi007 bash[14094]: audit 2024-02-10T08:05:59.440322+0000 mon.smithi007 (mon.0) 738 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:06:00.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:00 smithi123 bash[18776]: cluster 2024-02-10T08:05:59.613211+0000 mgr.smithi007.lzuqsb (mgr.14180) 339 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.2 KiB/s rd, 426 B/s wr, 7 op/s 2024-02-10T08:06:00.997 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:00 smithi007 bash[14094]: cluster 2024-02-10T08:05:59.613211+0000 mgr.smithi007.lzuqsb (mgr.14180) 339 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.2 KiB/s rd, 426 B/s wr, 7 op/s 2024-02-10T08:06:02.415 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:02 smithi123 bash[18776]: audit 2024-02-10T08:06:01.062139+0000 mon.smithi007 (mon.0) 739 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:06:02.415 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:02 smithi123 bash[18776]: audit 2024-02-10T08:06:01.063879+0000 mon.smithi007 (mon.0) 740 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:06:02.415 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:02 smithi123 bash[18776]: audit 2024-02-10T08:06:01.065660+0000 mon.smithi007 (mon.0) 741 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:06:02.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:02 smithi123 bash[18776]: cephadm 2024-02-10T08:06:01.072910+0000 mgr.smithi007.lzuqsb (mgr.14180) 340 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-10T08:06:02.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:02 smithi123 bash[18776]: audit 2024-02-10T08:06:01.358650+0000 mon.smithi007 (mon.0) 742 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:06:02.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:02 smithi123 bash[18776]: audit 2024-02-10T08:06:01.368310+0000 mon.smithi007 (mon.0) 743 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:06:02.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:02 smithi123 bash[18776]: audit 2024-02-10T08:06:01.381416+0000 mon.smithi007 (mon.0) 744 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:06:02.416 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:02 smithi123 bash[18776]: cluster 2024-02-10T08:06:01.614584+0000 mgr.smithi007.lzuqsb (mgr.14180) 341 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 255 B/s wr, 2 op/s 2024-02-10T08:06:02.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:02 smithi007 bash[14094]: audit 2024-02-10T08:06:01.062139+0000 mon.smithi007 (mon.0) 739 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:06:02.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:02 smithi007 bash[14094]: audit 2024-02-10T08:06:01.063879+0000 mon.smithi007 (mon.0) 740 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-10T08:06:02.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:02 smithi007 bash[14094]: audit 2024-02-10T08:06:01.065660+0000 mon.smithi007 (mon.0) 741 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-10T08:06:02.497 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:02 smithi007 bash[14094]: cephadm 2024-02-10T08:06:01.072910+0000 mgr.smithi007.lzuqsb (mgr.14180) 340 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-10T08:06:02.498 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:02 smithi007 bash[14094]: audit 2024-02-10T08:06:01.358650+0000 mon.smithi007 (mon.0) 742 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:06:02.498 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:02 smithi007 bash[14094]: audit 2024-02-10T08:06:01.368310+0000 mon.smithi007 (mon.0) 743 : audit [DBG] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-10T08:06:02.498 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:02 smithi007 bash[14094]: audit 2024-02-10T08:06:01.381416+0000 mon.smithi007 (mon.0) 744 : audit [INF] from='mgr.14180 172.21.15.7:0/630035650' entity='mgr.smithi007.lzuqsb' 2024-02-10T08:06:02.498 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:02 smithi007 bash[14094]: cluster 2024-02-10T08:06:01.614584+0000 mgr.smithi007.lzuqsb (mgr.14180) 341 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 255 B/s wr, 2 op/s 2024-02-10T08:06:03.846 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.7:/foouser /mnt/foo' 2024-02-10T08:06:03.903 INFO:teuthology.orchestra.run.smithi007.stderr:+ mount -t nfs 10.0.31.7:/foouser /mnt/foo 2024-02-10T08:06:04.505 INFO:teuthology.orchestra.run.smithi007.stderr:mount.nfs: Protocol not supported 2024-02-10T08:06:04.507 DEBUG:teuthology.orchestra.run:got remote process result: 32 2024-02-10T08:06:04.508 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/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_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ljflores_ceph_57bd6abdec7bb457ae7999d9c96682e9ac678e27/qa/tasks/vip.py", line 60, in exec remote.run( File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/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_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi007 with status 32: "sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.7:/foouser /mnt/foo'" 2024-02-10T08:06:04.764 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=286fd953c35a40d58478a80ece2d5296 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/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_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ljflores_ceph_57bd6abdec7bb457ae7999d9c96682e9ac678e27/qa/tasks/vip.py", line 60, in exec remote.run( File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/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_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi007 with status 32: "sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.7:/foouser /mnt/foo'" 2024-02-10T08:06:04.767 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-02-10T08:06:04.777 INFO:tasks.vip:Removing 10.0.15.7 (and any VIPs) on smithi007.front.sepia.ceph.com iface ens1f0... 2024-02-10T08:06:04.777 DEBUG:teuthology.orchestra.run.smithi007:> sudo ip addr del 10.0.15.7/16 dev ens1f0 2024-02-10T08:06:04.797 DEBUG:teuthology.orchestra.run.smithi007:> sudo ip addr del 10.0.31.7/16 dev ens1f0 2024-02-10T08:06:04.857 INFO:tasks.vip:Removing 10.0.15.123 (and any VIPs) on smithi123.front.sepia.ceph.com iface enp3s0f1... 2024-02-10T08:06:04.857 DEBUG:teuthology.orchestra.run.smithi123:> sudo ip addr del 10.0.15.123/16 dev enp3s0f1 2024-02-10T08:06:04.874 DEBUG:teuthology.orchestra.run.smithi123:> sudo ip addr del 10.0.31.7/16 dev enp3s0f1 2024-02-10T08:06:04.932 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:04 smithi123 bash[18776]: cluster 2024-02-10T08:06:03.616394+0000 mgr.smithi007.lzuqsb (mgr.14180) 342 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 170 B/s wr, 0 op/s 2024-02-10T08:06:04.934 INFO:teuthology.orchestra.run.smithi123.stderr:RTNETLINK answers: Cannot assign requested address 2024-02-10T08:06:04.934 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-02-10T08:06:04.935 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-02-10T08:06:04.946 INFO:tasks.cephadm:Teardown begin 2024-02-10T08:06:04.946 DEBUG:teuthology.orchestra.run.smithi007:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-10T08:06:04.960 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:04 smithi007 bash[14094]: cluster 2024-02-10T08:06:03.616394+0000 mgr.smithi007.lzuqsb (mgr.14180) 342 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 170 B/s wr, 0 op/s 2024-02-10T08:06:04.963 DEBUG:teuthology.orchestra.run.smithi123:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-10T08:06:04.995 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-02-10T08:06:04.996 DEBUG:teuthology.orchestra.run.smithi007:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-10T08:06:05.018 DEBUG:teuthology.orchestra.run.smithi123:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-10T08:06:05.045 INFO:tasks.cephadm:Stopping all daemons... 2024-02-10T08:06:05.045 INFO:tasks.cephadm.mon.smithi007:Stopping mon.smithi007... 2024-02-10T08:06:05.045 DEBUG:teuthology.orchestra.run.smithi007:> sudo systemctl stop ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mon.smithi007 2024-02-10T08:06:05.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:05 smithi007 systemd[1]: Stopping Ceph mon.smithi007 for 96f67ea2-c7e9-11ee-95b8-87774f69a715... 2024-02-10T08:06:05.247 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:05 smithi007 bash[64156]: Error response from daemon: No such container: ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715-mon.smithi007 2024-02-10T08:06:05.556 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:05 smithi007 bash[14094]: debug 2024-02-10T08:06:05.243+0000 7f3c7a982700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi007 -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-10T08:06:05.556 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:05 smithi007 bash[14094]: debug 2024-02-10T08:06:05.243+0000 7f3c7a982700 -1 mon.smithi007@0(leader) e2 *** Got Signal Terminated *** 2024-02-10T08:06:06.526 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Feb 10 08:06:06 smithi007 bash[64191]: ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715-mon-smithi007 2024-02-10T08:06:06.532 DEBUG:teuthology.orchestra.run.smithi007:> sudo pkill -f 'journalctl -f -n 0 -u ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mon.smithi007.service' 2024-02-10T08:06:06.577 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-10T08:06:06.577 INFO:tasks.cephadm.mon.smithi007:Stopped mon.smithi007 2024-02-10T08:06:06.578 INFO:tasks.cephadm.mon.smithi123:Stopping mon.smithi123... 2024-02-10T08:06:06.578 DEBUG:teuthology.orchestra.run.smithi123:> sudo systemctl stop ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mon.smithi123 2024-02-10T08:06:06.915 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:06 smithi123 systemd[1]: Stopping Ceph mon.smithi123 for 96f67ea2-c7e9-11ee-95b8-87774f69a715... 2024-02-10T08:06:06.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:06 smithi123 bash[40322]: Error response from daemon: No such container: ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715-mon.smithi123 2024-02-10T08:06:06.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:06 smithi123 bash[18776]: debug 2024-02-10T08:06:06.787+0000 7fd1805da700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi123 -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-10T08:06:06.916 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Feb 10 08:06:06 smithi123 bash[18776]: debug 2024-02-10T08:06:06.787+0000 7fd1805da700 -1 mon.smithi123@1(peon) e2 *** Got Signal Terminated *** 2024-02-10T08:06:07.757 DEBUG:teuthology.orchestra.run.smithi123:> sudo pkill -f 'journalctl -f -n 0 -u ceph-96f67ea2-c7e9-11ee-95b8-87774f69a715@mon.smithi123.service' 2024-02-10T08:06:07.800 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-10T08:06:07.801 INFO:tasks.cephadm.mon.smithi123:Stopped mon.smithi123 2024-02-10T08:06:07.801 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 --force --keep-logs 2024-02-10T08:07:19.962 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 --force --keep-logs 2024-02-10T08:08:16.389 DEBUG:teuthology.orchestra.run.smithi007:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-10T08:08:16.405 DEBUG:teuthology.orchestra.run.smithi123:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-10T08:08:16.419 INFO:tasks.cephadm:Archiving crash dumps... 2024-02-10T08:08:16.422 DEBUG:teuthology.misc:Transferring archived files from smithi007:/var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272/remote/ubuntu@smithi007.front.sepia.ceph.com/crash 2024-02-10T08:08:16.423 DEBUG:teuthology.orchestra.run.smithi007:> sudo tar c -f - -C /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/crash -- . 2024-02-10T08:08:16.464 INFO:teuthology.orchestra.run.smithi007.stderr:tar: /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/crash: Cannot open: No such file or directory 2024-02-10T08:08:16.464 INFO:teuthology.orchestra.run.smithi007.stderr:tar: Error is not recoverable: exiting now 2024-02-10T08:08:16.466 DEBUG:teuthology.misc:Transferring archived files from smithi123:/var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272/remote/ubuntu@smithi123.front.sepia.ceph.com/crash 2024-02-10T08:08:16.466 DEBUG:teuthology.orchestra.run.smithi123:> sudo tar c -f - -C /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/crash -- . 2024-02-10T08:08:16.481 INFO:teuthology.orchestra.run.smithi123.stderr:tar: /var/lib/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/crash: Cannot open: No such file or directory 2024-02-10T08:08:16.482 INFO:teuthology.orchestra.run.smithi123.stderr:tar: Error is not recoverable: exiting now 2024-02-10T08:08:16.482 INFO:tasks.cephadm:Checking cluster log for badness... 2024-02-10T08:08:16.483 DEBUG:teuthology.orchestra.run.smithi007:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-02-10T08:08:16.528 INFO:tasks.cephadm:Compressing logs... 2024-02-10T08:08:16.529 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T08:08:16.579 DEBUG:teuthology.orchestra.run.smithi123:> 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-10T08:08:16.593 INFO:teuthology.orchestra.run.smithi007.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-10T08:08:16.594 INFO:teuthology.orchestra.run.smithi123.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-10T08:08:16.600 INFO:teuthology.orchestra.run.smithi123.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mgr.smithi123.qhmycm.log 2024-02-10T08:08:16.601 INFO:teuthology.orchestra.run.smithi123.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-client.rgw.foorgw.smithi123.drmpzo.log 2024-02-10T08:08:16.602 INFO:teuthology.orchestra.run.smithi123.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mon.smithi123.log 2024-02-10T08:08:16.602 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mgr.smithi123.qhmycm.log: /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-client.rgw.foorgw.smithi123.drmpzo.log: gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.audit.log 2024-02-10T08:08:16.602 INFO:teuthology.orchestra.run.smithi123.stderr: 63.3% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-client.rgw.foorgw.smithi123.drmpzo.log.gz 2024-02-10T08:08:16.603 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mon.smithi123.log: gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.6.log 2024-02-10T08:08:16.603 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.log 2024-02-10T08:08:16.604 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mgr.smithi007.lzuqsb.log 2024-02-10T08:08:16.605 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mon.smithi007.log 2024-02-10T08:08:16.605 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.5.log 2024-02-10T08:08:16.605 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mgr.smithi007.lzuqsb.log: /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mon.smithi007.log: gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.audit.log 2024-02-10T08:08:16.606 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.cephadm.log 2024-02-10T08:08:16.606 INFO:teuthology.orchestra.run.smithi123.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.0.log 2024-02-10T08:08:16.606 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.log: /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.4.log 2024-02-10T08:08:16.607 INFO:teuthology.orchestra.run.smithi123.stderr: 81.8%/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.0.log: -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.cephadm.log.gz 2024-02-10T08:08:16.607 INFO:teuthology.orchestra.run.smithi123.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-volume.log 2024-02-10T08:08:16.607 INFO:teuthology.orchestra.run.smithi123.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.2.log 2024-02-10T08:08:16.607 INFO:teuthology.orchestra.run.smithi123.stderr: 88.1% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.log.gz 2024-02-10T08:08:16.607 INFO:teuthology.orchestra.run.smithi123.stderr: 91.1%/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.4.log: -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.audit.log.gz 2024-02-10T08:08:16.607 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-10T08:08:16.610 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.1.log 2024-02-10T08:08:16.610 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.5.log: /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.log 2024-02-10T08:08:16.610 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.cephadm.log 2024-02-10T08:08:16.610 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-client.rgw.foorgw.smithi007.wnaomv.log 2024-02-10T08:08:16.610 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.log: /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.cephadm.log: 82.6% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.cephadm.log.gz 2024-02-10T08:08:16.611 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.3.log 2024-02-10T08:08:16.611 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-volume.log 2024-02-10T08:08:16.611 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.3.log: /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-client.rgw.foorgw.smithi007.wnaomv.log: 65.6% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-client.rgw.foorgw.smithi007.wnaomv.log.gz 2024-02-10T08:08:16.611 INFO:teuthology.orchestra.run.smithi007.stderr: 88.0% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.log.gz 2024-02-10T08:08:16.612 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.2.log: /var/log/ceph/cephadm.log: 92.2% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mgr.smithi123.qhmycm.log.gz 2024-02-10T08:08:16.612 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.7.log 2024-02-10T08:08:16.613 INFO:teuthology.orchestra.run.smithi007.stderr: 90.9% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph.audit.log.gz 2024-02-10T08:08:16.613 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-10T08:08:16.614 INFO:teuthology.orchestra.run.smithi123.stderr: 89.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-10T08:08:16.615 INFO:teuthology.orchestra.run.smithi123.stderr: 92.6% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-volume.log.gz 2024-02-10T08:08:16.621 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-volume.log: /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.7.log: /var/log/ceph/cephadm.log: 92.6% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-volume.log.gz 2024-02-10T08:08:16.625 INFO:teuthology.orchestra.run.smithi007.stderr: 90.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-10T08:08:16.746 INFO:teuthology.orchestra.run.smithi123.stderr: 93.0% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mon.smithi123.log.gz 2024-02-10T08:08:16.758 INFO:teuthology.orchestra.run.smithi007.stderr: 88.9% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mgr.smithi007.lzuqsb.log.gz 2024-02-10T08:08:16.802 INFO:teuthology.orchestra.run.smithi007.stderr: 93.6% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.7.log.gz 2024-02-10T08:08:16.814 INFO:teuthology.orchestra.run.smithi007.stderr: 93.5% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.5.log.gz 2024-02-10T08:08:16.832 INFO:teuthology.orchestra.run.smithi123.stderr: 93.5% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.4.log.gz 2024-02-10T08:08:16.841 INFO:teuthology.orchestra.run.smithi123.stderr: 93.4% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.2.log.gz 2024-02-10T08:08:16.848 INFO:teuthology.orchestra.run.smithi123.stderr: 93.3% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.6.log.gz 2024-02-10T08:08:16.859 INFO:teuthology.orchestra.run.smithi007.stderr: 93.5% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.1.log.gz 2024-02-10T08:08:16.912 INFO:teuthology.orchestra.run.smithi123.stderr: 93.4% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.0.log.gz 2024-02-10T08:08:16.914 INFO:teuthology.orchestra.run.smithi123.stderr: 2024-02-10T08:08:16.914 INFO:teuthology.orchestra.run.smithi123.stderr:real 0m0.329s 2024-02-10T08:08:16.914 INFO:teuthology.orchestra.run.smithi123.stderr:user 0m1.144s 2024-02-10T08:08:16.914 INFO:teuthology.orchestra.run.smithi123.stderr:sys 0m0.080s 2024-02-10T08:08:16.978 INFO:teuthology.orchestra.run.smithi007.stderr: 93.6% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-osd.3.log.gz 2024-02-10T08:08:16.982 INFO:teuthology.orchestra.run.smithi007.stderr: 91.1% -- replaced with /var/log/ceph/96f67ea2-c7e9-11ee-95b8-87774f69a715/ceph-mon.smithi007.log.gz 2024-02-10T08:08:16.984 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-02-10T08:08:16.984 INFO:teuthology.orchestra.run.smithi007.stderr:real 0m0.402s 2024-02-10T08:08:16.984 INFO:teuthology.orchestra.run.smithi007.stderr:user 0m1.552s 2024-02-10T08:08:16.984 INFO:teuthology.orchestra.run.smithi007.stderr:sys 0m0.073s 2024-02-10T08:08:16.984 INFO:tasks.cephadm:Archiving logs... 2024-02-10T08:08:16.985 DEBUG:teuthology.misc:Transferring archived files from smithi007:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272/remote/ubuntu@smithi007.front.sepia.ceph.com/log 2024-02-10T08:08:16.986 DEBUG:teuthology.orchestra.run.smithi007:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-10T08:08:17.247 DEBUG:teuthology.misc:Transferring archived files from smithi123:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272/remote/ubuntu@smithi123.front.sepia.ceph.com/log 2024-02-10T08:08:17.248 DEBUG:teuthology.orchestra.run.smithi123:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-10T08:08:17.445 INFO:tasks.cephadm:Removing cluster... 2024-02-10T08:08:17.445 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 --force 2024-02-10T08:08:18.816 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 96f67ea2-c7e9-11ee-95b8-87774f69a715 --force 2024-02-10T08:08:20.180 INFO:tasks.cephadm:Removing cephadm ... 2024-02-10T08:08:20.180 DEBUG:teuthology.orchestra.run.smithi007:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-10T08:08:20.188 DEBUG:teuthology.orchestra.run.smithi123:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-10T08:08:20.195 INFO:tasks.cephadm:Teardown complete 2024-02-10T08:08:20.195 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-02-10T08:08:20.210 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi007:/dev/vg_nvme/lv_1... 2024-02-10T08:08:20.210 DEBUG:teuthology.orchestra.run.smithi007:> sudo nvme disconnect -n lv_1 2024-02-10T08:08:20.533 INFO:teuthology.orchestra.run.smithi007.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-10T08:08:20.535 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T08:08:20.535 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi007:/dev/vg_nvme/lv_2... 2024-02-10T08:08:20.536 DEBUG:teuthology.orchestra.run.smithi007:> sudo nvme disconnect -n lv_2 2024-02-10T08:08:20.853 INFO:teuthology.orchestra.run.smithi007.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-10T08:08:20.855 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T08:08:20.855 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi007:/dev/vg_nvme/lv_3... 2024-02-10T08:08:20.856 DEBUG:teuthology.orchestra.run.smithi007:> sudo nvme disconnect -n lv_3 2024-02-10T08:08:21.153 INFO:teuthology.orchestra.run.smithi007.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-10T08:08:21.155 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T08:08:21.155 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi007:/dev/vg_nvme/lv_4... 2024-02-10T08:08:21.155 DEBUG:teuthology.orchestra.run.smithi007:> sudo nvme disconnect -n lv_4 2024-02-10T08:08:21.469 INFO:teuthology.orchestra.run.smithi007.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-10T08:08:21.471 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T08:08:21.471 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-02-10T08:08:21.472 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/scratch_devs 2024-02-10T08:08:21.487 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi123:/dev/vg_nvme/lv_1... 2024-02-10T08:08:21.487 DEBUG:teuthology.orchestra.run.smithi123:> sudo nvme disconnect -n lv_1 2024-02-10T08:08:21.776 INFO:teuthology.orchestra.run.smithi123.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-10T08:08:21.777 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T08:08:21.778 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi123:/dev/vg_nvme/lv_2... 2024-02-10T08:08:21.778 DEBUG:teuthology.orchestra.run.smithi123:> sudo nvme disconnect -n lv_2 2024-02-10T08:08:22.087 INFO:teuthology.orchestra.run.smithi123.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-10T08:08:22.089 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T08:08:22.089 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi123:/dev/vg_nvme/lv_3... 2024-02-10T08:08:22.090 DEBUG:teuthology.orchestra.run.smithi123:> sudo nvme disconnect -n lv_3 2024-02-10T08:08:22.380 INFO:teuthology.orchestra.run.smithi123.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-10T08:08:22.381 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T08:08:22.381 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi123:/dev/vg_nvme/lv_4... 2024-02-10T08:08:22.382 DEBUG:teuthology.orchestra.run.smithi123:> sudo nvme disconnect -n lv_4 2024-02-10T08:08:22.655 INFO:teuthology.orchestra.run.smithi123.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-10T08:08:22.657 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T08:08:22.657 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-02-10T08:08:22.658 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/scratch_devs 2024-02-10T08:08:22.727 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-02-10T08:08:22.738 INFO:teuthology.task.clock:Checking final clock skew... 2024-02-10T08:08:22.738 DEBUG:teuthology.orchestra.run.smithi007:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-10T08:08:22.741 DEBUG:teuthology.orchestra.run.smithi123:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-10T08:08:22.759 INFO:teuthology.orchestra.run.smithi007.stdout: remote refid st t when poll reach delay offset jitter 2024-02-10T08:08:22.759 INFO:teuthology.orchestra.run.smithi007.stdout:============================================================================== 2024-02-10T08:08:22.759 INFO:teuthology.orchestra.run.smithi007.stdout:*hv01.front.sepi 44.4.53.2 2 u 58 64 377 0.085 -0.038 1.101 2024-02-10T08:08:22.759 INFO:teuthology.orchestra.run.smithi007.stdout:+hv02.front.sepi 96.245.170.99 3 u 61 64 377 0.088 0.888 1.010 2024-02-10T08:08:22.759 INFO:teuthology.orchestra.run.smithi007.stdout:+hv03.front.sepi 74.6.168.72 3 u 60 64 377 0.093 0.911 1.032 2024-02-10T08:08:22.759 INFO:teuthology.orchestra.run.smithi007.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 0.000 0.000 2024-02-10T08:08:22.761 INFO:teuthology.orchestra.run.smithi123.stdout: remote refid st t when poll reach delay offset jitter 2024-02-10T08:08:22.762 INFO:teuthology.orchestra.run.smithi123.stdout:============================================================================== 2024-02-10T08:08:22.762 INFO:teuthology.orchestra.run.smithi123.stdout:*hv01.front.sepi 44.4.53.2 2 u 61 64 377 0.097 -0.981 0.079 2024-02-10T08:08:22.762 INFO:teuthology.orchestra.run.smithi123.stdout:+hv02.front.sepi 96.245.170.99 3 u 4 64 377 0.089 -0.227 0.103 2024-02-10T08:08:22.762 INFO:teuthology.orchestra.run.smithi123.stdout:+hv03.front.sepi 74.6.168.72 3 u 56 64 377 0.086 -0.134 0.057 2024-02-10T08:08:22.762 INFO:teuthology.orchestra.run.smithi123.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 0.000 0.000 2024-02-10T08:08:22.762 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-02-10T08:08:22.774 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-02-10T08:08:22.775 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-02-10T08:08:22.793 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-02-10T08:08:22.803 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-02-10T08:08:22.813 INFO:teuthology.task.internal:Duration was 1185.359406 seconds 2024-02-10T08:08:22.813 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-02-10T08:08:22.823 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-02-10T08:08:22.823 DEBUG:teuthology.orchestra.run.smithi007:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-10T08:08:22.826 DEBUG:teuthology.orchestra.run.smithi123:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-10T08:08:22.880 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-02-10T08:08:22.880 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi007.front.sepia.ceph.com 2024-02-10T08:08:22.880 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T08:08:22.895 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi123.front.sepia.ceph.com 2024-02-10T08:08:22.895 DEBUG:teuthology.orchestra.run.smithi123:> 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-10T08:08:22.910 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-02-10T08:08:22.910 DEBUG:teuthology.orchestra.run.smithi007:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-10T08:08:22.939 DEBUG:teuthology.orchestra.run.smithi123:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-10T08:08:22.997 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-02-10T08:08:22.997 DEBUG:teuthology.orchestra.run.smithi007:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-10T08:08:22.999 DEBUG:teuthology.orchestra.run.smithi123:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-10T08:08:23.132 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-02-10T08:08:23.143 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-02-10T08:08:23.143 DEBUG:teuthology.orchestra.run.smithi007:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-10T08:08:23.161 DEBUG:teuthology.orchestra.run.smithi123:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-10T08:08:23.176 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-02-10T08:08:23.187 DEBUG:teuthology.orchestra.run.smithi007:> 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-10T08:08:23.206 DEBUG:teuthology.orchestra.run.smithi123:> 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-10T08:08:23.219 INFO:teuthology.orchestra.run.smithi007.stdout:kernel.core_pattern = core 2024-02-10T08:08:23.232 INFO:teuthology.orchestra.run.smithi123.stdout:kernel.core_pattern = core 2024-02-10T08:08:23.253 DEBUG:teuthology.orchestra.run.smithi007:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-10T08:08:23.293 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T08:08:23.294 DEBUG:teuthology.orchestra.run.smithi123:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-10T08:08:23.300 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-10T08:08:23.301 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-02-10T08:08:23.312 INFO:teuthology.task.internal:Transferring archived files... 2024-02-10T08:08:23.313 DEBUG:teuthology.misc:Transferring archived files from smithi007:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272/remote/smithi007 2024-02-10T08:08:23.314 DEBUG:teuthology.orchestra.run.smithi007:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-10T08:08:23.367 DEBUG:teuthology.misc:Transferring archived files from smithi123:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272/remote/smithi123 2024-02-10T08:08:23.368 DEBUG:teuthology.orchestra.run.smithi123:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-10T08:08:23.394 INFO:teuthology.task.internal:Removing archive directory... 2024-02-10T08:08:23.394 DEBUG:teuthology.orchestra.run.smithi007:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-10T08:08:23.406 DEBUG:teuthology.orchestra.run.smithi123:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-10T08:08:23.437 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-02-10T08:08:23.450 INFO:teuthology.task.internal:Not uploading archives. 2024-02-10T08:08:23.451 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-02-10T08:08:23.461 INFO:teuthology.task.internal:Tidying up after the test... 2024-02-10T08:08:23.461 DEBUG:teuthology.orchestra.run.smithi007:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-10T08:08:23.463 DEBUG:teuthology.orchestra.run.smithi123:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-10T08:08:23.469 INFO:teuthology.orchestra.run.smithi007.stdout: 1048609 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 10 08:08 /home/ubuntu/cephtest 2024-02-10T08:08:23.486 INFO:teuthology.orchestra.run.smithi123.stdout: 1048601 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 10 08:08 /home/ubuntu/cephtest 2024-02-10T08:08:23.489 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-02-10T08:08:23.500 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-02-10T08:08:23.523 INFO:teuthology.nuke:Checking targets against current locks 2024-02-10T08:08:23.552 DEBUG:teuthology.nuke:shortname: smithi007 2024-02-10T08:08:23.552 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-10T08:08:23.576 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi007.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272', '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-10 07:39:26.041386', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM='} 2024-02-10T08:08:23.579 DEBUG:teuthology.nuke:shortname: smithi123 2024-02-10T08:08:23.580 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-10T08:08:23.603 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi123.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-09_21:34:44-rados-wip-yuri10-testing-2024-02-08-0854-pacific-distro-default-smithi/7555272', '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-10 07:39:26.043034', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM='} 2024-02-10T08:08:23.629 INFO:teuthology.orchestra.console.smithi007:Power off 2024-02-10T08:08:23.629 DEBUG:teuthology.orchestra.console.smithi007:pexpect command: ipmitool -H smithi007.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-10T08:08:23.654 DEBUG:teuthology.orchestra.console.smithi007:power off output: Chassis Power Control: Down/Off 2024-02-10T08:08:23.655 DEBUG:teuthology.orchestra.console.smithi007:pexpect command: ipmitool -H smithi007.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-10T08:08:23.672 INFO:teuthology.orchestra.console.smithi123:Power off 2024-02-10T08:08:23.672 DEBUG:teuthology.orchestra.console.smithi123:pexpect command: ipmitool -H smithi123.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-10T08:08:23.684 DEBUG:teuthology.orchestra.console.smithi007:check power output: Chassis Power is on 2024-02-10T08:08:23.696 DEBUG:teuthology.orchestra.console.smithi123:power off output: Chassis Power Control: Down/Off 2024-02-10T08:08:23.696 DEBUG:teuthology.orchestra.console.smithi123:pexpect command: ipmitool -H smithi123.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-10T08:08:23.718 DEBUG:teuthology.orchestra.console.smithi123:check power output: Chassis Power is on 2024-02-10T08:08:27.685 DEBUG:teuthology.orchestra.console.smithi007:pexpect command: ipmitool -H smithi007.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-10T08:08:27.719 DEBUG:teuthology.orchestra.console.smithi123:pexpect command: ipmitool -H smithi123.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-10T08:08:27.798 DEBUG:teuthology.orchestra.console.smithi007:check power output: Chassis Power is on 2024-02-10T08:08:27.830 DEBUG:teuthology.orchestra.console.smithi123:check power output: Chassis Power is on 2024-02-10T08:08:31.800 DEBUG:teuthology.orchestra.console.smithi007:pexpect command: ipmitool -H smithi007.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-10T08:08:31.830 DEBUG:teuthology.orchestra.console.smithi123:pexpect command: ipmitool -H smithi123.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-10T08:08:31.911 DEBUG:teuthology.orchestra.console.smithi007:check power output: Chassis Power is on 2024-02-10T08:08:31.940 DEBUG:teuthology.orchestra.console.smithi123:check power output: Chassis Power is off 2024-02-10T08:08:32.040 INFO:teuthology.orchestra.console.smithi123:Power off completed 2024-02-10T08:08:35.916 DEBUG:teuthology.orchestra.console.smithi007:pexpect command: ipmitool -H smithi007.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-10T08:08:36.025 DEBUG:teuthology.orchestra.console.smithi007:check power output: Chassis Power is off 2024-02-10T08:08:36.126 INFO:teuthology.orchestra.console.smithi007:Power off completed 2024-02-10T08:08:36.230 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: 1185.3594057559967 failure_reason: 'Command failed on smithi007 with status 32: "sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c ''mount -t nfs 10.0.31.7:/foouser /mnt/foo''"' owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=286fd953c35a40d58478a80ece2d5296 status: fail success: false 2024-02-10T08:08:36.231 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-10T08:08:36.310 INFO:teuthology.run:FAIL